diff --git a/.gitattributes b/.gitattributes
index 380e91808a7a979fe85ba2e98eaed0dbc99741ef..29856bbd7d32538965ac25584380b24b231e1d14 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -299,3 +299,27 @@ runs/baseline-fulle-lm/checkpoint-8064/tokenizer.json filter=lfs diff=lfs merge=
runs/baseline-fulle-lm/checkpoint-8352/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/baseline-fulle-lm/checkpoint-864/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/baseline-fulle-lm/checkpoint-8640/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-1152/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-1728/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-2016/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-2304/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-2592/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-3168/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-3456/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-3744/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-4032/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-4320/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-4608/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-4896/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-5184/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-5472/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-576/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-5760/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-6048/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-6336/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-6624/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-6912/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-7200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-fulle-lm/checkpoint-864/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/i5-fulle-lm/checkpoint-1152/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-1152/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/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/i5-fulle-lm/checkpoint-1152/config.json b/runs/i5-fulle-lm/checkpoint-1152/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1152/generation_config.json b/runs/i5-fulle-lm/checkpoint-1152/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1152/model.safetensors b/runs/i5-fulle-lm/checkpoint-1152/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4bb65274e81646fce822ec6a217f870046f79458
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2fbb08f511119b44417aa92e1dd86326ac46d9898fda3751de62d841eeefe748
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-1152/optimizer.pt b/runs/i5-fulle-lm/checkpoint-1152/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..2ccb8d40990999252ba7ee0865e2ccf023413fb6
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6b9b633c85939fb68fb58d2de9f6aa8f5ead2e40933c308c1ab468201e1e39f1
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-1152/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-1152/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..6a1eb95e1454ab16633bf6a72e55b5e67dfcdeb9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0f9b53ae160773f7447066440e794b3e8b84a8feabba481d3dc578345958e99
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-1152/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-1152/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..434e8dabe32957190174979b0f46ca0fb9113dd8
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bcf51d16b6f8617007bbb23ffdf6286dab68d69cf7a39ae1ddcb85e6df4dc88e
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-1152/scheduler.pt b/runs/i5-fulle-lm/checkpoint-1152/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..630fbc73d70608487940c0c34e65caee42415237
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6a67914066d1aebda73626cb9d7d4cbc46ee7df332e5ae85a86cc87be8e519c8
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-1152/tokenizer.json b/runs/i5-fulle-lm/checkpoint-1152/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-1152/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-1152/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1152/trainer_state.json b/runs/i5-fulle-lm/checkpoint-1152/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..cd3b8fad6457682c9f8a78c25396f2cab416cbd8
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/trainer_state.json
@@ -0,0 +1,8210 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 16.0,
+ "eval_steps": 500,
+ "global_step": 1152,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.9092366701061734e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1152/training_args.bin b/runs/i5-fulle-lm/checkpoint-1152/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1152/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-1440/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/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/i5-fulle-lm/checkpoint-1440/config.json b/runs/i5-fulle-lm/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1440/generation_config.json b/runs/i5-fulle-lm/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1440/model.safetensors b/runs/i5-fulle-lm/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..5c49e01bfa5dd647a9fc09573485b5cd9e82c3b9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f5c4b44607e3909eb2c3522da7a1fdf3ee93b0262555aa638ebb478108a30004
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-1440/optimizer.pt b/runs/i5-fulle-lm/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f0964ca7d6514f7942efce9517b69fac921b6fd0
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2851f671cc260d83c80e7f3853da1aab94c44e6c4b6f5538369578c33b37f48e
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-1440/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0af3bf8bd4cddda49b5af1d26647d0a8cb3125cd
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:071c824408ffb0c490a68961d002244bd26d6ff1aef68d31ab486706278366c3
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-1440/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..653c958012414f15b72df785c6f2b7f26b492443
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0e269c2fc6889f144b1e5b92d4fa622867515e3cba6e8bc00de1211853be214e
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-1440/scheduler.pt b/runs/i5-fulle-lm/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..0d34fe10b069b50b5fecbd4a0affbd8f653b7b9b
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8a84bbc84bb0dd489a2d72fd441cc0b8482e9e06d7cde3ac44b50a389883ce86
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-1440/tokenizer.json b/runs/i5-fulle-lm/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-1440/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1440/trainer_state.json b/runs/i5-fulle-lm/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..5ef182656a5cf03a1eff65bcb747d41cfec93813
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/trainer_state.json
@@ -0,0 +1,10258 @@
+{
+ "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.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.136545837632717e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1440/training_args.bin b/runs/i5-fulle-lm/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-1728/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-1728/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/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/i5-fulle-lm/checkpoint-1728/config.json b/runs/i5-fulle-lm/checkpoint-1728/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1728/generation_config.json b/runs/i5-fulle-lm/checkpoint-1728/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1728/model.safetensors b/runs/i5-fulle-lm/checkpoint-1728/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..98eddbd6d23ea313cc6cf5fcb919c8f549914e83
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c652ce3dd3d5161ca0deeb25ec1e65a5dc942f14bfc624d0270ea4bd70884246
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-1728/optimizer.pt b/runs/i5-fulle-lm/checkpoint-1728/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4b22a4f6cf0be4a0d4d580801cb1216e612a7765
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1b0f405c707a830fc6cacb872ef9d952d5cde86ce0284edeb44d8e835633165d
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-1728/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-1728/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..9fe2cebc7725879add925233e73c11ed987ea43b
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9d9a0928fde30f792ff89d05f707de41d890ce9059333d5dd706a3b3dcac5cf4
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-1728/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-1728/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..440d69aab072ed31f6cc91ea1e7c85e5906a6636
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4c90276ef05fbdfb63c68b1e70ad1fe9ebff6b60eebfd87121321c182a4c5e70
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-1728/scheduler.pt b/runs/i5-fulle-lm/checkpoint-1728/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..baba916c0cec91178026a4cf9d1f610779561fa9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d6a6171dda32af3a9caef592bd2cfcdef1224bfed4ddda14026d355f2f43e8f1
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-1728/tokenizer.json b/runs/i5-fulle-lm/checkpoint-1728/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-1728/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-1728/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1728/trainer_state.json b/runs/i5-fulle-lm/checkpoint-1728/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..661a0767a931d30e7e68a6c721e5cf71866fb1b2
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/trainer_state.json
@@ -0,0 +1,12306 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 24.0,
+ "eval_steps": 500,
+ "global_step": 1728,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.36385500515926e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-1728/training_args.bin b/runs/i5-fulle-lm/checkpoint-1728/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-1728/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-2016/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-2016/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/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/i5-fulle-lm/checkpoint-2016/config.json b/runs/i5-fulle-lm/checkpoint-2016/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2016/generation_config.json b/runs/i5-fulle-lm/checkpoint-2016/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2016/model.safetensors b/runs/i5-fulle-lm/checkpoint-2016/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..882779f0fe4a0dafe86c39a466dbae4d8280d67e
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4a1abf51041cd32dc6d5b81450593ccfd3d0e812c0b2995c82577ada65bfe6b4
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-2016/optimizer.pt b/runs/i5-fulle-lm/checkpoint-2016/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..84283b51be950b7a5f456da2c5d77b82982d0818
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3c2fc6d4845bfb352f46343d77f09241d4a8825a7cf54f9740fa0a6264c254e5
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-2016/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-2016/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0fa3716d2f61c952b4fbbe3c3d1a832f317ee9b2
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5f838ad17ab3db337d02332be5592362e88be8d268f27a9f222112a904d16ba5
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-2016/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-2016/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7c3c118da259085bd6389de019521678ff009805
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fff32f68c348b054ff83891b5f7de62a06422daa265203d988eef4ea2d667b27
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-2016/scheduler.pt b/runs/i5-fulle-lm/checkpoint-2016/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b92e75de04edb55fd4d6a1778589870a5bc904d0
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:71f52a3ae3412b2053eb61b18dd446a6b3125f82036fb38a407b55123d55fdf7
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-2016/tokenizer.json b/runs/i5-fulle-lm/checkpoint-2016/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-2016/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-2016/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2016/trainer_state.json b/runs/i5-fulle-lm/checkpoint-2016/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..b652c5675c527b47a03f8c88235878cd96ab0d15
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/trainer_state.json
@@ -0,0 +1,14354 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 28.0,
+ "eval_steps": 500,
+ "global_step": 2016,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 8.591164172685804e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2016/training_args.bin b/runs/i5-fulle-lm/checkpoint-2016/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2016/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-2304/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-2304/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/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/i5-fulle-lm/checkpoint-2304/config.json b/runs/i5-fulle-lm/checkpoint-2304/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2304/generation_config.json b/runs/i5-fulle-lm/checkpoint-2304/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2304/model.safetensors b/runs/i5-fulle-lm/checkpoint-2304/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..7ac9d349946df061770a6e524bf20ed57b1845dd
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9bc6c05fb17785118bd2847ea029e20383c3485f894250387a16d191b261dc3b
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-2304/optimizer.pt b/runs/i5-fulle-lm/checkpoint-2304/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e3ad97ab21aabe861d5811f5d827aa3b4e45fbb5
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1c5499b8952bb03c70f124c2dcba2c8e6572cbbc6227d2a4f664e9fa58597112
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-2304/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-2304/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1974339540e2c0d0c3a3f464fe8c88696af14bc3
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:241e70c302d2572c437c11c9c0b4ead241749026fcb2a8ba860ea8a613e1a7d9
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-2304/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-2304/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..32fdeef75782182eb160a836eb378feefa34ed4b
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:63bea96883ea8931af9700fcf3ce81dfb992f56ee92c2c32693e1828503ef577
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-2304/scheduler.pt b/runs/i5-fulle-lm/checkpoint-2304/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f90b8c27b6972bbb4a1ca0bc0dffdc47237e677d
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b057fe862d340f767a25cc1e8c8a0bb24146431f818f82ef2cc9b3d15cf7bfad
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-2304/tokenizer.json b/runs/i5-fulle-lm/checkpoint-2304/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-2304/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-2304/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2304/trainer_state.json b/runs/i5-fulle-lm/checkpoint-2304/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..d460e7ffb51d189853a5afc39ba10523f7eaa2a4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/trainer_state.json
@@ -0,0 +1,16402 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 32.0,
+ "eval_steps": 500,
+ "global_step": 2304,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.818473340212347e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2304/training_args.bin b/runs/i5-fulle-lm/checkpoint-2304/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2304/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-2592/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-2592/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/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/i5-fulle-lm/checkpoint-2592/config.json b/runs/i5-fulle-lm/checkpoint-2592/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2592/generation_config.json b/runs/i5-fulle-lm/checkpoint-2592/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2592/model.safetensors b/runs/i5-fulle-lm/checkpoint-2592/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..73f154feab80189ddb77992aaa119dbbb36cb5a5
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ce64e88e0ec617a03257c785375834dc52bf329586a0727246c882415f5fda76
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-2592/optimizer.pt b/runs/i5-fulle-lm/checkpoint-2592/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f8f7303abbde352466595252904139d9ba3054e9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:57a3aaffd4f7b9e9f62c168ce8010250e031794b83a35f78c4d6dbabfb2665fc
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-2592/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-2592/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..97d2e80b1d0bbec1d3b9116170d26b1b7aab2b14
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:df0c243e09c9bf092ff368aec1d824f7e92ef6fe5ba3b7131d1ccb95cb1db6d6
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-2592/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-2592/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..8a08ca2c53008bc75f5d71f339d4783f7ee5e939
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:05ecb81f01d5e971189cdec5769883f56b2e053e56649f222d1e00b8388f8ce3
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-2592/scheduler.pt b/runs/i5-fulle-lm/checkpoint-2592/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f5637f631cc7ed2167f366c33ad859c0b7d97027
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0eee245b547fe91bdb4d6b4cbe52724d52118d751812b2781fcb358a63c34082
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-2592/tokenizer.json b/runs/i5-fulle-lm/checkpoint-2592/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-2592/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-2592/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2592/trainer_state.json b/runs/i5-fulle-lm/checkpoint-2592/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..cc1bdd1a1d7f717b80bb60a9777f1c0c2ce99210
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/trainer_state.json
@@ -0,0 +1,18450 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 36.0,
+ "eval_steps": 500,
+ "global_step": 2592,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.104578250773889e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2592/training_args.bin b/runs/i5-fulle-lm/checkpoint-2592/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2592/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-2880/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/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/i5-fulle-lm/checkpoint-2880/config.json b/runs/i5-fulle-lm/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2880/generation_config.json b/runs/i5-fulle-lm/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2880/model.safetensors b/runs/i5-fulle-lm/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..beb332a44c00e88a0ba755c08822c9ed7820a8a5
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f2822febb55f6eb05fa977a7302ed085b64550e1bee5cc5a7b84b057ebe5621a
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-2880/optimizer.pt b/runs/i5-fulle-lm/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..477b92f1620d78411d2dbdebd74b02fc09d4c06a
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d832a575b581e91a326e84fe7ee96cae111df676f657bdedb9af4a95dbe92ac9
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-2880/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1e959769079d897265c0b1ce724bf7538b826d96
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:51f0251316eb76708f2d9361929f7f647da6f45d9c6952c75aa38a80fd1dd29c
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-2880/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..85ffff9e6bacda933ce16ad53f01ec2824444dbb
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:78613dc1fc81868d4ee5bd56aec1f3692b3d749b693cf8254a9b4e77e3ec33a0
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-2880/scheduler.pt b/runs/i5-fulle-lm/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..0a5f79a713b34dd2d8d63f191629551c649dd599
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dc3ec3427ea842499c98ae42d325c555883f86219e2410d0c1a47e90ade53b1c
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-2880/tokenizer.json b/runs/i5-fulle-lm/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-2880/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2880/trainer_state.json b/runs/i5-fulle-lm/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..337c8aa6ae75ed061a2da111b351dbe7a21d4b45
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/trainer_state.json
@@ -0,0 +1,20498 @@
+{
+ "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.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.2273091675265434e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-2880/training_args.bin b/runs/i5-fulle-lm/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-3168/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-3168/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/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/i5-fulle-lm/checkpoint-3168/config.json b/runs/i5-fulle-lm/checkpoint-3168/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3168/generation_config.json b/runs/i5-fulle-lm/checkpoint-3168/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3168/model.safetensors b/runs/i5-fulle-lm/checkpoint-3168/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4c582554b3331101a2e406d61d67f4761e2453ca
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:761c8ef2a71b07fd98dc88ce41e15a00d3ee5a92e9c2ccd1164e106c51d51eb4
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-3168/optimizer.pt b/runs/i5-fulle-lm/checkpoint-3168/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..9b4f4eb9bfc935272b56646d9383cc9b2b46e625
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b838946bdf557bb820f28c8089163698559696659b71d0c5ca876079b8703915
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-3168/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-3168/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..754656c27cfaef094b89129857f42b39b97ee37e
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d7c0cceb9ba607d430e031773bd8c4ebe0c5b2d0944b32de83705cfc4a2f242e
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-3168/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-3168/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d0e44cb30aa76ce18fa95707b96e92d12d5399e1
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:408276f20391087db568ebd7a2f6094d8a3da38df33056575e9e393483a97603
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-3168/scheduler.pt b/runs/i5-fulle-lm/checkpoint-3168/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..197051978d6c74fdad6b7032be258e0e7820d474
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8e78dacd009cacb02d7e6aed95e856956ae6e4311674c02b7eda2409a3c3c392
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-3168/tokenizer.json b/runs/i5-fulle-lm/checkpoint-3168/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-3168/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-3168/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3168/trainer_state.json b/runs/i5-fulle-lm/checkpoint-3168/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..e0d71313c45ac546a91dfdfe151721c1e1d86de4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/trainer_state.json
@@ -0,0 +1,22546 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 44.0,
+ "eval_steps": 500,
+ "global_step": 3168,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.3500400842791977e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3168/training_args.bin b/runs/i5-fulle-lm/checkpoint-3168/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3168/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-3456/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-3456/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/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/i5-fulle-lm/checkpoint-3456/config.json b/runs/i5-fulle-lm/checkpoint-3456/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3456/generation_config.json b/runs/i5-fulle-lm/checkpoint-3456/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3456/model.safetensors b/runs/i5-fulle-lm/checkpoint-3456/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6fda7fd22bb56b1244722add1aea46d048d67320
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:873d028d111a3383acaca657473a71dd08f6da208ddfb894b7585df2a553daed
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-3456/optimizer.pt b/runs/i5-fulle-lm/checkpoint-3456/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5eb0d61242011fb1f70710cfc1ff71ce04bfca05
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a0952f472ee0838bacd466d885c5343dbde1ac4354e0c4ceb154733310a8f04
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-3456/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-3456/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..045d8f3b3f2ff0495ce84c685369923e19ff27a7
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c52d94baa4f5274e7165cf6563cfc8c76343569552184205e475af90c938342a
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-3456/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-3456/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..407b56f84f14606bd12fcf3ec421a8226f299cc6
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2200938be7806e1851cc476808498a08886b177e2db2933a98ec7f17232f1ab0
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-3456/scheduler.pt b/runs/i5-fulle-lm/checkpoint-3456/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6f299b34b59cabea3196797084c0dd37275dcaa8
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2a30063d3a42c95cfa4d505a809336bc072a917980dcfbeb28708fcb4baba115
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-3456/tokenizer.json b/runs/i5-fulle-lm/checkpoint-3456/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-3456/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-3456/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3456/trainer_state.json b/runs/i5-fulle-lm/checkpoint-3456/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..b664ad3569068955fae0eb6d31e6939a298b5149
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/trainer_state.json
@@ -0,0 +1,24594 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 48.0,
+ "eval_steps": 500,
+ "global_step": 3456,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.472771001031852e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3456/training_args.bin b/runs/i5-fulle-lm/checkpoint-3456/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3456/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-3744/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-3744/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/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/i5-fulle-lm/checkpoint-3744/config.json b/runs/i5-fulle-lm/checkpoint-3744/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3744/generation_config.json b/runs/i5-fulle-lm/checkpoint-3744/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3744/model.safetensors b/runs/i5-fulle-lm/checkpoint-3744/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e800b62d519c131e052d50f893350f3bc1f0f045
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cf05484e41fad83d561a942cab9621aa9159d7e82e2ee836f43ebb8106b29313
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-3744/optimizer.pt b/runs/i5-fulle-lm/checkpoint-3744/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..463d02c347091006e30448c6e16a86445f7b3cef
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:355d3695863459b139de040325d14556fd0b4d7ddb667daf9d12e047cf9bfc2b
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-3744/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-3744/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..45d0c47f1e26106641de922672044fac8077f577
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cff2d9038ddeee9b590ff1aaa30443e14c18805c0a6d7cab79f755c17e0e65f7
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-3744/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-3744/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..049c34415884cf51ac3220d70da6ca04a6f358b1
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5454eae1b5ee5ede9e0f25eefe96401eacf1b6d01a1c7063af90418456908018
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-3744/scheduler.pt b/runs/i5-fulle-lm/checkpoint-3744/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..20b086465f72e318302a946aa7b4256ef216a798
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7fdc869be493cb85f416c60210527a1c69abda3f8a295fcb1ff6f1bec552aedc
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-3744/tokenizer.json b/runs/i5-fulle-lm/checkpoint-3744/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-3744/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-3744/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3744/trainer_state.json b/runs/i5-fulle-lm/checkpoint-3744/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..1657f792e665f40081eae7956e9fd5dfe3f67d55
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/trainer_state.json
@@ -0,0 +1,26642 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 52.0,
+ "eval_steps": 500,
+ "global_step": 3744,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.5955019177845064e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-3744/training_args.bin b/runs/i5-fulle-lm/checkpoint-3744/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-3744/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-4032/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-4032/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/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/i5-fulle-lm/checkpoint-4032/config.json b/runs/i5-fulle-lm/checkpoint-4032/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4032/generation_config.json b/runs/i5-fulle-lm/checkpoint-4032/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4032/model.safetensors b/runs/i5-fulle-lm/checkpoint-4032/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..7256fd4364a6c3e25e25431044505e70bc7a31e9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8ea6c62b2cd50e245d3382b38299dccd6a1ebf27d3351c68156e13d807ed710d
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-4032/optimizer.pt b/runs/i5-fulle-lm/checkpoint-4032/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b69fdcd29159e68d70509417b13fda52fd50f110
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:18f4ddf5f2f62be24937f63af80c254d281521d3ffe42380e0636d185e0be9b8
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-4032/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-4032/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c9e702b95ed877022be3e9d21e2c72d869936d1f
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5f341e5dd5f3087540b08df0b3794bdf329dc987ba58378e593e4d496eee9551
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-4032/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-4032/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..909de7eabf3b175082923e3c77ab33950ef1166a
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:422f9f9dfa2d3448b2cf9d671cea6d7ebf758b3f995d4c3554f94810c9ece654
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-4032/scheduler.pt b/runs/i5-fulle-lm/checkpoint-4032/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5da96a3852815ab990f23f4b91093acc83e76469
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9dd17660f6a4c270971d4c998ea51235588dc2ab05504036a1351d00b0a57d2c
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-4032/tokenizer.json b/runs/i5-fulle-lm/checkpoint-4032/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-4032/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-4032/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4032/trainer_state.json b/runs/i5-fulle-lm/checkpoint-4032/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..c5cbe02c4e9a4d1501bb3515fd9b4c66d4234a03
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/trainer_state.json
@@ -0,0 +1,28690 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 56.0,
+ "eval_steps": 500,
+ "global_step": 4032,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.7182328345371607e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4032/training_args.bin b/runs/i5-fulle-lm/checkpoint-4032/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4032/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-4320/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-4320/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/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/i5-fulle-lm/checkpoint-4320/config.json b/runs/i5-fulle-lm/checkpoint-4320/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4320/generation_config.json b/runs/i5-fulle-lm/checkpoint-4320/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4320/model.safetensors b/runs/i5-fulle-lm/checkpoint-4320/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c723d754b6c5c7a56c3e8da8150e8b0c9d8879f7
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b1cbe01bf87653d1bf6343279ed8139b03d99805573977d61d46ea23ba97cdc0
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-4320/optimizer.pt b/runs/i5-fulle-lm/checkpoint-4320/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..bf5a9a732b1c2c50072843d5e6f58b42af3130ed
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8f006301c91d0ed7472b4157c7a9eb583b0a6fe2f8dfe88dba3561bd71c7a66a
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-4320/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-4320/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3ab50bc974b3e2457c3eb46b0a181adc7305cea9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c1ca980fa8f9dbd0f7919562c3b8c463bc614eb5d56e081107a60513df0d0502
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-4320/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-4320/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b198f2b6922f15edbe6cafcd3fb5f53b5dbd4459
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7620097a1df324e7bdb1731a1e9c15985bf2feb12307a39f8c0d0ec0e67176ff
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-4320/scheduler.pt b/runs/i5-fulle-lm/checkpoint-4320/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..8304bf8d1ccccae077ecc7e6e66bba8073475ac5
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9c504cbc081ac24362a030317097aa4f7d2e9075cfc12b05dc64f4ee58e8558c
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-4320/tokenizer.json b/runs/i5-fulle-lm/checkpoint-4320/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-4320/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-4320/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4320/trainer_state.json b/runs/i5-fulle-lm/checkpoint-4320/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..8a3456d2f662ae612e1d98576b21d2cdcbc63a40
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/trainer_state.json
@@ -0,0 +1,30738 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 60.0,
+ "eval_steps": 500,
+ "global_step": 4320,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.840963751289815e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4320/training_args.bin b/runs/i5-fulle-lm/checkpoint-4320/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4320/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-4608/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-4608/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/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/i5-fulle-lm/checkpoint-4608/config.json b/runs/i5-fulle-lm/checkpoint-4608/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4608/generation_config.json b/runs/i5-fulle-lm/checkpoint-4608/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4608/model.safetensors b/runs/i5-fulle-lm/checkpoint-4608/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..49a5a71729f4e46177858da91ba2b33a3e95fbf9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4271be7d1383c05f6b4331675f0d881538ef00377c5c992c48bd5ca86d1b778f
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-4608/optimizer.pt b/runs/i5-fulle-lm/checkpoint-4608/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..dad20228bef71aad8e73e0d73d65df6e259147b3
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:db9c6ba003bbf74226784fa88f1f0edeeec470885bf2dd4419e2245db765496a
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-4608/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-4608/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..26308ef25ea6ab9b2c94e9bf280ec4f847570eb3
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d0dcc93ac866a769ca30d98d01fecad060a7a468982cd37a190df57c8494e730
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-4608/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-4608/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1cef0989cdef973bfbf0e95b75212d99f6d39afe
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8fa6017919eaf602b7222b4d7509af04e336b6a18cf90e0c2b6ca7d43cec4914
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-4608/scheduler.pt b/runs/i5-fulle-lm/checkpoint-4608/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e577101181b24dfcc9b18d0a62144d06cb4b37c2
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8d97e4c65a4c8c2376a5585ec88bf61c1243526bb687aa9ffb5e9d7512df2daa
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-4608/tokenizer.json b/runs/i5-fulle-lm/checkpoint-4608/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-4608/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-4608/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4608/trainer_state.json b/runs/i5-fulle-lm/checkpoint-4608/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..a5f1622080d5e36a15ee709db781379fc330cd9c
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/trainer_state.json
@@ -0,0 +1,32786 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 64.0,
+ "eval_steps": 500,
+ "global_step": 4608,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.9636946680424694e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4608/training_args.bin b/runs/i5-fulle-lm/checkpoint-4608/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4608/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-4896/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-4896/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/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/i5-fulle-lm/checkpoint-4896/config.json b/runs/i5-fulle-lm/checkpoint-4896/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4896/generation_config.json b/runs/i5-fulle-lm/checkpoint-4896/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4896/model.safetensors b/runs/i5-fulle-lm/checkpoint-4896/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..2449f72b83f031b14e7f2765b2ce926a0316c902
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bfd886fd6a753c060e24d3942f9489eb8004b701afc6e0f78a6983c1c90b0f33
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-4896/optimizer.pt b/runs/i5-fulle-lm/checkpoint-4896/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..275bfacdc88e8bf24ec1d049878e90881351d8fa
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b459271ad38fc90a923e12f599560b27bd2d302d5176927da52408ee5104db
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-4896/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-4896/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..344e7727dfa7eac95746df962f80c8bfa9106efb
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bf5e43fdb9d612719b4ede94dc3a468d8bf646ef09a7d1a686e6efc52227ca50
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-4896/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-4896/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b1502f95b21f2ab428042a6b7ca11f446e0f41f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:94eaf747b619c708e39083d06cc86ff8559903d0f4754da9809663036cfefa01
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-4896/scheduler.pt b/runs/i5-fulle-lm/checkpoint-4896/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f446f829d82a1f86c912714abb53d7fba343010b
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:94642e081368d7b75b2ef306469e253305fe85f7bdeb714618031927a58d2a80
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-4896/tokenizer.json b/runs/i5-fulle-lm/checkpoint-4896/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-4896/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-4896/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4896/trainer_state.json b/runs/i5-fulle-lm/checkpoint-4896/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..abdf722fd1849204ca982e263b6e980478c2a529
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/trainer_state.json
@@ -0,0 +1,34834 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 68.0,
+ "eval_steps": 500,
+ "global_step": 4896,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.0864255847951237e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-4896/training_args.bin b/runs/i5-fulle-lm/checkpoint-4896/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-4896/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-5184/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-5184/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/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/i5-fulle-lm/checkpoint-5184/config.json b/runs/i5-fulle-lm/checkpoint-5184/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5184/generation_config.json b/runs/i5-fulle-lm/checkpoint-5184/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5184/model.safetensors b/runs/i5-fulle-lm/checkpoint-5184/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..2b9b1731f0ab30c136a865617e85b8a22337dc63
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:805cfe00d6d36d6e91432b842f9ffdbf722a06fc952b83641f977708ab61dd7b
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-5184/optimizer.pt b/runs/i5-fulle-lm/checkpoint-5184/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5035f7f95feb5fa2539a528690f55c694caf10a7
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0d18a760a7df7eaad172ab5b06880bc4c8a6022bf7e5708e6414d62a93653a7a
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-5184/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-5184/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..03cfa6c62295724c0a8f3b7efb822b3ae9d80a1a
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ea690eb49c36cd48e212c52a4fc13cb16ca1e53f11c7af75cbd4ae0726f24348
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-5184/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-5184/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..bdf2d153a35ba5a51aa42c818c76e22c9f6428a9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c90a48b018fe5273df2998134f90d1e3cf78389b715a80ec739307dd7c18c2dd
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-5184/scheduler.pt b/runs/i5-fulle-lm/checkpoint-5184/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..87c25f34fb9c3e31517de12eec62aa55b15b7f35
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f27f1d0b18f28ca972b7026932ac402d35af3b241ee72040352067f9ee1e6988
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-5184/tokenizer.json b/runs/i5-fulle-lm/checkpoint-5184/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-5184/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-5184/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5184/trainer_state.json b/runs/i5-fulle-lm/checkpoint-5184/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..32ae3d1d5e00fe401fcfba93f1a51976a156d6de
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/trainer_state.json
@@ -0,0 +1,36882 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 72.0,
+ "eval_steps": 500,
+ "global_step": 5184,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 6.10045862197876,
+ "eval_runtime": 43.881,
+ "eval_samples_per_second": 55.651,
+ "eval_steps_per_second": 3.487,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.3880091607570648,
+ "learning_rate": 0.0006,
+ "loss": 4.2891340255737305,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.46462568640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.368136882781982,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.46417036652565,
+ "learning_rate": 0.0006,
+ "loss": 4.290570259094238,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.42546287178993225,
+ "learning_rate": 0.0006,
+ "loss": 4.275969505310059,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.42158621549606323,
+ "learning_rate": 0.0006,
+ "loss": 4.3133697509765625,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.41421398520469666,
+ "learning_rate": 0.0006,
+ "loss": 4.318943977355957,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.4261677861213684,
+ "learning_rate": 0.0006,
+ "loss": 4.386415481567383,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.4547804594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.200797080993652,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.5152761340141296,
+ "learning_rate": 0.0006,
+ "loss": 4.392667770385742,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.6397215127944946,
+ "learning_rate": 0.0006,
+ "loss": 4.365647315979004,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.867751955986023,
+ "learning_rate": 0.0006,
+ "loss": 4.404231071472168,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 1.113226056098938,
+ "learning_rate": 0.0006,
+ "loss": 4.4237775802612305,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.9725164771080017,
+ "learning_rate": 0.0006,
+ "loss": 4.353878021240234,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.8986128568649292,
+ "learning_rate": 0.0006,
+ "loss": 4.404200553894043,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.644611656665802,
+ "learning_rate": 0.0006,
+ "loss": 4.314446449279785,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.5430455803871155,
+ "learning_rate": 0.0006,
+ "loss": 4.404072284698486,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.5315895080566406,
+ "learning_rate": 0.0006,
+ "loss": 4.339350700378418,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.4984396696090698,
+ "learning_rate": 0.0006,
+ "loss": 4.418368339538574,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.4928722679615021,
+ "learning_rate": 0.0006,
+ "loss": 4.351061820983887,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.4810708463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.32480525970459,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.4846661388874054,
+ "learning_rate": 0.0006,
+ "loss": 4.410396099090576,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.45098942518234253,
+ "learning_rate": 0.0006,
+ "loss": 4.434419631958008,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.4603881239891052,
+ "learning_rate": 0.0006,
+ "loss": 4.374553680419922,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.47921186685562134,
+ "learning_rate": 0.0006,
+ "loss": 4.43428373336792,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.458781361579895,
+ "learning_rate": 0.0006,
+ "loss": 4.345955848693848,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.43630266189575195,
+ "learning_rate": 0.0006,
+ "loss": 4.396679401397705,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.4061865210533142,
+ "learning_rate": 0.0006,
+ "loss": 4.3547186851501465,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.3998570740222931,
+ "learning_rate": 0.0006,
+ "loss": 4.42930793762207,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.43052756786346436,
+ "learning_rate": 0.0006,
+ "loss": 4.483987808227539,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.40878528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.4177021980285645,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.41628801822662354,
+ "learning_rate": 0.0006,
+ "loss": 4.383821487426758,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.39991578459739685,
+ "learning_rate": 0.0006,
+ "loss": 4.403266429901123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.3781890571117401,
+ "learning_rate": 0.0006,
+ "loss": 4.361995220184326,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.38037991523742676,
+ "learning_rate": 0.0006,
+ "loss": 4.520498275756836,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.3687450587749481,
+ "learning_rate": 0.0006,
+ "loss": 4.34592342376709,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.3800104558467865,
+ "learning_rate": 0.0006,
+ "loss": 4.395520210266113,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.38416075706481934,
+ "learning_rate": 0.0006,
+ "loss": 4.432024002075195,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.38714301586151123,
+ "learning_rate": 0.0006,
+ "loss": 4.371710300445557,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.3560386002063751,
+ "learning_rate": 0.0006,
+ "loss": 4.389065265655518,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.3583020269870758,
+ "learning_rate": 0.0006,
+ "loss": 4.294467926025391,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.3507572412490845,
+ "learning_rate": 0.0006,
+ "loss": 4.335668563842773,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.3481273353099823,
+ "learning_rate": 0.0006,
+ "loss": 4.355007171630859,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.3648652732372284,
+ "learning_rate": 0.0006,
+ "loss": 4.458398818969727,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.3315402865409851,
+ "learning_rate": 0.0006,
+ "loss": 4.415014266967773,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.34356269240379333,
+ "learning_rate": 0.0006,
+ "loss": 4.3891496658325195,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.3475818932056427,
+ "learning_rate": 0.0006,
+ "loss": 4.403259754180908,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.3756524622440338,
+ "learning_rate": 0.0006,
+ "loss": 4.396340370178223,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.38063693046569824,
+ "learning_rate": 0.0006,
+ "loss": 4.390671253204346,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.3574332594871521,
+ "learning_rate": 0.0006,
+ "loss": 4.342291831970215,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.35717374086380005,
+ "learning_rate": 0.0006,
+ "loss": 4.389538764953613,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.34184643626213074,
+ "learning_rate": 0.0006,
+ "loss": 4.407958030700684,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.3665345013141632,
+ "learning_rate": 0.0006,
+ "loss": 4.407729148864746,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.3752829432487488,
+ "learning_rate": 0.0006,
+ "loss": 4.406526565551758,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.3690424859523773,
+ "learning_rate": 0.0006,
+ "loss": 4.444920063018799,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.35570403933525085,
+ "learning_rate": 0.0006,
+ "loss": 4.41465950012207,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.3422539532184601,
+ "learning_rate": 0.0006,
+ "loss": 4.341947078704834,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.34019631147384644,
+ "learning_rate": 0.0006,
+ "loss": 4.383486747741699,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.35433074831962585,
+ "learning_rate": 0.0006,
+ "loss": 4.43992280960083,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.3690914809703827,
+ "learning_rate": 0.0006,
+ "loss": 4.396021842956543,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.35793814063072205,
+ "learning_rate": 0.0006,
+ "loss": 4.389019012451172,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.34700852632522583,
+ "learning_rate": 0.0006,
+ "loss": 4.476073265075684,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.3613256514072418,
+ "learning_rate": 0.0006,
+ "loss": 4.43828010559082,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.3444153070449829,
+ "learning_rate": 0.0006,
+ "loss": 4.470188140869141,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.3383917510509491,
+ "learning_rate": 0.0006,
+ "loss": 4.381032943725586,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.3648519217967987,
+ "learning_rate": 0.0006,
+ "loss": 4.399723052978516,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.34983959794044495,
+ "learning_rate": 0.0006,
+ "loss": 4.43270206451416,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.33937394618988037,
+ "learning_rate": 0.0006,
+ "loss": 4.4052228927612305,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.34935757517814636,
+ "learning_rate": 0.0006,
+ "loss": 4.38171911239624,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.3566495180130005,
+ "learning_rate": 0.0006,
+ "loss": 4.495579242706299,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.3702648878097534,
+ "learning_rate": 0.0006,
+ "loss": 4.452796936035156,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.3714422583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.404526710510254,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.42734357714653015,
+ "learning_rate": 0.0006,
+ "loss": 4.511031150817871,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 6.156860828399658,
+ "eval_runtime": 44.07,
+ "eval_samples_per_second": 55.412,
+ "eval_steps_per_second": 3.472,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.381186306476593,
+ "learning_rate": 0.0006,
+ "loss": 4.39985466003418,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.4057665169239044,
+ "learning_rate": 0.0006,
+ "loss": 4.338055610656738,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.4002494513988495,
+ "learning_rate": 0.0006,
+ "loss": 4.331958770751953,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.4294043183326721,
+ "learning_rate": 0.0006,
+ "loss": 4.339388370513916,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.45085105299949646,
+ "learning_rate": 0.0006,
+ "loss": 4.334287643432617,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.5061688423156738,
+ "learning_rate": 0.0006,
+ "loss": 4.2327470779418945,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.5022581219673157,
+ "learning_rate": 0.0006,
+ "loss": 4.291156768798828,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.5529219508171082,
+ "learning_rate": 0.0006,
+ "loss": 4.4021406173706055,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.5945294499397278,
+ "learning_rate": 0.0006,
+ "loss": 4.3400092124938965,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.5755016803741455,
+ "learning_rate": 0.0006,
+ "loss": 4.2676286697387695,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.5352432131767273,
+ "learning_rate": 0.0006,
+ "loss": 4.322068214416504,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.5563830137252808,
+ "learning_rate": 0.0006,
+ "loss": 4.401552200317383,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.5542744994163513,
+ "learning_rate": 0.0006,
+ "loss": 4.361536026000977,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.5109394788742065,
+ "learning_rate": 0.0006,
+ "loss": 4.333110809326172,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.48128604888916016,
+ "learning_rate": 0.0006,
+ "loss": 4.311734199523926,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.48069921135902405,
+ "learning_rate": 0.0006,
+ "loss": 4.400852203369141,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.45155879855155945,
+ "learning_rate": 0.0006,
+ "loss": 4.257515907287598,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.44431430101394653,
+ "learning_rate": 0.0006,
+ "loss": 4.397309303283691,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.43975624442100525,
+ "learning_rate": 0.0006,
+ "loss": 4.392481803894043,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.43021512031555176,
+ "learning_rate": 0.0006,
+ "loss": 4.323525428771973,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.4590098559856415,
+ "learning_rate": 0.0006,
+ "loss": 4.334511756896973,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.42400652170181274,
+ "learning_rate": 0.0006,
+ "loss": 4.33546257019043,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.41162917017936707,
+ "learning_rate": 0.0006,
+ "loss": 4.348457336425781,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.44991976022720337,
+ "learning_rate": 0.0006,
+ "loss": 4.3486785888671875,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.41424447298049927,
+ "learning_rate": 0.0006,
+ "loss": 4.396841049194336,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.4157496690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.386002540588379,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.43610864877700806,
+ "learning_rate": 0.0006,
+ "loss": 4.355074882507324,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.43452468514442444,
+ "learning_rate": 0.0006,
+ "loss": 4.327574729919434,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.42757663130760193,
+ "learning_rate": 0.0006,
+ "loss": 4.289640426635742,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.38811302185058594,
+ "learning_rate": 0.0006,
+ "loss": 4.297506809234619,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.3866890072822571,
+ "learning_rate": 0.0006,
+ "loss": 4.4301838874816895,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.43073758482933044,
+ "learning_rate": 0.0006,
+ "loss": 4.365545749664307,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.4058871865272522,
+ "learning_rate": 0.0006,
+ "loss": 4.294832229614258,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.41439321637153625,
+ "learning_rate": 0.0006,
+ "loss": 4.374986171722412,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.39280998706817627,
+ "learning_rate": 0.0006,
+ "loss": 4.472156524658203,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.380862832069397,
+ "learning_rate": 0.0006,
+ "loss": 4.3376359939575195,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.3880598843097687,
+ "learning_rate": 0.0006,
+ "loss": 4.399764537811279,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.4056805372238159,
+ "learning_rate": 0.0006,
+ "loss": 4.3839263916015625,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.43928271532058716,
+ "learning_rate": 0.0006,
+ "loss": 4.387872695922852,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.4157223701477051,
+ "learning_rate": 0.0006,
+ "loss": 4.491827011108398,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.38938942551612854,
+ "learning_rate": 0.0006,
+ "loss": 4.369803428649902,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.39400580525398254,
+ "learning_rate": 0.0006,
+ "loss": 4.4603800773620605,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.3747307062149048,
+ "learning_rate": 0.0006,
+ "loss": 4.366776466369629,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.4072708785533905,
+ "learning_rate": 0.0006,
+ "loss": 4.3782854080200195,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.4091123342514038,
+ "learning_rate": 0.0006,
+ "loss": 4.4356689453125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.40395987033843994,
+ "learning_rate": 0.0006,
+ "loss": 4.413468360900879,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.39857032895088196,
+ "learning_rate": 0.0006,
+ "loss": 4.450807571411133,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.4158494174480438,
+ "learning_rate": 0.0006,
+ "loss": 4.381142616271973,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.4082915484905243,
+ "learning_rate": 0.0006,
+ "loss": 4.496438980102539,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.37405046820640564,
+ "learning_rate": 0.0006,
+ "loss": 4.345484256744385,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.359416127204895,
+ "learning_rate": 0.0006,
+ "loss": 4.26982307434082,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.3519706726074219,
+ "learning_rate": 0.0006,
+ "loss": 4.397839546203613,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.3789094388484955,
+ "learning_rate": 0.0006,
+ "loss": 4.415822982788086,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.3676875829696655,
+ "learning_rate": 0.0006,
+ "loss": 4.396381855010986,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.3599476218223572,
+ "learning_rate": 0.0006,
+ "loss": 4.4171977043151855,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.3843400180339813,
+ "learning_rate": 0.0006,
+ "loss": 4.47220516204834,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.3702511191368103,
+ "learning_rate": 0.0006,
+ "loss": 4.500491619110107,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.3719273805618286,
+ "learning_rate": 0.0006,
+ "loss": 4.352668762207031,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.3619741201400757,
+ "learning_rate": 0.0006,
+ "loss": 4.3586931228637695,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.3766055703163147,
+ "learning_rate": 0.0006,
+ "loss": 4.408159255981445,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.3580402433872223,
+ "learning_rate": 0.0006,
+ "loss": 4.355810165405273,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.3602997958660126,
+ "learning_rate": 0.0006,
+ "loss": 4.357786178588867,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.35930490493774414,
+ "learning_rate": 0.0006,
+ "loss": 4.353297233581543,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.3693123161792755,
+ "learning_rate": 0.0006,
+ "loss": 4.391401290893555,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.36045047640800476,
+ "learning_rate": 0.0006,
+ "loss": 4.447843551635742,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.38618308305740356,
+ "learning_rate": 0.0006,
+ "loss": 4.465207099914551,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.38916000723838806,
+ "learning_rate": 0.0006,
+ "loss": 4.4063239097595215,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.3937848210334778,
+ "learning_rate": 0.0006,
+ "loss": 4.438618183135986,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.3975565731525421,
+ "learning_rate": 0.0006,
+ "loss": 4.376347541809082,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.383375883102417,
+ "learning_rate": 0.0006,
+ "loss": 4.376345634460449,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.38982275128364563,
+ "learning_rate": 0.0006,
+ "loss": 4.477313041687012,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.44567444920539856,
+ "learning_rate": 0.0006,
+ "loss": 4.4622087478637695,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 6.127683162689209,
+ "eval_runtime": 43.8712,
+ "eval_samples_per_second": 55.663,
+ "eval_steps_per_second": 3.487,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.38945627212524414,
+ "learning_rate": 0.0006,
+ "loss": 4.225332736968994,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.48500800132751465,
+ "learning_rate": 0.0006,
+ "loss": 4.303142547607422,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.4945746660232544,
+ "learning_rate": 0.0006,
+ "loss": 4.252800464630127,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.4860735237598419,
+ "learning_rate": 0.0006,
+ "loss": 4.3632307052612305,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.5717944502830505,
+ "learning_rate": 0.0006,
+ "loss": 4.2910966873168945,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.6825600862503052,
+ "learning_rate": 0.0006,
+ "loss": 4.446534633636475,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.7507191300392151,
+ "learning_rate": 0.0006,
+ "loss": 4.3218584060668945,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.8143581748008728,
+ "learning_rate": 0.0006,
+ "loss": 4.291619777679443,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.8164665699005127,
+ "learning_rate": 0.0006,
+ "loss": 4.314390182495117,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.8027179837226868,
+ "learning_rate": 0.0006,
+ "loss": 4.347686767578125,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.7046833038330078,
+ "learning_rate": 0.0006,
+ "loss": 4.382390975952148,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.6704773902893066,
+ "learning_rate": 0.0006,
+ "loss": 4.368736267089844,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.5986452698707581,
+ "learning_rate": 0.0006,
+ "loss": 4.3586106300354,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.5452585816383362,
+ "learning_rate": 0.0006,
+ "loss": 4.215537071228027,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.5050400495529175,
+ "learning_rate": 0.0006,
+ "loss": 4.345709800720215,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.4811224639415741,
+ "learning_rate": 0.0006,
+ "loss": 4.229983329772949,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.47257834672927856,
+ "learning_rate": 0.0006,
+ "loss": 4.401679039001465,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.46806448698043823,
+ "learning_rate": 0.0006,
+ "loss": 4.345294952392578,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.47019970417022705,
+ "learning_rate": 0.0006,
+ "loss": 4.3366899490356445,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.4618140459060669,
+ "learning_rate": 0.0006,
+ "loss": 4.423093795776367,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.45103076100349426,
+ "learning_rate": 0.0006,
+ "loss": 4.429213523864746,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.42674535512924194,
+ "learning_rate": 0.0006,
+ "loss": 4.355292320251465,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.4282950162887573,
+ "learning_rate": 0.0006,
+ "loss": 4.307826995849609,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.4120710790157318,
+ "learning_rate": 0.0006,
+ "loss": 4.322912216186523,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.4138009548187256,
+ "learning_rate": 0.0006,
+ "loss": 4.328085899353027,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.41546961665153503,
+ "learning_rate": 0.0006,
+ "loss": 4.4070940017700195,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.44050562381744385,
+ "learning_rate": 0.0006,
+ "loss": 4.419538497924805,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.41043856739997864,
+ "learning_rate": 0.0006,
+ "loss": 4.404756546020508,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.42796140909194946,
+ "learning_rate": 0.0006,
+ "loss": 4.3040008544921875,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.38510003685951233,
+ "learning_rate": 0.0006,
+ "loss": 4.353320598602295,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.3788503110408783,
+ "learning_rate": 0.0006,
+ "loss": 4.300704479217529,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.3905165493488312,
+ "learning_rate": 0.0006,
+ "loss": 4.343006610870361,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.3838869333267212,
+ "learning_rate": 0.0006,
+ "loss": 4.308780670166016,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.38746532797813416,
+ "learning_rate": 0.0006,
+ "loss": 4.335064888000488,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.37491124868392944,
+ "learning_rate": 0.0006,
+ "loss": 4.32066535949707,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.36987295746803284,
+ "learning_rate": 0.0006,
+ "loss": 4.317310333251953,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.38870200514793396,
+ "learning_rate": 0.0006,
+ "loss": 4.354729652404785,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.37225764989852905,
+ "learning_rate": 0.0006,
+ "loss": 4.29198694229126,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.3612116873264313,
+ "learning_rate": 0.0006,
+ "loss": 4.3979315757751465,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.40117356181144714,
+ "learning_rate": 0.0006,
+ "loss": 4.429460048675537,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.3933751881122589,
+ "learning_rate": 0.0006,
+ "loss": 4.348066329956055,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.38921254873275757,
+ "learning_rate": 0.0006,
+ "loss": 4.405765056610107,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.3987453579902649,
+ "learning_rate": 0.0006,
+ "loss": 4.350672721862793,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.43417951464653015,
+ "learning_rate": 0.0006,
+ "loss": 4.463413238525391,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.41297927498817444,
+ "learning_rate": 0.0006,
+ "loss": 4.309045791625977,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.38461950421333313,
+ "learning_rate": 0.0006,
+ "loss": 4.318929672241211,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.3841524124145508,
+ "learning_rate": 0.0006,
+ "loss": 4.379926681518555,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.39013510942459106,
+ "learning_rate": 0.0006,
+ "loss": 4.3409342765808105,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.3847009539604187,
+ "learning_rate": 0.0006,
+ "loss": 4.467362880706787,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.3979317247867584,
+ "learning_rate": 0.0006,
+ "loss": 4.333352088928223,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.4019637107849121,
+ "learning_rate": 0.0006,
+ "loss": 4.32415246963501,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.38000333309173584,
+ "learning_rate": 0.0006,
+ "loss": 4.318780899047852,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.3957592248916626,
+ "learning_rate": 0.0006,
+ "loss": 4.301888942718506,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.380258709192276,
+ "learning_rate": 0.0006,
+ "loss": 4.362771987915039,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.37715500593185425,
+ "learning_rate": 0.0006,
+ "loss": 4.455068588256836,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.37162303924560547,
+ "learning_rate": 0.0006,
+ "loss": 4.453987121582031,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.36303192377090454,
+ "learning_rate": 0.0006,
+ "loss": 4.400303363800049,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.34762880206108093,
+ "learning_rate": 0.0006,
+ "loss": 4.3961381912231445,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.34881117939949036,
+ "learning_rate": 0.0006,
+ "loss": 4.419530868530273,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.36440593004226685,
+ "learning_rate": 0.0006,
+ "loss": 4.4832868576049805,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.3671160638332367,
+ "learning_rate": 0.0006,
+ "loss": 4.389676094055176,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.3860883116722107,
+ "learning_rate": 0.0006,
+ "loss": 4.383245468139648,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.38325265049934387,
+ "learning_rate": 0.0006,
+ "loss": 4.3348388671875,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.3778875470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.362031936645508,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.3768773674964905,
+ "learning_rate": 0.0006,
+ "loss": 4.33457088470459,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.39139771461486816,
+ "learning_rate": 0.0006,
+ "loss": 4.455694198608398,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.38553205132484436,
+ "learning_rate": 0.0006,
+ "loss": 4.347469329833984,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.3916657567024231,
+ "learning_rate": 0.0006,
+ "loss": 4.394040107727051,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.3568893373012543,
+ "learning_rate": 0.0006,
+ "loss": 4.3976874351501465,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.3758280277252197,
+ "learning_rate": 0.0006,
+ "loss": 4.401939392089844,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.3833237588405609,
+ "learning_rate": 0.0006,
+ "loss": 4.339327812194824,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.4451141357421875,
+ "learning_rate": 0.0006,
+ "loss": 4.452360153198242,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 6.193995952606201,
+ "eval_runtime": 43.9228,
+ "eval_samples_per_second": 55.598,
+ "eval_steps_per_second": 3.483,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.4081752598285675,
+ "learning_rate": 0.0006,
+ "loss": 4.2674560546875,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.46005865931510925,
+ "learning_rate": 0.0006,
+ "loss": 4.2233099937438965,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.4297347962856293,
+ "learning_rate": 0.0006,
+ "loss": 4.269168376922607,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.427181601524353,
+ "learning_rate": 0.0006,
+ "loss": 4.304473876953125,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.4240623712539673,
+ "learning_rate": 0.0006,
+ "loss": 4.358336448669434,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.461392879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.351563930511475,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.4573875665664673,
+ "learning_rate": 0.0006,
+ "loss": 4.233829021453857,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.5236565470695496,
+ "learning_rate": 0.0006,
+ "loss": 4.313651084899902,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.6449952125549316,
+ "learning_rate": 0.0006,
+ "loss": 4.2785491943359375,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.76405930519104,
+ "learning_rate": 0.0006,
+ "loss": 4.333526611328125,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.8181349635124207,
+ "learning_rate": 0.0006,
+ "loss": 4.3336896896362305,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.7717618942260742,
+ "learning_rate": 0.0006,
+ "loss": 4.314065933227539,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.6831390857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.378012657165527,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.5755302906036377,
+ "learning_rate": 0.0006,
+ "loss": 4.331476211547852,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.5297263860702515,
+ "learning_rate": 0.0006,
+ "loss": 4.337549209594727,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.5538325309753418,
+ "learning_rate": 0.0006,
+ "loss": 4.395265102386475,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.4868195652961731,
+ "learning_rate": 0.0006,
+ "loss": 4.313584327697754,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.4794177711009979,
+ "learning_rate": 0.0006,
+ "loss": 4.413606643676758,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.4221785366535187,
+ "learning_rate": 0.0006,
+ "loss": 4.255707740783691,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.4288736879825592,
+ "learning_rate": 0.0006,
+ "loss": 4.257824897766113,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.42079946398735046,
+ "learning_rate": 0.0006,
+ "loss": 4.2655253410339355,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.4367576539516449,
+ "learning_rate": 0.0006,
+ "loss": 4.390307426452637,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.4121208190917969,
+ "learning_rate": 0.0006,
+ "loss": 4.3600006103515625,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.3934427797794342,
+ "learning_rate": 0.0006,
+ "loss": 4.276140213012695,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.3987336754798889,
+ "learning_rate": 0.0006,
+ "loss": 4.330526351928711,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.40691474080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.260777473449707,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.3869854807853699,
+ "learning_rate": 0.0006,
+ "loss": 4.3207855224609375,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.3992115259170532,
+ "learning_rate": 0.0006,
+ "loss": 4.3675432205200195,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.39756008982658386,
+ "learning_rate": 0.0006,
+ "loss": 4.359041213989258,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.37387391924858093,
+ "learning_rate": 0.0006,
+ "loss": 4.314123630523682,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.3787343502044678,
+ "learning_rate": 0.0006,
+ "loss": 4.376033782958984,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.388907253742218,
+ "learning_rate": 0.0006,
+ "loss": 4.2664690017700195,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.39261215925216675,
+ "learning_rate": 0.0006,
+ "loss": 4.335193634033203,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.385919988155365,
+ "learning_rate": 0.0006,
+ "loss": 4.329131126403809,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.39091575145721436,
+ "learning_rate": 0.0006,
+ "loss": 4.416098117828369,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.3747062683105469,
+ "learning_rate": 0.0006,
+ "loss": 4.284010887145996,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.37862640619277954,
+ "learning_rate": 0.0006,
+ "loss": 4.398101806640625,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.3797444701194763,
+ "learning_rate": 0.0006,
+ "loss": 4.433382034301758,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.3917072117328644,
+ "learning_rate": 0.0006,
+ "loss": 4.265375137329102,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.40743324160575867,
+ "learning_rate": 0.0006,
+ "loss": 4.351291656494141,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.4176776707172394,
+ "learning_rate": 0.0006,
+ "loss": 4.4158782958984375,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.4368206560611725,
+ "learning_rate": 0.0006,
+ "loss": 4.422186851501465,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.45450183749198914,
+ "learning_rate": 0.0006,
+ "loss": 4.363736629486084,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.4195234775543213,
+ "learning_rate": 0.0006,
+ "loss": 4.459656715393066,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.3838373124599457,
+ "learning_rate": 0.0006,
+ "loss": 4.338109016418457,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.37965819239616394,
+ "learning_rate": 0.0006,
+ "loss": 4.350182056427002,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.3787379264831543,
+ "learning_rate": 0.0006,
+ "loss": 4.394096851348877,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.3984084129333496,
+ "learning_rate": 0.0006,
+ "loss": 4.381903171539307,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.3826642334461212,
+ "learning_rate": 0.0006,
+ "loss": 4.269111156463623,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.3738428056240082,
+ "learning_rate": 0.0006,
+ "loss": 4.29117488861084,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.3769048750400543,
+ "learning_rate": 0.0006,
+ "loss": 4.395892143249512,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.36490270495414734,
+ "learning_rate": 0.0006,
+ "loss": 4.356070518493652,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.38128694891929626,
+ "learning_rate": 0.0006,
+ "loss": 4.366775989532471,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.3863452672958374,
+ "learning_rate": 0.0006,
+ "loss": 4.403047561645508,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.3697649836540222,
+ "learning_rate": 0.0006,
+ "loss": 4.333529472351074,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.3666415810585022,
+ "learning_rate": 0.0006,
+ "loss": 4.421572685241699,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.3746238946914673,
+ "learning_rate": 0.0006,
+ "loss": 4.291342735290527,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.3864925503730774,
+ "learning_rate": 0.0006,
+ "loss": 4.319379806518555,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.40842366218566895,
+ "learning_rate": 0.0006,
+ "loss": 4.34860897064209,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.39575234055519104,
+ "learning_rate": 0.0006,
+ "loss": 4.389467239379883,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.3882506787776947,
+ "learning_rate": 0.0006,
+ "loss": 4.373462677001953,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.38202980160713196,
+ "learning_rate": 0.0006,
+ "loss": 4.370086669921875,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.37805864214897156,
+ "learning_rate": 0.0006,
+ "loss": 4.46006965637207,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.3739442527294159,
+ "learning_rate": 0.0006,
+ "loss": 4.36165714263916,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.3707204759120941,
+ "learning_rate": 0.0006,
+ "loss": 4.418872356414795,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.37603604793548584,
+ "learning_rate": 0.0006,
+ "loss": 4.45180606842041,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.3731978237628937,
+ "learning_rate": 0.0006,
+ "loss": 4.412590026855469,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.3871077001094818,
+ "learning_rate": 0.0006,
+ "loss": 4.4665679931640625,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.3805893659591675,
+ "learning_rate": 0.0006,
+ "loss": 4.376047134399414,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.3941190540790558,
+ "learning_rate": 0.0006,
+ "loss": 4.414681434631348,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.39961132407188416,
+ "learning_rate": 0.0006,
+ "loss": 4.40030574798584,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.45096156001091003,
+ "learning_rate": 0.0006,
+ "loss": 4.3740458488464355,
+ "step": 5184
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.209156501547778e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5184/training_args.bin b/runs/i5-fulle-lm/checkpoint-5184/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5184/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-5472/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-5472/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/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/i5-fulle-lm/checkpoint-5472/config.json b/runs/i5-fulle-lm/checkpoint-5472/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5472/generation_config.json b/runs/i5-fulle-lm/checkpoint-5472/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5472/model.safetensors b/runs/i5-fulle-lm/checkpoint-5472/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..747f78cc967b267853682b99be2987a240c42516
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e6e54ac08a05ca23ecd90036e4af64c43d9308f6eca186ce5b4609f3c2dd1fca
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-5472/optimizer.pt b/runs/i5-fulle-lm/checkpoint-5472/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..262cace44a02b94512036e58110654b29e011d8e
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c2fbd8ff08c38a34ff9f6969dfe509527287012ce2f37adf400364232c666cca
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-5472/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-5472/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1662432502afa871bb830cef08ed5af4f81fbc9c
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7c5e9cc0216478133d5ec9dbc9335c04f7a8d2201243effac4a7c77d998ccfb9
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-5472/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-5472/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5f031a7fa88109ec0a8758a98200e0b177f3db20
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:eb44bc1bcca54d3602fdaeb34bf8df7fd16d7bcd0dec0953e5097bef358a016d
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-5472/scheduler.pt b/runs/i5-fulle-lm/checkpoint-5472/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..bde6e47e59bea2a2d1c7be49dbaa3a2d4dfadf37
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ec3fa8fa903a5a893f5b74cfd95272dfde1a7a2149fd0f3ecec1adb7304a55b8
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-5472/tokenizer.json b/runs/i5-fulle-lm/checkpoint-5472/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-5472/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-5472/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5472/trainer_state.json b/runs/i5-fulle-lm/checkpoint-5472/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..4473db819313258056d4ddc42fc810d5e69dd800
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/trainer_state.json
@@ -0,0 +1,38930 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 76.0,
+ "eval_steps": 500,
+ "global_step": 5472,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 6.10045862197876,
+ "eval_runtime": 43.881,
+ "eval_samples_per_second": 55.651,
+ "eval_steps_per_second": 3.487,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.3880091607570648,
+ "learning_rate": 0.0006,
+ "loss": 4.2891340255737305,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.46462568640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.368136882781982,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.46417036652565,
+ "learning_rate": 0.0006,
+ "loss": 4.290570259094238,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.42546287178993225,
+ "learning_rate": 0.0006,
+ "loss": 4.275969505310059,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.42158621549606323,
+ "learning_rate": 0.0006,
+ "loss": 4.3133697509765625,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.41421398520469666,
+ "learning_rate": 0.0006,
+ "loss": 4.318943977355957,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.4261677861213684,
+ "learning_rate": 0.0006,
+ "loss": 4.386415481567383,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.4547804594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.200797080993652,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.5152761340141296,
+ "learning_rate": 0.0006,
+ "loss": 4.392667770385742,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.6397215127944946,
+ "learning_rate": 0.0006,
+ "loss": 4.365647315979004,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.867751955986023,
+ "learning_rate": 0.0006,
+ "loss": 4.404231071472168,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 1.113226056098938,
+ "learning_rate": 0.0006,
+ "loss": 4.4237775802612305,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.9725164771080017,
+ "learning_rate": 0.0006,
+ "loss": 4.353878021240234,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.8986128568649292,
+ "learning_rate": 0.0006,
+ "loss": 4.404200553894043,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.644611656665802,
+ "learning_rate": 0.0006,
+ "loss": 4.314446449279785,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.5430455803871155,
+ "learning_rate": 0.0006,
+ "loss": 4.404072284698486,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.5315895080566406,
+ "learning_rate": 0.0006,
+ "loss": 4.339350700378418,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.4984396696090698,
+ "learning_rate": 0.0006,
+ "loss": 4.418368339538574,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.4928722679615021,
+ "learning_rate": 0.0006,
+ "loss": 4.351061820983887,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.4810708463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.32480525970459,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.4846661388874054,
+ "learning_rate": 0.0006,
+ "loss": 4.410396099090576,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.45098942518234253,
+ "learning_rate": 0.0006,
+ "loss": 4.434419631958008,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.4603881239891052,
+ "learning_rate": 0.0006,
+ "loss": 4.374553680419922,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.47921186685562134,
+ "learning_rate": 0.0006,
+ "loss": 4.43428373336792,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.458781361579895,
+ "learning_rate": 0.0006,
+ "loss": 4.345955848693848,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.43630266189575195,
+ "learning_rate": 0.0006,
+ "loss": 4.396679401397705,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.4061865210533142,
+ "learning_rate": 0.0006,
+ "loss": 4.3547186851501465,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.3998570740222931,
+ "learning_rate": 0.0006,
+ "loss": 4.42930793762207,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.43052756786346436,
+ "learning_rate": 0.0006,
+ "loss": 4.483987808227539,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.40878528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.4177021980285645,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.41628801822662354,
+ "learning_rate": 0.0006,
+ "loss": 4.383821487426758,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.39991578459739685,
+ "learning_rate": 0.0006,
+ "loss": 4.403266429901123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.3781890571117401,
+ "learning_rate": 0.0006,
+ "loss": 4.361995220184326,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.38037991523742676,
+ "learning_rate": 0.0006,
+ "loss": 4.520498275756836,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.3687450587749481,
+ "learning_rate": 0.0006,
+ "loss": 4.34592342376709,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.3800104558467865,
+ "learning_rate": 0.0006,
+ "loss": 4.395520210266113,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.38416075706481934,
+ "learning_rate": 0.0006,
+ "loss": 4.432024002075195,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.38714301586151123,
+ "learning_rate": 0.0006,
+ "loss": 4.371710300445557,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.3560386002063751,
+ "learning_rate": 0.0006,
+ "loss": 4.389065265655518,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.3583020269870758,
+ "learning_rate": 0.0006,
+ "loss": 4.294467926025391,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.3507572412490845,
+ "learning_rate": 0.0006,
+ "loss": 4.335668563842773,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.3481273353099823,
+ "learning_rate": 0.0006,
+ "loss": 4.355007171630859,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.3648652732372284,
+ "learning_rate": 0.0006,
+ "loss": 4.458398818969727,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.3315402865409851,
+ "learning_rate": 0.0006,
+ "loss": 4.415014266967773,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.34356269240379333,
+ "learning_rate": 0.0006,
+ "loss": 4.3891496658325195,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.3475818932056427,
+ "learning_rate": 0.0006,
+ "loss": 4.403259754180908,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.3756524622440338,
+ "learning_rate": 0.0006,
+ "loss": 4.396340370178223,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.38063693046569824,
+ "learning_rate": 0.0006,
+ "loss": 4.390671253204346,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.3574332594871521,
+ "learning_rate": 0.0006,
+ "loss": 4.342291831970215,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.35717374086380005,
+ "learning_rate": 0.0006,
+ "loss": 4.389538764953613,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.34184643626213074,
+ "learning_rate": 0.0006,
+ "loss": 4.407958030700684,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.3665345013141632,
+ "learning_rate": 0.0006,
+ "loss": 4.407729148864746,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.3752829432487488,
+ "learning_rate": 0.0006,
+ "loss": 4.406526565551758,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.3690424859523773,
+ "learning_rate": 0.0006,
+ "loss": 4.444920063018799,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.35570403933525085,
+ "learning_rate": 0.0006,
+ "loss": 4.41465950012207,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.3422539532184601,
+ "learning_rate": 0.0006,
+ "loss": 4.341947078704834,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.34019631147384644,
+ "learning_rate": 0.0006,
+ "loss": 4.383486747741699,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.35433074831962585,
+ "learning_rate": 0.0006,
+ "loss": 4.43992280960083,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.3690914809703827,
+ "learning_rate": 0.0006,
+ "loss": 4.396021842956543,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.35793814063072205,
+ "learning_rate": 0.0006,
+ "loss": 4.389019012451172,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.34700852632522583,
+ "learning_rate": 0.0006,
+ "loss": 4.476073265075684,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.3613256514072418,
+ "learning_rate": 0.0006,
+ "loss": 4.43828010559082,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.3444153070449829,
+ "learning_rate": 0.0006,
+ "loss": 4.470188140869141,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.3383917510509491,
+ "learning_rate": 0.0006,
+ "loss": 4.381032943725586,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.3648519217967987,
+ "learning_rate": 0.0006,
+ "loss": 4.399723052978516,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.34983959794044495,
+ "learning_rate": 0.0006,
+ "loss": 4.43270206451416,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.33937394618988037,
+ "learning_rate": 0.0006,
+ "loss": 4.4052228927612305,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.34935757517814636,
+ "learning_rate": 0.0006,
+ "loss": 4.38171911239624,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.3566495180130005,
+ "learning_rate": 0.0006,
+ "loss": 4.495579242706299,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.3702648878097534,
+ "learning_rate": 0.0006,
+ "loss": 4.452796936035156,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.3714422583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.404526710510254,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.42734357714653015,
+ "learning_rate": 0.0006,
+ "loss": 4.511031150817871,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 6.156860828399658,
+ "eval_runtime": 44.07,
+ "eval_samples_per_second": 55.412,
+ "eval_steps_per_second": 3.472,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.381186306476593,
+ "learning_rate": 0.0006,
+ "loss": 4.39985466003418,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.4057665169239044,
+ "learning_rate": 0.0006,
+ "loss": 4.338055610656738,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.4002494513988495,
+ "learning_rate": 0.0006,
+ "loss": 4.331958770751953,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.4294043183326721,
+ "learning_rate": 0.0006,
+ "loss": 4.339388370513916,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.45085105299949646,
+ "learning_rate": 0.0006,
+ "loss": 4.334287643432617,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.5061688423156738,
+ "learning_rate": 0.0006,
+ "loss": 4.2327470779418945,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.5022581219673157,
+ "learning_rate": 0.0006,
+ "loss": 4.291156768798828,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.5529219508171082,
+ "learning_rate": 0.0006,
+ "loss": 4.4021406173706055,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.5945294499397278,
+ "learning_rate": 0.0006,
+ "loss": 4.3400092124938965,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.5755016803741455,
+ "learning_rate": 0.0006,
+ "loss": 4.2676286697387695,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.5352432131767273,
+ "learning_rate": 0.0006,
+ "loss": 4.322068214416504,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.5563830137252808,
+ "learning_rate": 0.0006,
+ "loss": 4.401552200317383,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.5542744994163513,
+ "learning_rate": 0.0006,
+ "loss": 4.361536026000977,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.5109394788742065,
+ "learning_rate": 0.0006,
+ "loss": 4.333110809326172,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.48128604888916016,
+ "learning_rate": 0.0006,
+ "loss": 4.311734199523926,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.48069921135902405,
+ "learning_rate": 0.0006,
+ "loss": 4.400852203369141,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.45155879855155945,
+ "learning_rate": 0.0006,
+ "loss": 4.257515907287598,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.44431430101394653,
+ "learning_rate": 0.0006,
+ "loss": 4.397309303283691,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.43975624442100525,
+ "learning_rate": 0.0006,
+ "loss": 4.392481803894043,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.43021512031555176,
+ "learning_rate": 0.0006,
+ "loss": 4.323525428771973,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.4590098559856415,
+ "learning_rate": 0.0006,
+ "loss": 4.334511756896973,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.42400652170181274,
+ "learning_rate": 0.0006,
+ "loss": 4.33546257019043,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.41162917017936707,
+ "learning_rate": 0.0006,
+ "loss": 4.348457336425781,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.44991976022720337,
+ "learning_rate": 0.0006,
+ "loss": 4.3486785888671875,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.41424447298049927,
+ "learning_rate": 0.0006,
+ "loss": 4.396841049194336,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.4157496690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.386002540588379,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.43610864877700806,
+ "learning_rate": 0.0006,
+ "loss": 4.355074882507324,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.43452468514442444,
+ "learning_rate": 0.0006,
+ "loss": 4.327574729919434,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.42757663130760193,
+ "learning_rate": 0.0006,
+ "loss": 4.289640426635742,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.38811302185058594,
+ "learning_rate": 0.0006,
+ "loss": 4.297506809234619,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.3866890072822571,
+ "learning_rate": 0.0006,
+ "loss": 4.4301838874816895,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.43073758482933044,
+ "learning_rate": 0.0006,
+ "loss": 4.365545749664307,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.4058871865272522,
+ "learning_rate": 0.0006,
+ "loss": 4.294832229614258,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.41439321637153625,
+ "learning_rate": 0.0006,
+ "loss": 4.374986171722412,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.39280998706817627,
+ "learning_rate": 0.0006,
+ "loss": 4.472156524658203,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.380862832069397,
+ "learning_rate": 0.0006,
+ "loss": 4.3376359939575195,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.3880598843097687,
+ "learning_rate": 0.0006,
+ "loss": 4.399764537811279,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.4056805372238159,
+ "learning_rate": 0.0006,
+ "loss": 4.3839263916015625,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.43928271532058716,
+ "learning_rate": 0.0006,
+ "loss": 4.387872695922852,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.4157223701477051,
+ "learning_rate": 0.0006,
+ "loss": 4.491827011108398,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.38938942551612854,
+ "learning_rate": 0.0006,
+ "loss": 4.369803428649902,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.39400580525398254,
+ "learning_rate": 0.0006,
+ "loss": 4.4603800773620605,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.3747307062149048,
+ "learning_rate": 0.0006,
+ "loss": 4.366776466369629,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.4072708785533905,
+ "learning_rate": 0.0006,
+ "loss": 4.3782854080200195,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.4091123342514038,
+ "learning_rate": 0.0006,
+ "loss": 4.4356689453125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.40395987033843994,
+ "learning_rate": 0.0006,
+ "loss": 4.413468360900879,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.39857032895088196,
+ "learning_rate": 0.0006,
+ "loss": 4.450807571411133,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.4158494174480438,
+ "learning_rate": 0.0006,
+ "loss": 4.381142616271973,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.4082915484905243,
+ "learning_rate": 0.0006,
+ "loss": 4.496438980102539,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.37405046820640564,
+ "learning_rate": 0.0006,
+ "loss": 4.345484256744385,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.359416127204895,
+ "learning_rate": 0.0006,
+ "loss": 4.26982307434082,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.3519706726074219,
+ "learning_rate": 0.0006,
+ "loss": 4.397839546203613,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.3789094388484955,
+ "learning_rate": 0.0006,
+ "loss": 4.415822982788086,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.3676875829696655,
+ "learning_rate": 0.0006,
+ "loss": 4.396381855010986,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.3599476218223572,
+ "learning_rate": 0.0006,
+ "loss": 4.4171977043151855,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.3843400180339813,
+ "learning_rate": 0.0006,
+ "loss": 4.47220516204834,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.3702511191368103,
+ "learning_rate": 0.0006,
+ "loss": 4.500491619110107,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.3719273805618286,
+ "learning_rate": 0.0006,
+ "loss": 4.352668762207031,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.3619741201400757,
+ "learning_rate": 0.0006,
+ "loss": 4.3586931228637695,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.3766055703163147,
+ "learning_rate": 0.0006,
+ "loss": 4.408159255981445,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.3580402433872223,
+ "learning_rate": 0.0006,
+ "loss": 4.355810165405273,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.3602997958660126,
+ "learning_rate": 0.0006,
+ "loss": 4.357786178588867,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.35930490493774414,
+ "learning_rate": 0.0006,
+ "loss": 4.353297233581543,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.3693123161792755,
+ "learning_rate": 0.0006,
+ "loss": 4.391401290893555,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.36045047640800476,
+ "learning_rate": 0.0006,
+ "loss": 4.447843551635742,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.38618308305740356,
+ "learning_rate": 0.0006,
+ "loss": 4.465207099914551,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.38916000723838806,
+ "learning_rate": 0.0006,
+ "loss": 4.4063239097595215,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.3937848210334778,
+ "learning_rate": 0.0006,
+ "loss": 4.438618183135986,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.3975565731525421,
+ "learning_rate": 0.0006,
+ "loss": 4.376347541809082,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.383375883102417,
+ "learning_rate": 0.0006,
+ "loss": 4.376345634460449,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.38982275128364563,
+ "learning_rate": 0.0006,
+ "loss": 4.477313041687012,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.44567444920539856,
+ "learning_rate": 0.0006,
+ "loss": 4.4622087478637695,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 6.127683162689209,
+ "eval_runtime": 43.8712,
+ "eval_samples_per_second": 55.663,
+ "eval_steps_per_second": 3.487,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.38945627212524414,
+ "learning_rate": 0.0006,
+ "loss": 4.225332736968994,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.48500800132751465,
+ "learning_rate": 0.0006,
+ "loss": 4.303142547607422,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.4945746660232544,
+ "learning_rate": 0.0006,
+ "loss": 4.252800464630127,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.4860735237598419,
+ "learning_rate": 0.0006,
+ "loss": 4.3632307052612305,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.5717944502830505,
+ "learning_rate": 0.0006,
+ "loss": 4.2910966873168945,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.6825600862503052,
+ "learning_rate": 0.0006,
+ "loss": 4.446534633636475,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.7507191300392151,
+ "learning_rate": 0.0006,
+ "loss": 4.3218584060668945,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.8143581748008728,
+ "learning_rate": 0.0006,
+ "loss": 4.291619777679443,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.8164665699005127,
+ "learning_rate": 0.0006,
+ "loss": 4.314390182495117,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.8027179837226868,
+ "learning_rate": 0.0006,
+ "loss": 4.347686767578125,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.7046833038330078,
+ "learning_rate": 0.0006,
+ "loss": 4.382390975952148,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.6704773902893066,
+ "learning_rate": 0.0006,
+ "loss": 4.368736267089844,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.5986452698707581,
+ "learning_rate": 0.0006,
+ "loss": 4.3586106300354,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.5452585816383362,
+ "learning_rate": 0.0006,
+ "loss": 4.215537071228027,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.5050400495529175,
+ "learning_rate": 0.0006,
+ "loss": 4.345709800720215,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.4811224639415741,
+ "learning_rate": 0.0006,
+ "loss": 4.229983329772949,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.47257834672927856,
+ "learning_rate": 0.0006,
+ "loss": 4.401679039001465,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.46806448698043823,
+ "learning_rate": 0.0006,
+ "loss": 4.345294952392578,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.47019970417022705,
+ "learning_rate": 0.0006,
+ "loss": 4.3366899490356445,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.4618140459060669,
+ "learning_rate": 0.0006,
+ "loss": 4.423093795776367,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.45103076100349426,
+ "learning_rate": 0.0006,
+ "loss": 4.429213523864746,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.42674535512924194,
+ "learning_rate": 0.0006,
+ "loss": 4.355292320251465,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.4282950162887573,
+ "learning_rate": 0.0006,
+ "loss": 4.307826995849609,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.4120710790157318,
+ "learning_rate": 0.0006,
+ "loss": 4.322912216186523,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.4138009548187256,
+ "learning_rate": 0.0006,
+ "loss": 4.328085899353027,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.41546961665153503,
+ "learning_rate": 0.0006,
+ "loss": 4.4070940017700195,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.44050562381744385,
+ "learning_rate": 0.0006,
+ "loss": 4.419538497924805,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.41043856739997864,
+ "learning_rate": 0.0006,
+ "loss": 4.404756546020508,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.42796140909194946,
+ "learning_rate": 0.0006,
+ "loss": 4.3040008544921875,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.38510003685951233,
+ "learning_rate": 0.0006,
+ "loss": 4.353320598602295,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.3788503110408783,
+ "learning_rate": 0.0006,
+ "loss": 4.300704479217529,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.3905165493488312,
+ "learning_rate": 0.0006,
+ "loss": 4.343006610870361,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.3838869333267212,
+ "learning_rate": 0.0006,
+ "loss": 4.308780670166016,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.38746532797813416,
+ "learning_rate": 0.0006,
+ "loss": 4.335064888000488,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.37491124868392944,
+ "learning_rate": 0.0006,
+ "loss": 4.32066535949707,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.36987295746803284,
+ "learning_rate": 0.0006,
+ "loss": 4.317310333251953,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.38870200514793396,
+ "learning_rate": 0.0006,
+ "loss": 4.354729652404785,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.37225764989852905,
+ "learning_rate": 0.0006,
+ "loss": 4.29198694229126,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.3612116873264313,
+ "learning_rate": 0.0006,
+ "loss": 4.3979315757751465,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.40117356181144714,
+ "learning_rate": 0.0006,
+ "loss": 4.429460048675537,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.3933751881122589,
+ "learning_rate": 0.0006,
+ "loss": 4.348066329956055,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.38921254873275757,
+ "learning_rate": 0.0006,
+ "loss": 4.405765056610107,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.3987453579902649,
+ "learning_rate": 0.0006,
+ "loss": 4.350672721862793,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.43417951464653015,
+ "learning_rate": 0.0006,
+ "loss": 4.463413238525391,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.41297927498817444,
+ "learning_rate": 0.0006,
+ "loss": 4.309045791625977,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.38461950421333313,
+ "learning_rate": 0.0006,
+ "loss": 4.318929672241211,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.3841524124145508,
+ "learning_rate": 0.0006,
+ "loss": 4.379926681518555,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.39013510942459106,
+ "learning_rate": 0.0006,
+ "loss": 4.3409342765808105,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.3847009539604187,
+ "learning_rate": 0.0006,
+ "loss": 4.467362880706787,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.3979317247867584,
+ "learning_rate": 0.0006,
+ "loss": 4.333352088928223,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.4019637107849121,
+ "learning_rate": 0.0006,
+ "loss": 4.32415246963501,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.38000333309173584,
+ "learning_rate": 0.0006,
+ "loss": 4.318780899047852,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.3957592248916626,
+ "learning_rate": 0.0006,
+ "loss": 4.301888942718506,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.380258709192276,
+ "learning_rate": 0.0006,
+ "loss": 4.362771987915039,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.37715500593185425,
+ "learning_rate": 0.0006,
+ "loss": 4.455068588256836,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.37162303924560547,
+ "learning_rate": 0.0006,
+ "loss": 4.453987121582031,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.36303192377090454,
+ "learning_rate": 0.0006,
+ "loss": 4.400303363800049,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.34762880206108093,
+ "learning_rate": 0.0006,
+ "loss": 4.3961381912231445,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.34881117939949036,
+ "learning_rate": 0.0006,
+ "loss": 4.419530868530273,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.36440593004226685,
+ "learning_rate": 0.0006,
+ "loss": 4.4832868576049805,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.3671160638332367,
+ "learning_rate": 0.0006,
+ "loss": 4.389676094055176,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.3860883116722107,
+ "learning_rate": 0.0006,
+ "loss": 4.383245468139648,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.38325265049934387,
+ "learning_rate": 0.0006,
+ "loss": 4.3348388671875,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.3778875470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.362031936645508,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.3768773674964905,
+ "learning_rate": 0.0006,
+ "loss": 4.33457088470459,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.39139771461486816,
+ "learning_rate": 0.0006,
+ "loss": 4.455694198608398,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.38553205132484436,
+ "learning_rate": 0.0006,
+ "loss": 4.347469329833984,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.3916657567024231,
+ "learning_rate": 0.0006,
+ "loss": 4.394040107727051,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.3568893373012543,
+ "learning_rate": 0.0006,
+ "loss": 4.3976874351501465,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.3758280277252197,
+ "learning_rate": 0.0006,
+ "loss": 4.401939392089844,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.3833237588405609,
+ "learning_rate": 0.0006,
+ "loss": 4.339327812194824,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.4451141357421875,
+ "learning_rate": 0.0006,
+ "loss": 4.452360153198242,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 6.193995952606201,
+ "eval_runtime": 43.9228,
+ "eval_samples_per_second": 55.598,
+ "eval_steps_per_second": 3.483,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.4081752598285675,
+ "learning_rate": 0.0006,
+ "loss": 4.2674560546875,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.46005865931510925,
+ "learning_rate": 0.0006,
+ "loss": 4.2233099937438965,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.4297347962856293,
+ "learning_rate": 0.0006,
+ "loss": 4.269168376922607,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.427181601524353,
+ "learning_rate": 0.0006,
+ "loss": 4.304473876953125,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.4240623712539673,
+ "learning_rate": 0.0006,
+ "loss": 4.358336448669434,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.461392879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.351563930511475,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.4573875665664673,
+ "learning_rate": 0.0006,
+ "loss": 4.233829021453857,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.5236565470695496,
+ "learning_rate": 0.0006,
+ "loss": 4.313651084899902,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.6449952125549316,
+ "learning_rate": 0.0006,
+ "loss": 4.2785491943359375,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.76405930519104,
+ "learning_rate": 0.0006,
+ "loss": 4.333526611328125,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.8181349635124207,
+ "learning_rate": 0.0006,
+ "loss": 4.3336896896362305,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.7717618942260742,
+ "learning_rate": 0.0006,
+ "loss": 4.314065933227539,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.6831390857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.378012657165527,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.5755302906036377,
+ "learning_rate": 0.0006,
+ "loss": 4.331476211547852,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.5297263860702515,
+ "learning_rate": 0.0006,
+ "loss": 4.337549209594727,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.5538325309753418,
+ "learning_rate": 0.0006,
+ "loss": 4.395265102386475,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.4868195652961731,
+ "learning_rate": 0.0006,
+ "loss": 4.313584327697754,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.4794177711009979,
+ "learning_rate": 0.0006,
+ "loss": 4.413606643676758,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.4221785366535187,
+ "learning_rate": 0.0006,
+ "loss": 4.255707740783691,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.4288736879825592,
+ "learning_rate": 0.0006,
+ "loss": 4.257824897766113,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.42079946398735046,
+ "learning_rate": 0.0006,
+ "loss": 4.2655253410339355,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.4367576539516449,
+ "learning_rate": 0.0006,
+ "loss": 4.390307426452637,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.4121208190917969,
+ "learning_rate": 0.0006,
+ "loss": 4.3600006103515625,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.3934427797794342,
+ "learning_rate": 0.0006,
+ "loss": 4.276140213012695,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.3987336754798889,
+ "learning_rate": 0.0006,
+ "loss": 4.330526351928711,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.40691474080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.260777473449707,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.3869854807853699,
+ "learning_rate": 0.0006,
+ "loss": 4.3207855224609375,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.3992115259170532,
+ "learning_rate": 0.0006,
+ "loss": 4.3675432205200195,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.39756008982658386,
+ "learning_rate": 0.0006,
+ "loss": 4.359041213989258,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.37387391924858093,
+ "learning_rate": 0.0006,
+ "loss": 4.314123630523682,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.3787343502044678,
+ "learning_rate": 0.0006,
+ "loss": 4.376033782958984,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.388907253742218,
+ "learning_rate": 0.0006,
+ "loss": 4.2664690017700195,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.39261215925216675,
+ "learning_rate": 0.0006,
+ "loss": 4.335193634033203,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.385919988155365,
+ "learning_rate": 0.0006,
+ "loss": 4.329131126403809,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.39091575145721436,
+ "learning_rate": 0.0006,
+ "loss": 4.416098117828369,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.3747062683105469,
+ "learning_rate": 0.0006,
+ "loss": 4.284010887145996,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.37862640619277954,
+ "learning_rate": 0.0006,
+ "loss": 4.398101806640625,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.3797444701194763,
+ "learning_rate": 0.0006,
+ "loss": 4.433382034301758,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.3917072117328644,
+ "learning_rate": 0.0006,
+ "loss": 4.265375137329102,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.40743324160575867,
+ "learning_rate": 0.0006,
+ "loss": 4.351291656494141,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.4176776707172394,
+ "learning_rate": 0.0006,
+ "loss": 4.4158782958984375,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.4368206560611725,
+ "learning_rate": 0.0006,
+ "loss": 4.422186851501465,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.45450183749198914,
+ "learning_rate": 0.0006,
+ "loss": 4.363736629486084,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.4195234775543213,
+ "learning_rate": 0.0006,
+ "loss": 4.459656715393066,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.3838373124599457,
+ "learning_rate": 0.0006,
+ "loss": 4.338109016418457,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.37965819239616394,
+ "learning_rate": 0.0006,
+ "loss": 4.350182056427002,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.3787379264831543,
+ "learning_rate": 0.0006,
+ "loss": 4.394096851348877,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.3984084129333496,
+ "learning_rate": 0.0006,
+ "loss": 4.381903171539307,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.3826642334461212,
+ "learning_rate": 0.0006,
+ "loss": 4.269111156463623,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.3738428056240082,
+ "learning_rate": 0.0006,
+ "loss": 4.29117488861084,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.3769048750400543,
+ "learning_rate": 0.0006,
+ "loss": 4.395892143249512,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.36490270495414734,
+ "learning_rate": 0.0006,
+ "loss": 4.356070518493652,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.38128694891929626,
+ "learning_rate": 0.0006,
+ "loss": 4.366775989532471,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.3863452672958374,
+ "learning_rate": 0.0006,
+ "loss": 4.403047561645508,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.3697649836540222,
+ "learning_rate": 0.0006,
+ "loss": 4.333529472351074,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.3666415810585022,
+ "learning_rate": 0.0006,
+ "loss": 4.421572685241699,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.3746238946914673,
+ "learning_rate": 0.0006,
+ "loss": 4.291342735290527,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.3864925503730774,
+ "learning_rate": 0.0006,
+ "loss": 4.319379806518555,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.40842366218566895,
+ "learning_rate": 0.0006,
+ "loss": 4.34860897064209,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.39575234055519104,
+ "learning_rate": 0.0006,
+ "loss": 4.389467239379883,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.3882506787776947,
+ "learning_rate": 0.0006,
+ "loss": 4.373462677001953,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.38202980160713196,
+ "learning_rate": 0.0006,
+ "loss": 4.370086669921875,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.37805864214897156,
+ "learning_rate": 0.0006,
+ "loss": 4.46006965637207,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.3739442527294159,
+ "learning_rate": 0.0006,
+ "loss": 4.36165714263916,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.3707204759120941,
+ "learning_rate": 0.0006,
+ "loss": 4.418872356414795,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.37603604793548584,
+ "learning_rate": 0.0006,
+ "loss": 4.45180606842041,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.3731978237628937,
+ "learning_rate": 0.0006,
+ "loss": 4.412590026855469,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.3871077001094818,
+ "learning_rate": 0.0006,
+ "loss": 4.4665679931640625,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.3805893659591675,
+ "learning_rate": 0.0006,
+ "loss": 4.376047134399414,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.3941190540790558,
+ "learning_rate": 0.0006,
+ "loss": 4.414681434631348,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.39961132407188416,
+ "learning_rate": 0.0006,
+ "loss": 4.40030574798584,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.45096156001091003,
+ "learning_rate": 0.0006,
+ "loss": 4.3740458488464355,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 6.164906978607178,
+ "eval_runtime": 43.7516,
+ "eval_samples_per_second": 55.815,
+ "eval_steps_per_second": 3.497,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.4227452278137207,
+ "learning_rate": 0.0006,
+ "loss": 4.3197340965271,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.4646683931350708,
+ "learning_rate": 0.0006,
+ "loss": 4.254220008850098,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.5112658739089966,
+ "learning_rate": 0.0006,
+ "loss": 4.245427131652832,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.5452179312705994,
+ "learning_rate": 0.0006,
+ "loss": 4.303033828735352,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.6151604652404785,
+ "learning_rate": 0.0006,
+ "loss": 4.3013811111450195,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.7466694712638855,
+ "learning_rate": 0.0006,
+ "loss": 4.303430080413818,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.9221336841583252,
+ "learning_rate": 0.0006,
+ "loss": 4.330693244934082,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.9571523666381836,
+ "learning_rate": 0.0006,
+ "loss": 4.283618927001953,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.8955944776535034,
+ "learning_rate": 0.0006,
+ "loss": 4.331462860107422,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.9967221021652222,
+ "learning_rate": 0.0006,
+ "loss": 4.267236709594727,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.896125853061676,
+ "learning_rate": 0.0006,
+ "loss": 4.382920265197754,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.8246790170669556,
+ "learning_rate": 0.0006,
+ "loss": 4.325201034545898,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.6651087403297424,
+ "learning_rate": 0.0006,
+ "loss": 4.389814376831055,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.5789903998374939,
+ "learning_rate": 0.0006,
+ "loss": 4.256431579589844,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.540268063545227,
+ "learning_rate": 0.0006,
+ "loss": 4.314873218536377,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.5234258770942688,
+ "learning_rate": 0.0006,
+ "loss": 4.322999954223633,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.5203981399536133,
+ "learning_rate": 0.0006,
+ "loss": 4.449131965637207,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.47833096981048584,
+ "learning_rate": 0.0006,
+ "loss": 4.370548725128174,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.45063355565071106,
+ "learning_rate": 0.0006,
+ "loss": 4.423710823059082,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.4473242163658142,
+ "learning_rate": 0.0006,
+ "loss": 4.322866439819336,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.45025673508644104,
+ "learning_rate": 0.0006,
+ "loss": 4.242474555969238,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.4419912099838257,
+ "learning_rate": 0.0006,
+ "loss": 4.3837714195251465,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.4443511664867401,
+ "learning_rate": 0.0006,
+ "loss": 4.393730163574219,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.42215496301651,
+ "learning_rate": 0.0006,
+ "loss": 4.360969066619873,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.4408218562602997,
+ "learning_rate": 0.0006,
+ "loss": 4.399507522583008,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.42309728264808655,
+ "learning_rate": 0.0006,
+ "loss": 4.34589147567749,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.3893560767173767,
+ "learning_rate": 0.0006,
+ "loss": 4.278870582580566,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.42726844549179077,
+ "learning_rate": 0.0006,
+ "loss": 4.428325653076172,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.39529383182525635,
+ "learning_rate": 0.0006,
+ "loss": 4.3687872886657715,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.39174285531044006,
+ "learning_rate": 0.0006,
+ "loss": 4.367023468017578,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.39338526129722595,
+ "learning_rate": 0.0006,
+ "loss": 4.372482776641846,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.396528959274292,
+ "learning_rate": 0.0006,
+ "loss": 4.325854778289795,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.4031950533390045,
+ "learning_rate": 0.0006,
+ "loss": 4.387483596801758,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.3867308795452118,
+ "learning_rate": 0.0006,
+ "loss": 4.337440490722656,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.3758327066898346,
+ "learning_rate": 0.0006,
+ "loss": 4.332152366638184,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.3789239823818207,
+ "learning_rate": 0.0006,
+ "loss": 4.234537124633789,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.36792582273483276,
+ "learning_rate": 0.0006,
+ "loss": 4.3876800537109375,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.3689296245574951,
+ "learning_rate": 0.0006,
+ "loss": 4.311098098754883,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.3556303083896637,
+ "learning_rate": 0.0006,
+ "loss": 4.348201274871826,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.38501277565956116,
+ "learning_rate": 0.0006,
+ "loss": 4.391176700592041,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.3857221305370331,
+ "learning_rate": 0.0006,
+ "loss": 4.377525329589844,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.37236976623535156,
+ "learning_rate": 0.0006,
+ "loss": 4.25323486328125,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.37982237339019775,
+ "learning_rate": 0.0006,
+ "loss": 4.326591491699219,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.3887641131877899,
+ "learning_rate": 0.0006,
+ "loss": 4.32540225982666,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.3766990900039673,
+ "learning_rate": 0.0006,
+ "loss": 4.320146560668945,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.3827766478061676,
+ "learning_rate": 0.0006,
+ "loss": 4.344974517822266,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.3892960846424103,
+ "learning_rate": 0.0006,
+ "loss": 4.37299108505249,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.39927658438682556,
+ "learning_rate": 0.0006,
+ "loss": 4.346755504608154,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.3751842975616455,
+ "learning_rate": 0.0006,
+ "loss": 4.390047073364258,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.3758105933666229,
+ "learning_rate": 0.0006,
+ "loss": 4.392386436462402,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.3755977153778076,
+ "learning_rate": 0.0006,
+ "loss": 4.389333724975586,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.38697585463523865,
+ "learning_rate": 0.0006,
+ "loss": 4.363922119140625,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.37856224179267883,
+ "learning_rate": 0.0006,
+ "loss": 4.415143966674805,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.3853805959224701,
+ "learning_rate": 0.0006,
+ "loss": 4.332059860229492,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.3552320599555969,
+ "learning_rate": 0.0006,
+ "loss": 4.360487937927246,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.3593924641609192,
+ "learning_rate": 0.0006,
+ "loss": 4.386531829833984,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.37393584847450256,
+ "learning_rate": 0.0006,
+ "loss": 4.377449989318848,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.37289509177207947,
+ "learning_rate": 0.0006,
+ "loss": 4.381917953491211,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.3700922131538391,
+ "learning_rate": 0.0006,
+ "loss": 4.472764015197754,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.3773220181465149,
+ "learning_rate": 0.0006,
+ "loss": 4.438575744628906,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.3959292769432068,
+ "learning_rate": 0.0006,
+ "loss": 4.41773796081543,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.37098821997642517,
+ "learning_rate": 0.0006,
+ "loss": 4.3457441329956055,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.3589438199996948,
+ "learning_rate": 0.0006,
+ "loss": 4.390456676483154,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.3993541896343231,
+ "learning_rate": 0.0006,
+ "loss": 4.412688255310059,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.39771372079849243,
+ "learning_rate": 0.0006,
+ "loss": 4.37404203414917,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.37521013617515564,
+ "learning_rate": 0.0006,
+ "loss": 4.379281044006348,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.3812563717365265,
+ "learning_rate": 0.0006,
+ "loss": 4.475038528442383,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.3759402632713318,
+ "learning_rate": 0.0006,
+ "loss": 4.298859596252441,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.38831669092178345,
+ "learning_rate": 0.0006,
+ "loss": 4.335268020629883,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.3674168884754181,
+ "learning_rate": 0.0006,
+ "loss": 4.288745880126953,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.37575823068618774,
+ "learning_rate": 0.0006,
+ "loss": 4.340919494628906,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.44213995337486267,
+ "learning_rate": 0.0006,
+ "loss": 4.428310394287109,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 6.250092029571533,
+ "eval_runtime": 43.9606,
+ "eval_samples_per_second": 55.55,
+ "eval_steps_per_second": 3.48,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.40146708488464355,
+ "learning_rate": 0.0006,
+ "loss": 4.233017921447754,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.4238559305667877,
+ "learning_rate": 0.0006,
+ "loss": 4.256832122802734,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.4282098412513733,
+ "learning_rate": 0.0006,
+ "loss": 4.243378639221191,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.4408058524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.367465019226074,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.445965439081192,
+ "learning_rate": 0.0006,
+ "loss": 4.347798824310303,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.47689515352249146,
+ "learning_rate": 0.0006,
+ "loss": 4.242677211761475,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.5041401386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.354928016662598,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.5793538689613342,
+ "learning_rate": 0.0006,
+ "loss": 4.301093578338623,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.5709708333015442,
+ "learning_rate": 0.0006,
+ "loss": 4.217863082885742,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.5181067585945129,
+ "learning_rate": 0.0006,
+ "loss": 4.246687889099121,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.5148541927337646,
+ "learning_rate": 0.0006,
+ "loss": 4.285772800445557,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.5215007662773132,
+ "learning_rate": 0.0006,
+ "loss": 4.2491350173950195,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.5118919610977173,
+ "learning_rate": 0.0006,
+ "loss": 4.354918479919434,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.5332921147346497,
+ "learning_rate": 0.0006,
+ "loss": 4.294621467590332,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.5734043717384338,
+ "learning_rate": 0.0006,
+ "loss": 4.283238887786865,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.5209192037582397,
+ "learning_rate": 0.0006,
+ "loss": 4.251487731933594,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.4510970711708069,
+ "learning_rate": 0.0006,
+ "loss": 4.294740676879883,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.42409008741378784,
+ "learning_rate": 0.0006,
+ "loss": 4.267972946166992,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.45052847266197205,
+ "learning_rate": 0.0006,
+ "loss": 4.451445579528809,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.420418918132782,
+ "learning_rate": 0.0006,
+ "loss": 4.227499008178711,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.4419310390949249,
+ "learning_rate": 0.0006,
+ "loss": 4.294921875,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.41020578145980835,
+ "learning_rate": 0.0006,
+ "loss": 4.235942840576172,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.4084969162940979,
+ "learning_rate": 0.0006,
+ "loss": 4.285951614379883,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.39946338534355164,
+ "learning_rate": 0.0006,
+ "loss": 4.388570785522461,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.39431124925613403,
+ "learning_rate": 0.0006,
+ "loss": 4.329334259033203,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.41183048486709595,
+ "learning_rate": 0.0006,
+ "loss": 4.369775295257568,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.4041382968425751,
+ "learning_rate": 0.0006,
+ "loss": 4.272721290588379,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.42982324957847595,
+ "learning_rate": 0.0006,
+ "loss": 4.310064315795898,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.42579901218414307,
+ "learning_rate": 0.0006,
+ "loss": 4.284671783447266,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.41768139600753784,
+ "learning_rate": 0.0006,
+ "loss": 4.343086242675781,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.3960258960723877,
+ "learning_rate": 0.0006,
+ "loss": 4.2318806648254395,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.3981281518936157,
+ "learning_rate": 0.0006,
+ "loss": 4.2755937576293945,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.39555633068084717,
+ "learning_rate": 0.0006,
+ "loss": 4.383005142211914,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.4002246856689453,
+ "learning_rate": 0.0006,
+ "loss": 4.332754135131836,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.4106678068637848,
+ "learning_rate": 0.0006,
+ "loss": 4.391409873962402,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.3856841027736664,
+ "learning_rate": 0.0006,
+ "loss": 4.316332817077637,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.3910135328769684,
+ "learning_rate": 0.0006,
+ "loss": 4.327088356018066,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.38631075620651245,
+ "learning_rate": 0.0006,
+ "loss": 4.308974266052246,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.36760637164115906,
+ "learning_rate": 0.0006,
+ "loss": 4.396300315856934,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.39333999156951904,
+ "learning_rate": 0.0006,
+ "loss": 4.33335018157959,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.37966030836105347,
+ "learning_rate": 0.0006,
+ "loss": 4.298529148101807,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.3774148225784302,
+ "learning_rate": 0.0006,
+ "loss": 4.218472480773926,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.38100066781044006,
+ "learning_rate": 0.0006,
+ "loss": 4.337407112121582,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.3924340605735779,
+ "learning_rate": 0.0006,
+ "loss": 4.38271427154541,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.37583890557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.331287384033203,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.3993631601333618,
+ "learning_rate": 0.0006,
+ "loss": 4.297436237335205,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.41312935948371887,
+ "learning_rate": 0.0006,
+ "loss": 4.305514335632324,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.4133725166320801,
+ "learning_rate": 0.0006,
+ "loss": 4.339967727661133,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.3860441744327545,
+ "learning_rate": 0.0006,
+ "loss": 4.31814432144165,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.3891344964504242,
+ "learning_rate": 0.0006,
+ "loss": 4.346461772918701,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.3863038122653961,
+ "learning_rate": 0.0006,
+ "loss": 4.413818359375,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.37267377972602844,
+ "learning_rate": 0.0006,
+ "loss": 4.333828449249268,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.37040555477142334,
+ "learning_rate": 0.0006,
+ "loss": 4.456110000610352,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.3837447464466095,
+ "learning_rate": 0.0006,
+ "loss": 4.242850303649902,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.39074262976646423,
+ "learning_rate": 0.0006,
+ "loss": 4.3549485206604,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.38219889998435974,
+ "learning_rate": 0.0006,
+ "loss": 4.296403884887695,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.38378462195396423,
+ "learning_rate": 0.0006,
+ "loss": 4.369739532470703,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.37791451811790466,
+ "learning_rate": 0.0006,
+ "loss": 4.372786998748779,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.3720730245113373,
+ "learning_rate": 0.0006,
+ "loss": 4.292923450469971,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.3587147295475006,
+ "learning_rate": 0.0006,
+ "loss": 4.336228847503662,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.3617904782295227,
+ "learning_rate": 0.0006,
+ "loss": 4.380134582519531,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.3623189628124237,
+ "learning_rate": 0.0006,
+ "loss": 4.340606689453125,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.37112200260162354,
+ "learning_rate": 0.0006,
+ "loss": 4.310943603515625,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.3742401897907257,
+ "learning_rate": 0.0006,
+ "loss": 4.3478593826293945,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.374665230512619,
+ "learning_rate": 0.0006,
+ "loss": 4.4058637619018555,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.38624459505081177,
+ "learning_rate": 0.0006,
+ "loss": 4.348050594329834,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.40541738271713257,
+ "learning_rate": 0.0006,
+ "loss": 4.471852779388428,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.3857991695404053,
+ "learning_rate": 0.0006,
+ "loss": 4.312546253204346,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.41659343242645264,
+ "learning_rate": 0.0006,
+ "loss": 4.315553188323975,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.43697381019592285,
+ "learning_rate": 0.0006,
+ "loss": 4.333539962768555,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.45475196838378906,
+ "learning_rate": 0.0006,
+ "loss": 4.362082481384277,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.4871002733707428,
+ "learning_rate": 0.0006,
+ "loss": 4.328166484832764,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 6.260599136352539,
+ "eval_runtime": 43.7447,
+ "eval_samples_per_second": 55.824,
+ "eval_steps_per_second": 3.498,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.42134732007980347,
+ "learning_rate": 0.0006,
+ "loss": 4.200570106506348,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.44146645069122314,
+ "learning_rate": 0.0006,
+ "loss": 4.219682693481445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.4451248049736023,
+ "learning_rate": 0.0006,
+ "loss": 4.240499496459961,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.45094963908195496,
+ "learning_rate": 0.0006,
+ "loss": 4.252233505249023,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.4750693738460541,
+ "learning_rate": 0.0006,
+ "loss": 4.229597091674805,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.5211004614830017,
+ "learning_rate": 0.0006,
+ "loss": 4.3165435791015625,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.5570583343505859,
+ "learning_rate": 0.0006,
+ "loss": 4.280586242675781,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.543846845626831,
+ "learning_rate": 0.0006,
+ "loss": 4.243165493011475,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.4849488437175751,
+ "learning_rate": 0.0006,
+ "loss": 4.190418243408203,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.485515296459198,
+ "learning_rate": 0.0006,
+ "loss": 4.30844783782959,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.5233704447746277,
+ "learning_rate": 0.0006,
+ "loss": 4.229648590087891,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.5426996946334839,
+ "learning_rate": 0.0006,
+ "loss": 4.31719970703125,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.5974491238594055,
+ "learning_rate": 0.0006,
+ "loss": 4.250443458557129,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.6469011902809143,
+ "learning_rate": 0.0006,
+ "loss": 4.354139804840088,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.7294577360153198,
+ "learning_rate": 0.0006,
+ "loss": 4.3642706871032715,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.6488705277442932,
+ "learning_rate": 0.0006,
+ "loss": 4.275979995727539,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.4984777271747589,
+ "learning_rate": 0.0006,
+ "loss": 4.217861175537109,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.5109938979148865,
+ "learning_rate": 0.0006,
+ "loss": 4.286642074584961,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.49844229221343994,
+ "learning_rate": 0.0006,
+ "loss": 4.238213539123535,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.488077312707901,
+ "learning_rate": 0.0006,
+ "loss": 4.231420040130615,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.4928477704524994,
+ "learning_rate": 0.0006,
+ "loss": 4.380367279052734,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.49250566959381104,
+ "learning_rate": 0.0006,
+ "loss": 4.29306697845459,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.48340678215026855,
+ "learning_rate": 0.0006,
+ "loss": 4.2856645584106445,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.4970073401927948,
+ "learning_rate": 0.0006,
+ "loss": 4.34441614151001,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.4387594759464264,
+ "learning_rate": 0.0006,
+ "loss": 4.350798606872559,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.4448535144329071,
+ "learning_rate": 0.0006,
+ "loss": 4.350264072418213,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.4491334855556488,
+ "learning_rate": 0.0006,
+ "loss": 4.310317039489746,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.4396249055862427,
+ "learning_rate": 0.0006,
+ "loss": 4.3137288093566895,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.42331191897392273,
+ "learning_rate": 0.0006,
+ "loss": 4.283992767333984,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.42483261227607727,
+ "learning_rate": 0.0006,
+ "loss": 4.269024848937988,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.40380987524986267,
+ "learning_rate": 0.0006,
+ "loss": 4.321262836456299,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.4109397530555725,
+ "learning_rate": 0.0006,
+ "loss": 4.285927772521973,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.43696823716163635,
+ "learning_rate": 0.0006,
+ "loss": 4.303576946258545,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.379971444606781,
+ "learning_rate": 0.0006,
+ "loss": 4.388635158538818,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.4044286608695984,
+ "learning_rate": 0.0006,
+ "loss": 4.329499244689941,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.4053935706615448,
+ "learning_rate": 0.0006,
+ "loss": 4.297847747802734,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.38198018074035645,
+ "learning_rate": 0.0006,
+ "loss": 4.288124084472656,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.39832696318626404,
+ "learning_rate": 0.0006,
+ "loss": 4.380218982696533,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.40758490562438965,
+ "learning_rate": 0.0006,
+ "loss": 4.32636833190918,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.3803170621395111,
+ "learning_rate": 0.0006,
+ "loss": 4.30747127532959,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.3853742480278015,
+ "learning_rate": 0.0006,
+ "loss": 4.324460029602051,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.4050910174846649,
+ "learning_rate": 0.0006,
+ "loss": 4.306979179382324,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.4187234342098236,
+ "learning_rate": 0.0006,
+ "loss": 4.334494113922119,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.4233380854129791,
+ "learning_rate": 0.0006,
+ "loss": 4.338802814483643,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.4379981458187103,
+ "learning_rate": 0.0006,
+ "loss": 4.399646759033203,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.4394802749156952,
+ "learning_rate": 0.0006,
+ "loss": 4.33521842956543,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.415715754032135,
+ "learning_rate": 0.0006,
+ "loss": 4.3247880935668945,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.3918288052082062,
+ "learning_rate": 0.0006,
+ "loss": 4.329852104187012,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.40957361459732056,
+ "learning_rate": 0.0006,
+ "loss": 4.266562461853027,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.4475722312927246,
+ "learning_rate": 0.0006,
+ "loss": 4.513836860656738,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.44053083658218384,
+ "learning_rate": 0.0006,
+ "loss": 4.305239677429199,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.4229199290275574,
+ "learning_rate": 0.0006,
+ "loss": 4.347291946411133,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.4058760106563568,
+ "learning_rate": 0.0006,
+ "loss": 4.377959251403809,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.4245327115058899,
+ "learning_rate": 0.0006,
+ "loss": 4.363465309143066,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.4446028470993042,
+ "learning_rate": 0.0006,
+ "loss": 4.4517316818237305,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.40111324191093445,
+ "learning_rate": 0.0006,
+ "loss": 4.294158935546875,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.39330703020095825,
+ "learning_rate": 0.0006,
+ "loss": 4.329209327697754,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.4327717423439026,
+ "learning_rate": 0.0006,
+ "loss": 4.349915027618408,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.411691814661026,
+ "learning_rate": 0.0006,
+ "loss": 4.441436290740967,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.39029157161712646,
+ "learning_rate": 0.0006,
+ "loss": 4.339478492736816,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.4064500331878662,
+ "learning_rate": 0.0006,
+ "loss": 4.3008952140808105,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.40196365118026733,
+ "learning_rate": 0.0006,
+ "loss": 4.278536319732666,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.3925584554672241,
+ "learning_rate": 0.0006,
+ "loss": 4.351866722106934,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.37795954942703247,
+ "learning_rate": 0.0006,
+ "loss": 4.40715217590332,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.3920917510986328,
+ "learning_rate": 0.0006,
+ "loss": 4.303398132324219,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.3982515335083008,
+ "learning_rate": 0.0006,
+ "loss": 4.397731304168701,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.41097545623779297,
+ "learning_rate": 0.0006,
+ "loss": 4.372936248779297,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.38546738028526306,
+ "learning_rate": 0.0006,
+ "loss": 4.36802339553833,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.3931894302368164,
+ "learning_rate": 0.0006,
+ "loss": 4.397665023803711,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.37862512469291687,
+ "learning_rate": 0.0006,
+ "loss": 4.356085777282715,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.41227665543556213,
+ "learning_rate": 0.0006,
+ "loss": 4.4159650802612305,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.499416321516037,
+ "learning_rate": 0.0006,
+ "loss": 4.329807281494141,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 6.198739051818848,
+ "eval_runtime": 43.6864,
+ "eval_samples_per_second": 55.898,
+ "eval_steps_per_second": 3.502,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.4628259837627411,
+ "learning_rate": 0.0006,
+ "loss": 4.170797824859619,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.4806155860424042,
+ "learning_rate": 0.0006,
+ "loss": 4.2210259437561035,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.4822350740432739,
+ "learning_rate": 0.0006,
+ "loss": 4.23138952255249,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.286277770996094,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.5044941306114197,
+ "learning_rate": 0.0006,
+ "loss": 4.232921600341797,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.5530663132667542,
+ "learning_rate": 0.0006,
+ "loss": 4.221680641174316,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.5776026844978333,
+ "learning_rate": 0.0006,
+ "loss": 4.213212966918945,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.6634025573730469,
+ "learning_rate": 0.0006,
+ "loss": 4.319071292877197,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.76152503490448,
+ "learning_rate": 0.0006,
+ "loss": 4.214156150817871,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.8480479717254639,
+ "learning_rate": 0.0006,
+ "loss": 4.321653842926025,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.9160254001617432,
+ "learning_rate": 0.0006,
+ "loss": 4.33962869644165,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.8524528741836548,
+ "learning_rate": 0.0006,
+ "loss": 4.268365859985352,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.7075300216674805,
+ "learning_rate": 0.0006,
+ "loss": 4.306760311126709,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.6349018216133118,
+ "learning_rate": 0.0006,
+ "loss": 4.333056926727295,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.5707677006721497,
+ "learning_rate": 0.0006,
+ "loss": 4.32132625579834,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.5484790205955505,
+ "learning_rate": 0.0006,
+ "loss": 4.3016767501831055,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.5517436861991882,
+ "learning_rate": 0.0006,
+ "loss": 4.295352935791016,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.5682413578033447,
+ "learning_rate": 0.0006,
+ "loss": 4.302443504333496,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.5568698644638062,
+ "learning_rate": 0.0006,
+ "loss": 4.328906059265137,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.5146242380142212,
+ "learning_rate": 0.0006,
+ "loss": 4.314318656921387,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.4866996705532074,
+ "learning_rate": 0.0006,
+ "loss": 4.321515083312988,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.47854411602020264,
+ "learning_rate": 0.0006,
+ "loss": 4.336956977844238,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.48322951793670654,
+ "learning_rate": 0.0006,
+ "loss": 4.270317554473877,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.4432683289051056,
+ "learning_rate": 0.0006,
+ "loss": 4.3168792724609375,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.42538025975227356,
+ "learning_rate": 0.0006,
+ "loss": 4.236387729644775,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.4699258804321289,
+ "learning_rate": 0.0006,
+ "loss": 4.372434616088867,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.4574076235294342,
+ "learning_rate": 0.0006,
+ "loss": 4.347474098205566,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.42455345392227173,
+ "learning_rate": 0.0006,
+ "loss": 4.345785140991211,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.4194679260253906,
+ "learning_rate": 0.0006,
+ "loss": 4.326481819152832,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.4357808828353882,
+ "learning_rate": 0.0006,
+ "loss": 4.3457183837890625,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.4160650670528412,
+ "learning_rate": 0.0006,
+ "loss": 4.24708890914917,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.4105308949947357,
+ "learning_rate": 0.0006,
+ "loss": 4.3586530685424805,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.399740993976593,
+ "learning_rate": 0.0006,
+ "loss": 4.352291584014893,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.39557352662086487,
+ "learning_rate": 0.0006,
+ "loss": 4.284960746765137,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.4299493134021759,
+ "learning_rate": 0.0006,
+ "loss": 4.285758018493652,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.4042324721813202,
+ "learning_rate": 0.0006,
+ "loss": 4.357293605804443,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.396954745054245,
+ "learning_rate": 0.0006,
+ "loss": 4.2686262130737305,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.3821943998336792,
+ "learning_rate": 0.0006,
+ "loss": 4.357154846191406,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.3846510648727417,
+ "learning_rate": 0.0006,
+ "loss": 4.323714256286621,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.37851205468177795,
+ "learning_rate": 0.0006,
+ "loss": 4.341939926147461,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.37929001450538635,
+ "learning_rate": 0.0006,
+ "loss": 4.248264312744141,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.3882073163986206,
+ "learning_rate": 0.0006,
+ "loss": 4.307059288024902,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.38127774000167847,
+ "learning_rate": 0.0006,
+ "loss": 4.363462448120117,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.3818758726119995,
+ "learning_rate": 0.0006,
+ "loss": 4.322787284851074,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.389406681060791,
+ "learning_rate": 0.0006,
+ "loss": 4.457492828369141,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.38305217027664185,
+ "learning_rate": 0.0006,
+ "loss": 4.306647300720215,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.3900682032108307,
+ "learning_rate": 0.0006,
+ "loss": 4.331067085266113,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.38036227226257324,
+ "learning_rate": 0.0006,
+ "loss": 4.264892578125,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.39323344826698303,
+ "learning_rate": 0.0006,
+ "loss": 4.365866661071777,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.4049435257911682,
+ "learning_rate": 0.0006,
+ "loss": 4.381568908691406,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.4216940701007843,
+ "learning_rate": 0.0006,
+ "loss": 4.364271640777588,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.42422112822532654,
+ "learning_rate": 0.0006,
+ "loss": 4.400199890136719,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.3819519281387329,
+ "learning_rate": 0.0006,
+ "loss": 4.257974147796631,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.4014202654361725,
+ "learning_rate": 0.0006,
+ "loss": 4.329166889190674,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.39812493324279785,
+ "learning_rate": 0.0006,
+ "loss": 4.372607231140137,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.3916856050491333,
+ "learning_rate": 0.0006,
+ "loss": 4.385530471801758,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.4020134508609772,
+ "learning_rate": 0.0006,
+ "loss": 4.3358330726623535,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.3931422829627991,
+ "learning_rate": 0.0006,
+ "loss": 4.381669521331787,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.37799912691116333,
+ "learning_rate": 0.0006,
+ "loss": 4.392168998718262,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.39257925748825073,
+ "learning_rate": 0.0006,
+ "loss": 4.4379096031188965,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.39501482248306274,
+ "learning_rate": 0.0006,
+ "loss": 4.323174953460693,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.3914605677127838,
+ "learning_rate": 0.0006,
+ "loss": 4.365396022796631,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.3778083026409149,
+ "learning_rate": 0.0006,
+ "loss": 4.3220720291137695,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.3911595344543457,
+ "learning_rate": 0.0006,
+ "loss": 4.323670864105225,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.3692200779914856,
+ "learning_rate": 0.0006,
+ "loss": 4.341980934143066,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.3713432848453522,
+ "learning_rate": 0.0006,
+ "loss": 4.304820537567139,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.37348702549934387,
+ "learning_rate": 0.0006,
+ "loss": 4.326486587524414,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.3943784236907959,
+ "learning_rate": 0.0006,
+ "loss": 4.374529838562012,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.4153553247451782,
+ "learning_rate": 0.0006,
+ "loss": 4.392250061035156,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.3885365426540375,
+ "learning_rate": 0.0006,
+ "loss": 4.322462558746338,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.3777163326740265,
+ "learning_rate": 0.0006,
+ "loss": 4.399444103240967,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.45014286041259766,
+ "learning_rate": 0.0006,
+ "loss": 4.266523361206055,
+ "step": 5472
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.3318874183004324e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5472/training_args.bin b/runs/i5-fulle-lm/checkpoint-5472/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5472/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-576/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-576/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/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/i5-fulle-lm/checkpoint-576/config.json b/runs/i5-fulle-lm/checkpoint-576/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-576/generation_config.json b/runs/i5-fulle-lm/checkpoint-576/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-576/model.safetensors b/runs/i5-fulle-lm/checkpoint-576/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..91a664209d4590bf68cc6acef05dab6248939c8a
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be5a534fa6628ab28e550fffae86cce371368688871003d8237ec051811f1d6e
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-576/optimizer.pt b/runs/i5-fulle-lm/checkpoint-576/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..db5a465bc25fcb0b4729fbb30b0465c419b12c7b
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3e54832d1d3d3b212abfd27443a5a6525a6fa0ad10256d1dd57788e1f9fac012
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-576/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-576/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0c34a09b245b65b13a60209de002bb95405e4de3
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dd6c11147fc424397d6dcef3a6bc2efb5840bf6c1134c18d9a6da14e720cdbe3
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-576/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-576/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4217bf29d6ef21f9f3b650078bdc2b8d591234f6
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:347e4ef214e5505ddf0b798463538e28e9a67832fb99f11f6d4813ff575ee056
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-576/scheduler.pt b/runs/i5-fulle-lm/checkpoint-576/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..dbc454a52c5d1edb241846f7cbf86268ced2c2ff
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5f28b8022dab4a12fbbad2bccde532c0f7c60e469bde0bf66d40f7d043ac1727
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-576/tokenizer.json b/runs/i5-fulle-lm/checkpoint-576/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-576/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-576/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-576/trainer_state.json b/runs/i5-fulle-lm/checkpoint-576/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..ed30cd68feeabfbc7e1e2c93789c26f0a330add5
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/trainer_state.json
@@ -0,0 +1,4114 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 8.0,
+ "eval_steps": 500,
+ "global_step": 576,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.4546183350530867e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-576/training_args.bin b/runs/i5-fulle-lm/checkpoint-576/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-576/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-5760/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-5760/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/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/i5-fulle-lm/checkpoint-5760/config.json b/runs/i5-fulle-lm/checkpoint-5760/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5760/generation_config.json b/runs/i5-fulle-lm/checkpoint-5760/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5760/model.safetensors b/runs/i5-fulle-lm/checkpoint-5760/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6ceed3616a210e2b2e8b6bdd4c02ecc1645f66df
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b18e5eef735b1669a16fdf2e2955da9880cc7bbcd856b9457b74ed934b2219fe
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-5760/optimizer.pt b/runs/i5-fulle-lm/checkpoint-5760/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..3c29a519077accb9e9c60dc5a0ac550ce54b1f16
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:70197cc4487d98e521d29bb4995e41d42f3c347dfe1a3c2aa7583933fe5088c4
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-5760/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-5760/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..e928104e5edf9eef37ade0cceffb22c2ab6a6fcc
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a372594b497a79a6e1b6514b38636f8f21d255879efc798be7396b24eaf6a44a
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-5760/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-5760/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..87ac3f964a527d5ef359a6067671afb6d9128388
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6a67f72728b4879df25fad9d6d4b4ed9901fb06655870d6e6e4ae4523287cb60
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-5760/scheduler.pt b/runs/i5-fulle-lm/checkpoint-5760/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..146fac8459db1a89ef1d0b02179a40f96280dd47
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a202cad58a75ceda9326b04df06bcdb148f3de25b706c12232648bdbcae46e67
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-5760/tokenizer.json b/runs/i5-fulle-lm/checkpoint-5760/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-5760/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-5760/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5760/trainer_state.json b/runs/i5-fulle-lm/checkpoint-5760/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..b741c4f5764f691297ba1169cdb684ae3418928f
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/trainer_state.json
@@ -0,0 +1,40978 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 80.0,
+ "eval_steps": 500,
+ "global_step": 5760,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 6.10045862197876,
+ "eval_runtime": 43.881,
+ "eval_samples_per_second": 55.651,
+ "eval_steps_per_second": 3.487,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.3880091607570648,
+ "learning_rate": 0.0006,
+ "loss": 4.2891340255737305,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.46462568640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.368136882781982,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.46417036652565,
+ "learning_rate": 0.0006,
+ "loss": 4.290570259094238,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.42546287178993225,
+ "learning_rate": 0.0006,
+ "loss": 4.275969505310059,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.42158621549606323,
+ "learning_rate": 0.0006,
+ "loss": 4.3133697509765625,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.41421398520469666,
+ "learning_rate": 0.0006,
+ "loss": 4.318943977355957,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.4261677861213684,
+ "learning_rate": 0.0006,
+ "loss": 4.386415481567383,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.4547804594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.200797080993652,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.5152761340141296,
+ "learning_rate": 0.0006,
+ "loss": 4.392667770385742,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.6397215127944946,
+ "learning_rate": 0.0006,
+ "loss": 4.365647315979004,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.867751955986023,
+ "learning_rate": 0.0006,
+ "loss": 4.404231071472168,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 1.113226056098938,
+ "learning_rate": 0.0006,
+ "loss": 4.4237775802612305,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.9725164771080017,
+ "learning_rate": 0.0006,
+ "loss": 4.353878021240234,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.8986128568649292,
+ "learning_rate": 0.0006,
+ "loss": 4.404200553894043,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.644611656665802,
+ "learning_rate": 0.0006,
+ "loss": 4.314446449279785,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.5430455803871155,
+ "learning_rate": 0.0006,
+ "loss": 4.404072284698486,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.5315895080566406,
+ "learning_rate": 0.0006,
+ "loss": 4.339350700378418,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.4984396696090698,
+ "learning_rate": 0.0006,
+ "loss": 4.418368339538574,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.4928722679615021,
+ "learning_rate": 0.0006,
+ "loss": 4.351061820983887,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.4810708463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.32480525970459,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.4846661388874054,
+ "learning_rate": 0.0006,
+ "loss": 4.410396099090576,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.45098942518234253,
+ "learning_rate": 0.0006,
+ "loss": 4.434419631958008,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.4603881239891052,
+ "learning_rate": 0.0006,
+ "loss": 4.374553680419922,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.47921186685562134,
+ "learning_rate": 0.0006,
+ "loss": 4.43428373336792,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.458781361579895,
+ "learning_rate": 0.0006,
+ "loss": 4.345955848693848,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.43630266189575195,
+ "learning_rate": 0.0006,
+ "loss": 4.396679401397705,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.4061865210533142,
+ "learning_rate": 0.0006,
+ "loss": 4.3547186851501465,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.3998570740222931,
+ "learning_rate": 0.0006,
+ "loss": 4.42930793762207,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.43052756786346436,
+ "learning_rate": 0.0006,
+ "loss": 4.483987808227539,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.40878528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.4177021980285645,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.41628801822662354,
+ "learning_rate": 0.0006,
+ "loss": 4.383821487426758,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.39991578459739685,
+ "learning_rate": 0.0006,
+ "loss": 4.403266429901123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.3781890571117401,
+ "learning_rate": 0.0006,
+ "loss": 4.361995220184326,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.38037991523742676,
+ "learning_rate": 0.0006,
+ "loss": 4.520498275756836,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.3687450587749481,
+ "learning_rate": 0.0006,
+ "loss": 4.34592342376709,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.3800104558467865,
+ "learning_rate": 0.0006,
+ "loss": 4.395520210266113,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.38416075706481934,
+ "learning_rate": 0.0006,
+ "loss": 4.432024002075195,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.38714301586151123,
+ "learning_rate": 0.0006,
+ "loss": 4.371710300445557,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.3560386002063751,
+ "learning_rate": 0.0006,
+ "loss": 4.389065265655518,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.3583020269870758,
+ "learning_rate": 0.0006,
+ "loss": 4.294467926025391,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.3507572412490845,
+ "learning_rate": 0.0006,
+ "loss": 4.335668563842773,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.3481273353099823,
+ "learning_rate": 0.0006,
+ "loss": 4.355007171630859,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.3648652732372284,
+ "learning_rate": 0.0006,
+ "loss": 4.458398818969727,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.3315402865409851,
+ "learning_rate": 0.0006,
+ "loss": 4.415014266967773,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.34356269240379333,
+ "learning_rate": 0.0006,
+ "loss": 4.3891496658325195,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.3475818932056427,
+ "learning_rate": 0.0006,
+ "loss": 4.403259754180908,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.3756524622440338,
+ "learning_rate": 0.0006,
+ "loss": 4.396340370178223,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.38063693046569824,
+ "learning_rate": 0.0006,
+ "loss": 4.390671253204346,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.3574332594871521,
+ "learning_rate": 0.0006,
+ "loss": 4.342291831970215,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.35717374086380005,
+ "learning_rate": 0.0006,
+ "loss": 4.389538764953613,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.34184643626213074,
+ "learning_rate": 0.0006,
+ "loss": 4.407958030700684,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.3665345013141632,
+ "learning_rate": 0.0006,
+ "loss": 4.407729148864746,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.3752829432487488,
+ "learning_rate": 0.0006,
+ "loss": 4.406526565551758,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.3690424859523773,
+ "learning_rate": 0.0006,
+ "loss": 4.444920063018799,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.35570403933525085,
+ "learning_rate": 0.0006,
+ "loss": 4.41465950012207,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.3422539532184601,
+ "learning_rate": 0.0006,
+ "loss": 4.341947078704834,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.34019631147384644,
+ "learning_rate": 0.0006,
+ "loss": 4.383486747741699,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.35433074831962585,
+ "learning_rate": 0.0006,
+ "loss": 4.43992280960083,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.3690914809703827,
+ "learning_rate": 0.0006,
+ "loss": 4.396021842956543,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.35793814063072205,
+ "learning_rate": 0.0006,
+ "loss": 4.389019012451172,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.34700852632522583,
+ "learning_rate": 0.0006,
+ "loss": 4.476073265075684,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.3613256514072418,
+ "learning_rate": 0.0006,
+ "loss": 4.43828010559082,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.3444153070449829,
+ "learning_rate": 0.0006,
+ "loss": 4.470188140869141,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.3383917510509491,
+ "learning_rate": 0.0006,
+ "loss": 4.381032943725586,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.3648519217967987,
+ "learning_rate": 0.0006,
+ "loss": 4.399723052978516,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.34983959794044495,
+ "learning_rate": 0.0006,
+ "loss": 4.43270206451416,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.33937394618988037,
+ "learning_rate": 0.0006,
+ "loss": 4.4052228927612305,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.34935757517814636,
+ "learning_rate": 0.0006,
+ "loss": 4.38171911239624,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.3566495180130005,
+ "learning_rate": 0.0006,
+ "loss": 4.495579242706299,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.3702648878097534,
+ "learning_rate": 0.0006,
+ "loss": 4.452796936035156,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.3714422583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.404526710510254,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.42734357714653015,
+ "learning_rate": 0.0006,
+ "loss": 4.511031150817871,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 6.156860828399658,
+ "eval_runtime": 44.07,
+ "eval_samples_per_second": 55.412,
+ "eval_steps_per_second": 3.472,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.381186306476593,
+ "learning_rate": 0.0006,
+ "loss": 4.39985466003418,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.4057665169239044,
+ "learning_rate": 0.0006,
+ "loss": 4.338055610656738,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.4002494513988495,
+ "learning_rate": 0.0006,
+ "loss": 4.331958770751953,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.4294043183326721,
+ "learning_rate": 0.0006,
+ "loss": 4.339388370513916,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.45085105299949646,
+ "learning_rate": 0.0006,
+ "loss": 4.334287643432617,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.5061688423156738,
+ "learning_rate": 0.0006,
+ "loss": 4.2327470779418945,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.5022581219673157,
+ "learning_rate": 0.0006,
+ "loss": 4.291156768798828,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.5529219508171082,
+ "learning_rate": 0.0006,
+ "loss": 4.4021406173706055,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.5945294499397278,
+ "learning_rate": 0.0006,
+ "loss": 4.3400092124938965,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.5755016803741455,
+ "learning_rate": 0.0006,
+ "loss": 4.2676286697387695,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.5352432131767273,
+ "learning_rate": 0.0006,
+ "loss": 4.322068214416504,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.5563830137252808,
+ "learning_rate": 0.0006,
+ "loss": 4.401552200317383,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.5542744994163513,
+ "learning_rate": 0.0006,
+ "loss": 4.361536026000977,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.5109394788742065,
+ "learning_rate": 0.0006,
+ "loss": 4.333110809326172,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.48128604888916016,
+ "learning_rate": 0.0006,
+ "loss": 4.311734199523926,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.48069921135902405,
+ "learning_rate": 0.0006,
+ "loss": 4.400852203369141,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.45155879855155945,
+ "learning_rate": 0.0006,
+ "loss": 4.257515907287598,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.44431430101394653,
+ "learning_rate": 0.0006,
+ "loss": 4.397309303283691,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.43975624442100525,
+ "learning_rate": 0.0006,
+ "loss": 4.392481803894043,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.43021512031555176,
+ "learning_rate": 0.0006,
+ "loss": 4.323525428771973,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.4590098559856415,
+ "learning_rate": 0.0006,
+ "loss": 4.334511756896973,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.42400652170181274,
+ "learning_rate": 0.0006,
+ "loss": 4.33546257019043,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.41162917017936707,
+ "learning_rate": 0.0006,
+ "loss": 4.348457336425781,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.44991976022720337,
+ "learning_rate": 0.0006,
+ "loss": 4.3486785888671875,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.41424447298049927,
+ "learning_rate": 0.0006,
+ "loss": 4.396841049194336,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.4157496690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.386002540588379,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.43610864877700806,
+ "learning_rate": 0.0006,
+ "loss": 4.355074882507324,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.43452468514442444,
+ "learning_rate": 0.0006,
+ "loss": 4.327574729919434,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.42757663130760193,
+ "learning_rate": 0.0006,
+ "loss": 4.289640426635742,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.38811302185058594,
+ "learning_rate": 0.0006,
+ "loss": 4.297506809234619,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.3866890072822571,
+ "learning_rate": 0.0006,
+ "loss": 4.4301838874816895,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.43073758482933044,
+ "learning_rate": 0.0006,
+ "loss": 4.365545749664307,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.4058871865272522,
+ "learning_rate": 0.0006,
+ "loss": 4.294832229614258,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.41439321637153625,
+ "learning_rate": 0.0006,
+ "loss": 4.374986171722412,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.39280998706817627,
+ "learning_rate": 0.0006,
+ "loss": 4.472156524658203,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.380862832069397,
+ "learning_rate": 0.0006,
+ "loss": 4.3376359939575195,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.3880598843097687,
+ "learning_rate": 0.0006,
+ "loss": 4.399764537811279,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.4056805372238159,
+ "learning_rate": 0.0006,
+ "loss": 4.3839263916015625,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.43928271532058716,
+ "learning_rate": 0.0006,
+ "loss": 4.387872695922852,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.4157223701477051,
+ "learning_rate": 0.0006,
+ "loss": 4.491827011108398,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.38938942551612854,
+ "learning_rate": 0.0006,
+ "loss": 4.369803428649902,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.39400580525398254,
+ "learning_rate": 0.0006,
+ "loss": 4.4603800773620605,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.3747307062149048,
+ "learning_rate": 0.0006,
+ "loss": 4.366776466369629,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.4072708785533905,
+ "learning_rate": 0.0006,
+ "loss": 4.3782854080200195,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.4091123342514038,
+ "learning_rate": 0.0006,
+ "loss": 4.4356689453125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.40395987033843994,
+ "learning_rate": 0.0006,
+ "loss": 4.413468360900879,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.39857032895088196,
+ "learning_rate": 0.0006,
+ "loss": 4.450807571411133,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.4158494174480438,
+ "learning_rate": 0.0006,
+ "loss": 4.381142616271973,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.4082915484905243,
+ "learning_rate": 0.0006,
+ "loss": 4.496438980102539,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.37405046820640564,
+ "learning_rate": 0.0006,
+ "loss": 4.345484256744385,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.359416127204895,
+ "learning_rate": 0.0006,
+ "loss": 4.26982307434082,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.3519706726074219,
+ "learning_rate": 0.0006,
+ "loss": 4.397839546203613,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.3789094388484955,
+ "learning_rate": 0.0006,
+ "loss": 4.415822982788086,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.3676875829696655,
+ "learning_rate": 0.0006,
+ "loss": 4.396381855010986,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.3599476218223572,
+ "learning_rate": 0.0006,
+ "loss": 4.4171977043151855,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.3843400180339813,
+ "learning_rate": 0.0006,
+ "loss": 4.47220516204834,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.3702511191368103,
+ "learning_rate": 0.0006,
+ "loss": 4.500491619110107,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.3719273805618286,
+ "learning_rate": 0.0006,
+ "loss": 4.352668762207031,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.3619741201400757,
+ "learning_rate": 0.0006,
+ "loss": 4.3586931228637695,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.3766055703163147,
+ "learning_rate": 0.0006,
+ "loss": 4.408159255981445,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.3580402433872223,
+ "learning_rate": 0.0006,
+ "loss": 4.355810165405273,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.3602997958660126,
+ "learning_rate": 0.0006,
+ "loss": 4.357786178588867,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.35930490493774414,
+ "learning_rate": 0.0006,
+ "loss": 4.353297233581543,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.3693123161792755,
+ "learning_rate": 0.0006,
+ "loss": 4.391401290893555,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.36045047640800476,
+ "learning_rate": 0.0006,
+ "loss": 4.447843551635742,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.38618308305740356,
+ "learning_rate": 0.0006,
+ "loss": 4.465207099914551,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.38916000723838806,
+ "learning_rate": 0.0006,
+ "loss": 4.4063239097595215,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.3937848210334778,
+ "learning_rate": 0.0006,
+ "loss": 4.438618183135986,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.3975565731525421,
+ "learning_rate": 0.0006,
+ "loss": 4.376347541809082,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.383375883102417,
+ "learning_rate": 0.0006,
+ "loss": 4.376345634460449,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.38982275128364563,
+ "learning_rate": 0.0006,
+ "loss": 4.477313041687012,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.44567444920539856,
+ "learning_rate": 0.0006,
+ "loss": 4.4622087478637695,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 6.127683162689209,
+ "eval_runtime": 43.8712,
+ "eval_samples_per_second": 55.663,
+ "eval_steps_per_second": 3.487,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.38945627212524414,
+ "learning_rate": 0.0006,
+ "loss": 4.225332736968994,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.48500800132751465,
+ "learning_rate": 0.0006,
+ "loss": 4.303142547607422,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.4945746660232544,
+ "learning_rate": 0.0006,
+ "loss": 4.252800464630127,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.4860735237598419,
+ "learning_rate": 0.0006,
+ "loss": 4.3632307052612305,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.5717944502830505,
+ "learning_rate": 0.0006,
+ "loss": 4.2910966873168945,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.6825600862503052,
+ "learning_rate": 0.0006,
+ "loss": 4.446534633636475,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.7507191300392151,
+ "learning_rate": 0.0006,
+ "loss": 4.3218584060668945,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.8143581748008728,
+ "learning_rate": 0.0006,
+ "loss": 4.291619777679443,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.8164665699005127,
+ "learning_rate": 0.0006,
+ "loss": 4.314390182495117,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.8027179837226868,
+ "learning_rate": 0.0006,
+ "loss": 4.347686767578125,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.7046833038330078,
+ "learning_rate": 0.0006,
+ "loss": 4.382390975952148,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.6704773902893066,
+ "learning_rate": 0.0006,
+ "loss": 4.368736267089844,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.5986452698707581,
+ "learning_rate": 0.0006,
+ "loss": 4.3586106300354,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.5452585816383362,
+ "learning_rate": 0.0006,
+ "loss": 4.215537071228027,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.5050400495529175,
+ "learning_rate": 0.0006,
+ "loss": 4.345709800720215,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.4811224639415741,
+ "learning_rate": 0.0006,
+ "loss": 4.229983329772949,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.47257834672927856,
+ "learning_rate": 0.0006,
+ "loss": 4.401679039001465,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.46806448698043823,
+ "learning_rate": 0.0006,
+ "loss": 4.345294952392578,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.47019970417022705,
+ "learning_rate": 0.0006,
+ "loss": 4.3366899490356445,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.4618140459060669,
+ "learning_rate": 0.0006,
+ "loss": 4.423093795776367,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.45103076100349426,
+ "learning_rate": 0.0006,
+ "loss": 4.429213523864746,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.42674535512924194,
+ "learning_rate": 0.0006,
+ "loss": 4.355292320251465,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.4282950162887573,
+ "learning_rate": 0.0006,
+ "loss": 4.307826995849609,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.4120710790157318,
+ "learning_rate": 0.0006,
+ "loss": 4.322912216186523,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.4138009548187256,
+ "learning_rate": 0.0006,
+ "loss": 4.328085899353027,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.41546961665153503,
+ "learning_rate": 0.0006,
+ "loss": 4.4070940017700195,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.44050562381744385,
+ "learning_rate": 0.0006,
+ "loss": 4.419538497924805,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.41043856739997864,
+ "learning_rate": 0.0006,
+ "loss": 4.404756546020508,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.42796140909194946,
+ "learning_rate": 0.0006,
+ "loss": 4.3040008544921875,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.38510003685951233,
+ "learning_rate": 0.0006,
+ "loss": 4.353320598602295,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.3788503110408783,
+ "learning_rate": 0.0006,
+ "loss": 4.300704479217529,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.3905165493488312,
+ "learning_rate": 0.0006,
+ "loss": 4.343006610870361,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.3838869333267212,
+ "learning_rate": 0.0006,
+ "loss": 4.308780670166016,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.38746532797813416,
+ "learning_rate": 0.0006,
+ "loss": 4.335064888000488,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.37491124868392944,
+ "learning_rate": 0.0006,
+ "loss": 4.32066535949707,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.36987295746803284,
+ "learning_rate": 0.0006,
+ "loss": 4.317310333251953,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.38870200514793396,
+ "learning_rate": 0.0006,
+ "loss": 4.354729652404785,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.37225764989852905,
+ "learning_rate": 0.0006,
+ "loss": 4.29198694229126,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.3612116873264313,
+ "learning_rate": 0.0006,
+ "loss": 4.3979315757751465,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.40117356181144714,
+ "learning_rate": 0.0006,
+ "loss": 4.429460048675537,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.3933751881122589,
+ "learning_rate": 0.0006,
+ "loss": 4.348066329956055,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.38921254873275757,
+ "learning_rate": 0.0006,
+ "loss": 4.405765056610107,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.3987453579902649,
+ "learning_rate": 0.0006,
+ "loss": 4.350672721862793,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.43417951464653015,
+ "learning_rate": 0.0006,
+ "loss": 4.463413238525391,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.41297927498817444,
+ "learning_rate": 0.0006,
+ "loss": 4.309045791625977,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.38461950421333313,
+ "learning_rate": 0.0006,
+ "loss": 4.318929672241211,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.3841524124145508,
+ "learning_rate": 0.0006,
+ "loss": 4.379926681518555,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.39013510942459106,
+ "learning_rate": 0.0006,
+ "loss": 4.3409342765808105,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.3847009539604187,
+ "learning_rate": 0.0006,
+ "loss": 4.467362880706787,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.3979317247867584,
+ "learning_rate": 0.0006,
+ "loss": 4.333352088928223,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.4019637107849121,
+ "learning_rate": 0.0006,
+ "loss": 4.32415246963501,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.38000333309173584,
+ "learning_rate": 0.0006,
+ "loss": 4.318780899047852,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.3957592248916626,
+ "learning_rate": 0.0006,
+ "loss": 4.301888942718506,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.380258709192276,
+ "learning_rate": 0.0006,
+ "loss": 4.362771987915039,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.37715500593185425,
+ "learning_rate": 0.0006,
+ "loss": 4.455068588256836,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.37162303924560547,
+ "learning_rate": 0.0006,
+ "loss": 4.453987121582031,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.36303192377090454,
+ "learning_rate": 0.0006,
+ "loss": 4.400303363800049,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.34762880206108093,
+ "learning_rate": 0.0006,
+ "loss": 4.3961381912231445,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.34881117939949036,
+ "learning_rate": 0.0006,
+ "loss": 4.419530868530273,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.36440593004226685,
+ "learning_rate": 0.0006,
+ "loss": 4.4832868576049805,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.3671160638332367,
+ "learning_rate": 0.0006,
+ "loss": 4.389676094055176,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.3860883116722107,
+ "learning_rate": 0.0006,
+ "loss": 4.383245468139648,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.38325265049934387,
+ "learning_rate": 0.0006,
+ "loss": 4.3348388671875,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.3778875470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.362031936645508,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.3768773674964905,
+ "learning_rate": 0.0006,
+ "loss": 4.33457088470459,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.39139771461486816,
+ "learning_rate": 0.0006,
+ "loss": 4.455694198608398,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.38553205132484436,
+ "learning_rate": 0.0006,
+ "loss": 4.347469329833984,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.3916657567024231,
+ "learning_rate": 0.0006,
+ "loss": 4.394040107727051,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.3568893373012543,
+ "learning_rate": 0.0006,
+ "loss": 4.3976874351501465,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.3758280277252197,
+ "learning_rate": 0.0006,
+ "loss": 4.401939392089844,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.3833237588405609,
+ "learning_rate": 0.0006,
+ "loss": 4.339327812194824,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.4451141357421875,
+ "learning_rate": 0.0006,
+ "loss": 4.452360153198242,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 6.193995952606201,
+ "eval_runtime": 43.9228,
+ "eval_samples_per_second": 55.598,
+ "eval_steps_per_second": 3.483,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.4081752598285675,
+ "learning_rate": 0.0006,
+ "loss": 4.2674560546875,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.46005865931510925,
+ "learning_rate": 0.0006,
+ "loss": 4.2233099937438965,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.4297347962856293,
+ "learning_rate": 0.0006,
+ "loss": 4.269168376922607,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.427181601524353,
+ "learning_rate": 0.0006,
+ "loss": 4.304473876953125,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.4240623712539673,
+ "learning_rate": 0.0006,
+ "loss": 4.358336448669434,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.461392879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.351563930511475,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.4573875665664673,
+ "learning_rate": 0.0006,
+ "loss": 4.233829021453857,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.5236565470695496,
+ "learning_rate": 0.0006,
+ "loss": 4.313651084899902,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.6449952125549316,
+ "learning_rate": 0.0006,
+ "loss": 4.2785491943359375,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.76405930519104,
+ "learning_rate": 0.0006,
+ "loss": 4.333526611328125,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.8181349635124207,
+ "learning_rate": 0.0006,
+ "loss": 4.3336896896362305,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.7717618942260742,
+ "learning_rate": 0.0006,
+ "loss": 4.314065933227539,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.6831390857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.378012657165527,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.5755302906036377,
+ "learning_rate": 0.0006,
+ "loss": 4.331476211547852,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.5297263860702515,
+ "learning_rate": 0.0006,
+ "loss": 4.337549209594727,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.5538325309753418,
+ "learning_rate": 0.0006,
+ "loss": 4.395265102386475,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.4868195652961731,
+ "learning_rate": 0.0006,
+ "loss": 4.313584327697754,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.4794177711009979,
+ "learning_rate": 0.0006,
+ "loss": 4.413606643676758,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.4221785366535187,
+ "learning_rate": 0.0006,
+ "loss": 4.255707740783691,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.4288736879825592,
+ "learning_rate": 0.0006,
+ "loss": 4.257824897766113,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.42079946398735046,
+ "learning_rate": 0.0006,
+ "loss": 4.2655253410339355,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.4367576539516449,
+ "learning_rate": 0.0006,
+ "loss": 4.390307426452637,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.4121208190917969,
+ "learning_rate": 0.0006,
+ "loss": 4.3600006103515625,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.3934427797794342,
+ "learning_rate": 0.0006,
+ "loss": 4.276140213012695,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.3987336754798889,
+ "learning_rate": 0.0006,
+ "loss": 4.330526351928711,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.40691474080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.260777473449707,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.3869854807853699,
+ "learning_rate": 0.0006,
+ "loss": 4.3207855224609375,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.3992115259170532,
+ "learning_rate": 0.0006,
+ "loss": 4.3675432205200195,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.39756008982658386,
+ "learning_rate": 0.0006,
+ "loss": 4.359041213989258,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.37387391924858093,
+ "learning_rate": 0.0006,
+ "loss": 4.314123630523682,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.3787343502044678,
+ "learning_rate": 0.0006,
+ "loss": 4.376033782958984,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.388907253742218,
+ "learning_rate": 0.0006,
+ "loss": 4.2664690017700195,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.39261215925216675,
+ "learning_rate": 0.0006,
+ "loss": 4.335193634033203,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.385919988155365,
+ "learning_rate": 0.0006,
+ "loss": 4.329131126403809,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.39091575145721436,
+ "learning_rate": 0.0006,
+ "loss": 4.416098117828369,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.3747062683105469,
+ "learning_rate": 0.0006,
+ "loss": 4.284010887145996,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.37862640619277954,
+ "learning_rate": 0.0006,
+ "loss": 4.398101806640625,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.3797444701194763,
+ "learning_rate": 0.0006,
+ "loss": 4.433382034301758,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.3917072117328644,
+ "learning_rate": 0.0006,
+ "loss": 4.265375137329102,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.40743324160575867,
+ "learning_rate": 0.0006,
+ "loss": 4.351291656494141,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.4176776707172394,
+ "learning_rate": 0.0006,
+ "loss": 4.4158782958984375,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.4368206560611725,
+ "learning_rate": 0.0006,
+ "loss": 4.422186851501465,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.45450183749198914,
+ "learning_rate": 0.0006,
+ "loss": 4.363736629486084,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.4195234775543213,
+ "learning_rate": 0.0006,
+ "loss": 4.459656715393066,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.3838373124599457,
+ "learning_rate": 0.0006,
+ "loss": 4.338109016418457,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.37965819239616394,
+ "learning_rate": 0.0006,
+ "loss": 4.350182056427002,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.3787379264831543,
+ "learning_rate": 0.0006,
+ "loss": 4.394096851348877,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.3984084129333496,
+ "learning_rate": 0.0006,
+ "loss": 4.381903171539307,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.3826642334461212,
+ "learning_rate": 0.0006,
+ "loss": 4.269111156463623,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.3738428056240082,
+ "learning_rate": 0.0006,
+ "loss": 4.29117488861084,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.3769048750400543,
+ "learning_rate": 0.0006,
+ "loss": 4.395892143249512,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.36490270495414734,
+ "learning_rate": 0.0006,
+ "loss": 4.356070518493652,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.38128694891929626,
+ "learning_rate": 0.0006,
+ "loss": 4.366775989532471,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.3863452672958374,
+ "learning_rate": 0.0006,
+ "loss": 4.403047561645508,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.3697649836540222,
+ "learning_rate": 0.0006,
+ "loss": 4.333529472351074,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.3666415810585022,
+ "learning_rate": 0.0006,
+ "loss": 4.421572685241699,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.3746238946914673,
+ "learning_rate": 0.0006,
+ "loss": 4.291342735290527,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.3864925503730774,
+ "learning_rate": 0.0006,
+ "loss": 4.319379806518555,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.40842366218566895,
+ "learning_rate": 0.0006,
+ "loss": 4.34860897064209,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.39575234055519104,
+ "learning_rate": 0.0006,
+ "loss": 4.389467239379883,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.3882506787776947,
+ "learning_rate": 0.0006,
+ "loss": 4.373462677001953,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.38202980160713196,
+ "learning_rate": 0.0006,
+ "loss": 4.370086669921875,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.37805864214897156,
+ "learning_rate": 0.0006,
+ "loss": 4.46006965637207,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.3739442527294159,
+ "learning_rate": 0.0006,
+ "loss": 4.36165714263916,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.3707204759120941,
+ "learning_rate": 0.0006,
+ "loss": 4.418872356414795,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.37603604793548584,
+ "learning_rate": 0.0006,
+ "loss": 4.45180606842041,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.3731978237628937,
+ "learning_rate": 0.0006,
+ "loss": 4.412590026855469,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.3871077001094818,
+ "learning_rate": 0.0006,
+ "loss": 4.4665679931640625,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.3805893659591675,
+ "learning_rate": 0.0006,
+ "loss": 4.376047134399414,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.3941190540790558,
+ "learning_rate": 0.0006,
+ "loss": 4.414681434631348,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.39961132407188416,
+ "learning_rate": 0.0006,
+ "loss": 4.40030574798584,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.45096156001091003,
+ "learning_rate": 0.0006,
+ "loss": 4.3740458488464355,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 6.164906978607178,
+ "eval_runtime": 43.7516,
+ "eval_samples_per_second": 55.815,
+ "eval_steps_per_second": 3.497,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.4227452278137207,
+ "learning_rate": 0.0006,
+ "loss": 4.3197340965271,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.4646683931350708,
+ "learning_rate": 0.0006,
+ "loss": 4.254220008850098,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.5112658739089966,
+ "learning_rate": 0.0006,
+ "loss": 4.245427131652832,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.5452179312705994,
+ "learning_rate": 0.0006,
+ "loss": 4.303033828735352,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.6151604652404785,
+ "learning_rate": 0.0006,
+ "loss": 4.3013811111450195,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.7466694712638855,
+ "learning_rate": 0.0006,
+ "loss": 4.303430080413818,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.9221336841583252,
+ "learning_rate": 0.0006,
+ "loss": 4.330693244934082,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.9571523666381836,
+ "learning_rate": 0.0006,
+ "loss": 4.283618927001953,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.8955944776535034,
+ "learning_rate": 0.0006,
+ "loss": 4.331462860107422,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.9967221021652222,
+ "learning_rate": 0.0006,
+ "loss": 4.267236709594727,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.896125853061676,
+ "learning_rate": 0.0006,
+ "loss": 4.382920265197754,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.8246790170669556,
+ "learning_rate": 0.0006,
+ "loss": 4.325201034545898,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.6651087403297424,
+ "learning_rate": 0.0006,
+ "loss": 4.389814376831055,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.5789903998374939,
+ "learning_rate": 0.0006,
+ "loss": 4.256431579589844,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.540268063545227,
+ "learning_rate": 0.0006,
+ "loss": 4.314873218536377,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.5234258770942688,
+ "learning_rate": 0.0006,
+ "loss": 4.322999954223633,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.5203981399536133,
+ "learning_rate": 0.0006,
+ "loss": 4.449131965637207,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.47833096981048584,
+ "learning_rate": 0.0006,
+ "loss": 4.370548725128174,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.45063355565071106,
+ "learning_rate": 0.0006,
+ "loss": 4.423710823059082,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.4473242163658142,
+ "learning_rate": 0.0006,
+ "loss": 4.322866439819336,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.45025673508644104,
+ "learning_rate": 0.0006,
+ "loss": 4.242474555969238,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.4419912099838257,
+ "learning_rate": 0.0006,
+ "loss": 4.3837714195251465,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.4443511664867401,
+ "learning_rate": 0.0006,
+ "loss": 4.393730163574219,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.42215496301651,
+ "learning_rate": 0.0006,
+ "loss": 4.360969066619873,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.4408218562602997,
+ "learning_rate": 0.0006,
+ "loss": 4.399507522583008,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.42309728264808655,
+ "learning_rate": 0.0006,
+ "loss": 4.34589147567749,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.3893560767173767,
+ "learning_rate": 0.0006,
+ "loss": 4.278870582580566,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.42726844549179077,
+ "learning_rate": 0.0006,
+ "loss": 4.428325653076172,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.39529383182525635,
+ "learning_rate": 0.0006,
+ "loss": 4.3687872886657715,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.39174285531044006,
+ "learning_rate": 0.0006,
+ "loss": 4.367023468017578,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.39338526129722595,
+ "learning_rate": 0.0006,
+ "loss": 4.372482776641846,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.396528959274292,
+ "learning_rate": 0.0006,
+ "loss": 4.325854778289795,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.4031950533390045,
+ "learning_rate": 0.0006,
+ "loss": 4.387483596801758,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.3867308795452118,
+ "learning_rate": 0.0006,
+ "loss": 4.337440490722656,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.3758327066898346,
+ "learning_rate": 0.0006,
+ "loss": 4.332152366638184,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.3789239823818207,
+ "learning_rate": 0.0006,
+ "loss": 4.234537124633789,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.36792582273483276,
+ "learning_rate": 0.0006,
+ "loss": 4.3876800537109375,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.3689296245574951,
+ "learning_rate": 0.0006,
+ "loss": 4.311098098754883,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.3556303083896637,
+ "learning_rate": 0.0006,
+ "loss": 4.348201274871826,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.38501277565956116,
+ "learning_rate": 0.0006,
+ "loss": 4.391176700592041,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.3857221305370331,
+ "learning_rate": 0.0006,
+ "loss": 4.377525329589844,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.37236976623535156,
+ "learning_rate": 0.0006,
+ "loss": 4.25323486328125,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.37982237339019775,
+ "learning_rate": 0.0006,
+ "loss": 4.326591491699219,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.3887641131877899,
+ "learning_rate": 0.0006,
+ "loss": 4.32540225982666,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.3766990900039673,
+ "learning_rate": 0.0006,
+ "loss": 4.320146560668945,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.3827766478061676,
+ "learning_rate": 0.0006,
+ "loss": 4.344974517822266,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.3892960846424103,
+ "learning_rate": 0.0006,
+ "loss": 4.37299108505249,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.39927658438682556,
+ "learning_rate": 0.0006,
+ "loss": 4.346755504608154,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.3751842975616455,
+ "learning_rate": 0.0006,
+ "loss": 4.390047073364258,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.3758105933666229,
+ "learning_rate": 0.0006,
+ "loss": 4.392386436462402,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.3755977153778076,
+ "learning_rate": 0.0006,
+ "loss": 4.389333724975586,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.38697585463523865,
+ "learning_rate": 0.0006,
+ "loss": 4.363922119140625,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.37856224179267883,
+ "learning_rate": 0.0006,
+ "loss": 4.415143966674805,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.3853805959224701,
+ "learning_rate": 0.0006,
+ "loss": 4.332059860229492,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.3552320599555969,
+ "learning_rate": 0.0006,
+ "loss": 4.360487937927246,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.3593924641609192,
+ "learning_rate": 0.0006,
+ "loss": 4.386531829833984,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.37393584847450256,
+ "learning_rate": 0.0006,
+ "loss": 4.377449989318848,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.37289509177207947,
+ "learning_rate": 0.0006,
+ "loss": 4.381917953491211,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.3700922131538391,
+ "learning_rate": 0.0006,
+ "loss": 4.472764015197754,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.3773220181465149,
+ "learning_rate": 0.0006,
+ "loss": 4.438575744628906,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.3959292769432068,
+ "learning_rate": 0.0006,
+ "loss": 4.41773796081543,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.37098821997642517,
+ "learning_rate": 0.0006,
+ "loss": 4.3457441329956055,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.3589438199996948,
+ "learning_rate": 0.0006,
+ "loss": 4.390456676483154,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.3993541896343231,
+ "learning_rate": 0.0006,
+ "loss": 4.412688255310059,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.39771372079849243,
+ "learning_rate": 0.0006,
+ "loss": 4.37404203414917,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.37521013617515564,
+ "learning_rate": 0.0006,
+ "loss": 4.379281044006348,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.3812563717365265,
+ "learning_rate": 0.0006,
+ "loss": 4.475038528442383,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.3759402632713318,
+ "learning_rate": 0.0006,
+ "loss": 4.298859596252441,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.38831669092178345,
+ "learning_rate": 0.0006,
+ "loss": 4.335268020629883,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.3674168884754181,
+ "learning_rate": 0.0006,
+ "loss": 4.288745880126953,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.37575823068618774,
+ "learning_rate": 0.0006,
+ "loss": 4.340919494628906,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.44213995337486267,
+ "learning_rate": 0.0006,
+ "loss": 4.428310394287109,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 6.250092029571533,
+ "eval_runtime": 43.9606,
+ "eval_samples_per_second": 55.55,
+ "eval_steps_per_second": 3.48,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.40146708488464355,
+ "learning_rate": 0.0006,
+ "loss": 4.233017921447754,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.4238559305667877,
+ "learning_rate": 0.0006,
+ "loss": 4.256832122802734,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.4282098412513733,
+ "learning_rate": 0.0006,
+ "loss": 4.243378639221191,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.4408058524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.367465019226074,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.445965439081192,
+ "learning_rate": 0.0006,
+ "loss": 4.347798824310303,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.47689515352249146,
+ "learning_rate": 0.0006,
+ "loss": 4.242677211761475,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.5041401386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.354928016662598,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.5793538689613342,
+ "learning_rate": 0.0006,
+ "loss": 4.301093578338623,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.5709708333015442,
+ "learning_rate": 0.0006,
+ "loss": 4.217863082885742,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.5181067585945129,
+ "learning_rate": 0.0006,
+ "loss": 4.246687889099121,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.5148541927337646,
+ "learning_rate": 0.0006,
+ "loss": 4.285772800445557,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.5215007662773132,
+ "learning_rate": 0.0006,
+ "loss": 4.2491350173950195,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.5118919610977173,
+ "learning_rate": 0.0006,
+ "loss": 4.354918479919434,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.5332921147346497,
+ "learning_rate": 0.0006,
+ "loss": 4.294621467590332,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.5734043717384338,
+ "learning_rate": 0.0006,
+ "loss": 4.283238887786865,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.5209192037582397,
+ "learning_rate": 0.0006,
+ "loss": 4.251487731933594,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.4510970711708069,
+ "learning_rate": 0.0006,
+ "loss": 4.294740676879883,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.42409008741378784,
+ "learning_rate": 0.0006,
+ "loss": 4.267972946166992,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.45052847266197205,
+ "learning_rate": 0.0006,
+ "loss": 4.451445579528809,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.420418918132782,
+ "learning_rate": 0.0006,
+ "loss": 4.227499008178711,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.4419310390949249,
+ "learning_rate": 0.0006,
+ "loss": 4.294921875,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.41020578145980835,
+ "learning_rate": 0.0006,
+ "loss": 4.235942840576172,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.4084969162940979,
+ "learning_rate": 0.0006,
+ "loss": 4.285951614379883,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.39946338534355164,
+ "learning_rate": 0.0006,
+ "loss": 4.388570785522461,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.39431124925613403,
+ "learning_rate": 0.0006,
+ "loss": 4.329334259033203,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.41183048486709595,
+ "learning_rate": 0.0006,
+ "loss": 4.369775295257568,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.4041382968425751,
+ "learning_rate": 0.0006,
+ "loss": 4.272721290588379,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.42982324957847595,
+ "learning_rate": 0.0006,
+ "loss": 4.310064315795898,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.42579901218414307,
+ "learning_rate": 0.0006,
+ "loss": 4.284671783447266,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.41768139600753784,
+ "learning_rate": 0.0006,
+ "loss": 4.343086242675781,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.3960258960723877,
+ "learning_rate": 0.0006,
+ "loss": 4.2318806648254395,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.3981281518936157,
+ "learning_rate": 0.0006,
+ "loss": 4.2755937576293945,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.39555633068084717,
+ "learning_rate": 0.0006,
+ "loss": 4.383005142211914,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.4002246856689453,
+ "learning_rate": 0.0006,
+ "loss": 4.332754135131836,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.4106678068637848,
+ "learning_rate": 0.0006,
+ "loss": 4.391409873962402,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.3856841027736664,
+ "learning_rate": 0.0006,
+ "loss": 4.316332817077637,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.3910135328769684,
+ "learning_rate": 0.0006,
+ "loss": 4.327088356018066,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.38631075620651245,
+ "learning_rate": 0.0006,
+ "loss": 4.308974266052246,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.36760637164115906,
+ "learning_rate": 0.0006,
+ "loss": 4.396300315856934,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.39333999156951904,
+ "learning_rate": 0.0006,
+ "loss": 4.33335018157959,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.37966030836105347,
+ "learning_rate": 0.0006,
+ "loss": 4.298529148101807,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.3774148225784302,
+ "learning_rate": 0.0006,
+ "loss": 4.218472480773926,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.38100066781044006,
+ "learning_rate": 0.0006,
+ "loss": 4.337407112121582,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.3924340605735779,
+ "learning_rate": 0.0006,
+ "loss": 4.38271427154541,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.37583890557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.331287384033203,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.3993631601333618,
+ "learning_rate": 0.0006,
+ "loss": 4.297436237335205,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.41312935948371887,
+ "learning_rate": 0.0006,
+ "loss": 4.305514335632324,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.4133725166320801,
+ "learning_rate": 0.0006,
+ "loss": 4.339967727661133,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.3860441744327545,
+ "learning_rate": 0.0006,
+ "loss": 4.31814432144165,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.3891344964504242,
+ "learning_rate": 0.0006,
+ "loss": 4.346461772918701,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.3863038122653961,
+ "learning_rate": 0.0006,
+ "loss": 4.413818359375,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.37267377972602844,
+ "learning_rate": 0.0006,
+ "loss": 4.333828449249268,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.37040555477142334,
+ "learning_rate": 0.0006,
+ "loss": 4.456110000610352,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.3837447464466095,
+ "learning_rate": 0.0006,
+ "loss": 4.242850303649902,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.39074262976646423,
+ "learning_rate": 0.0006,
+ "loss": 4.3549485206604,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.38219889998435974,
+ "learning_rate": 0.0006,
+ "loss": 4.296403884887695,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.38378462195396423,
+ "learning_rate": 0.0006,
+ "loss": 4.369739532470703,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.37791451811790466,
+ "learning_rate": 0.0006,
+ "loss": 4.372786998748779,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.3720730245113373,
+ "learning_rate": 0.0006,
+ "loss": 4.292923450469971,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.3587147295475006,
+ "learning_rate": 0.0006,
+ "loss": 4.336228847503662,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.3617904782295227,
+ "learning_rate": 0.0006,
+ "loss": 4.380134582519531,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.3623189628124237,
+ "learning_rate": 0.0006,
+ "loss": 4.340606689453125,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.37112200260162354,
+ "learning_rate": 0.0006,
+ "loss": 4.310943603515625,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.3742401897907257,
+ "learning_rate": 0.0006,
+ "loss": 4.3478593826293945,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.374665230512619,
+ "learning_rate": 0.0006,
+ "loss": 4.4058637619018555,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.38624459505081177,
+ "learning_rate": 0.0006,
+ "loss": 4.348050594329834,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.40541738271713257,
+ "learning_rate": 0.0006,
+ "loss": 4.471852779388428,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.3857991695404053,
+ "learning_rate": 0.0006,
+ "loss": 4.312546253204346,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.41659343242645264,
+ "learning_rate": 0.0006,
+ "loss": 4.315553188323975,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.43697381019592285,
+ "learning_rate": 0.0006,
+ "loss": 4.333539962768555,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.45475196838378906,
+ "learning_rate": 0.0006,
+ "loss": 4.362082481384277,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.4871002733707428,
+ "learning_rate": 0.0006,
+ "loss": 4.328166484832764,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 6.260599136352539,
+ "eval_runtime": 43.7447,
+ "eval_samples_per_second": 55.824,
+ "eval_steps_per_second": 3.498,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.42134732007980347,
+ "learning_rate": 0.0006,
+ "loss": 4.200570106506348,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.44146645069122314,
+ "learning_rate": 0.0006,
+ "loss": 4.219682693481445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.4451248049736023,
+ "learning_rate": 0.0006,
+ "loss": 4.240499496459961,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.45094963908195496,
+ "learning_rate": 0.0006,
+ "loss": 4.252233505249023,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.4750693738460541,
+ "learning_rate": 0.0006,
+ "loss": 4.229597091674805,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.5211004614830017,
+ "learning_rate": 0.0006,
+ "loss": 4.3165435791015625,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.5570583343505859,
+ "learning_rate": 0.0006,
+ "loss": 4.280586242675781,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.543846845626831,
+ "learning_rate": 0.0006,
+ "loss": 4.243165493011475,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.4849488437175751,
+ "learning_rate": 0.0006,
+ "loss": 4.190418243408203,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.485515296459198,
+ "learning_rate": 0.0006,
+ "loss": 4.30844783782959,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.5233704447746277,
+ "learning_rate": 0.0006,
+ "loss": 4.229648590087891,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.5426996946334839,
+ "learning_rate": 0.0006,
+ "loss": 4.31719970703125,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.5974491238594055,
+ "learning_rate": 0.0006,
+ "loss": 4.250443458557129,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.6469011902809143,
+ "learning_rate": 0.0006,
+ "loss": 4.354139804840088,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.7294577360153198,
+ "learning_rate": 0.0006,
+ "loss": 4.3642706871032715,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.6488705277442932,
+ "learning_rate": 0.0006,
+ "loss": 4.275979995727539,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.4984777271747589,
+ "learning_rate": 0.0006,
+ "loss": 4.217861175537109,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.5109938979148865,
+ "learning_rate": 0.0006,
+ "loss": 4.286642074584961,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.49844229221343994,
+ "learning_rate": 0.0006,
+ "loss": 4.238213539123535,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.488077312707901,
+ "learning_rate": 0.0006,
+ "loss": 4.231420040130615,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.4928477704524994,
+ "learning_rate": 0.0006,
+ "loss": 4.380367279052734,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.49250566959381104,
+ "learning_rate": 0.0006,
+ "loss": 4.29306697845459,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.48340678215026855,
+ "learning_rate": 0.0006,
+ "loss": 4.2856645584106445,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.4970073401927948,
+ "learning_rate": 0.0006,
+ "loss": 4.34441614151001,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.4387594759464264,
+ "learning_rate": 0.0006,
+ "loss": 4.350798606872559,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.4448535144329071,
+ "learning_rate": 0.0006,
+ "loss": 4.350264072418213,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.4491334855556488,
+ "learning_rate": 0.0006,
+ "loss": 4.310317039489746,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.4396249055862427,
+ "learning_rate": 0.0006,
+ "loss": 4.3137288093566895,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.42331191897392273,
+ "learning_rate": 0.0006,
+ "loss": 4.283992767333984,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.42483261227607727,
+ "learning_rate": 0.0006,
+ "loss": 4.269024848937988,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.40380987524986267,
+ "learning_rate": 0.0006,
+ "loss": 4.321262836456299,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.4109397530555725,
+ "learning_rate": 0.0006,
+ "loss": 4.285927772521973,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.43696823716163635,
+ "learning_rate": 0.0006,
+ "loss": 4.303576946258545,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.379971444606781,
+ "learning_rate": 0.0006,
+ "loss": 4.388635158538818,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.4044286608695984,
+ "learning_rate": 0.0006,
+ "loss": 4.329499244689941,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.4053935706615448,
+ "learning_rate": 0.0006,
+ "loss": 4.297847747802734,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.38198018074035645,
+ "learning_rate": 0.0006,
+ "loss": 4.288124084472656,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.39832696318626404,
+ "learning_rate": 0.0006,
+ "loss": 4.380218982696533,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.40758490562438965,
+ "learning_rate": 0.0006,
+ "loss": 4.32636833190918,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.3803170621395111,
+ "learning_rate": 0.0006,
+ "loss": 4.30747127532959,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.3853742480278015,
+ "learning_rate": 0.0006,
+ "loss": 4.324460029602051,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.4050910174846649,
+ "learning_rate": 0.0006,
+ "loss": 4.306979179382324,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.4187234342098236,
+ "learning_rate": 0.0006,
+ "loss": 4.334494113922119,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.4233380854129791,
+ "learning_rate": 0.0006,
+ "loss": 4.338802814483643,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.4379981458187103,
+ "learning_rate": 0.0006,
+ "loss": 4.399646759033203,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.4394802749156952,
+ "learning_rate": 0.0006,
+ "loss": 4.33521842956543,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.415715754032135,
+ "learning_rate": 0.0006,
+ "loss": 4.3247880935668945,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.3918288052082062,
+ "learning_rate": 0.0006,
+ "loss": 4.329852104187012,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.40957361459732056,
+ "learning_rate": 0.0006,
+ "loss": 4.266562461853027,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.4475722312927246,
+ "learning_rate": 0.0006,
+ "loss": 4.513836860656738,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.44053083658218384,
+ "learning_rate": 0.0006,
+ "loss": 4.305239677429199,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.4229199290275574,
+ "learning_rate": 0.0006,
+ "loss": 4.347291946411133,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.4058760106563568,
+ "learning_rate": 0.0006,
+ "loss": 4.377959251403809,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.4245327115058899,
+ "learning_rate": 0.0006,
+ "loss": 4.363465309143066,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.4446028470993042,
+ "learning_rate": 0.0006,
+ "loss": 4.4517316818237305,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.40111324191093445,
+ "learning_rate": 0.0006,
+ "loss": 4.294158935546875,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.39330703020095825,
+ "learning_rate": 0.0006,
+ "loss": 4.329209327697754,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.4327717423439026,
+ "learning_rate": 0.0006,
+ "loss": 4.349915027618408,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.411691814661026,
+ "learning_rate": 0.0006,
+ "loss": 4.441436290740967,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.39029157161712646,
+ "learning_rate": 0.0006,
+ "loss": 4.339478492736816,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.4064500331878662,
+ "learning_rate": 0.0006,
+ "loss": 4.3008952140808105,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.40196365118026733,
+ "learning_rate": 0.0006,
+ "loss": 4.278536319732666,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.3925584554672241,
+ "learning_rate": 0.0006,
+ "loss": 4.351866722106934,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.37795954942703247,
+ "learning_rate": 0.0006,
+ "loss": 4.40715217590332,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.3920917510986328,
+ "learning_rate": 0.0006,
+ "loss": 4.303398132324219,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.3982515335083008,
+ "learning_rate": 0.0006,
+ "loss": 4.397731304168701,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.41097545623779297,
+ "learning_rate": 0.0006,
+ "loss": 4.372936248779297,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.38546738028526306,
+ "learning_rate": 0.0006,
+ "loss": 4.36802339553833,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.3931894302368164,
+ "learning_rate": 0.0006,
+ "loss": 4.397665023803711,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.37862512469291687,
+ "learning_rate": 0.0006,
+ "loss": 4.356085777282715,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.41227665543556213,
+ "learning_rate": 0.0006,
+ "loss": 4.4159650802612305,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.499416321516037,
+ "learning_rate": 0.0006,
+ "loss": 4.329807281494141,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 6.198739051818848,
+ "eval_runtime": 43.6864,
+ "eval_samples_per_second": 55.898,
+ "eval_steps_per_second": 3.502,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.4628259837627411,
+ "learning_rate": 0.0006,
+ "loss": 4.170797824859619,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.4806155860424042,
+ "learning_rate": 0.0006,
+ "loss": 4.2210259437561035,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.4822350740432739,
+ "learning_rate": 0.0006,
+ "loss": 4.23138952255249,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.286277770996094,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.5044941306114197,
+ "learning_rate": 0.0006,
+ "loss": 4.232921600341797,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.5530663132667542,
+ "learning_rate": 0.0006,
+ "loss": 4.221680641174316,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.5776026844978333,
+ "learning_rate": 0.0006,
+ "loss": 4.213212966918945,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.6634025573730469,
+ "learning_rate": 0.0006,
+ "loss": 4.319071292877197,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.76152503490448,
+ "learning_rate": 0.0006,
+ "loss": 4.214156150817871,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.8480479717254639,
+ "learning_rate": 0.0006,
+ "loss": 4.321653842926025,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.9160254001617432,
+ "learning_rate": 0.0006,
+ "loss": 4.33962869644165,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.8524528741836548,
+ "learning_rate": 0.0006,
+ "loss": 4.268365859985352,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.7075300216674805,
+ "learning_rate": 0.0006,
+ "loss": 4.306760311126709,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.6349018216133118,
+ "learning_rate": 0.0006,
+ "loss": 4.333056926727295,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.5707677006721497,
+ "learning_rate": 0.0006,
+ "loss": 4.32132625579834,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.5484790205955505,
+ "learning_rate": 0.0006,
+ "loss": 4.3016767501831055,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.5517436861991882,
+ "learning_rate": 0.0006,
+ "loss": 4.295352935791016,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.5682413578033447,
+ "learning_rate": 0.0006,
+ "loss": 4.302443504333496,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.5568698644638062,
+ "learning_rate": 0.0006,
+ "loss": 4.328906059265137,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.5146242380142212,
+ "learning_rate": 0.0006,
+ "loss": 4.314318656921387,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.4866996705532074,
+ "learning_rate": 0.0006,
+ "loss": 4.321515083312988,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.47854411602020264,
+ "learning_rate": 0.0006,
+ "loss": 4.336956977844238,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.48322951793670654,
+ "learning_rate": 0.0006,
+ "loss": 4.270317554473877,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.4432683289051056,
+ "learning_rate": 0.0006,
+ "loss": 4.3168792724609375,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.42538025975227356,
+ "learning_rate": 0.0006,
+ "loss": 4.236387729644775,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.4699258804321289,
+ "learning_rate": 0.0006,
+ "loss": 4.372434616088867,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.4574076235294342,
+ "learning_rate": 0.0006,
+ "loss": 4.347474098205566,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.42455345392227173,
+ "learning_rate": 0.0006,
+ "loss": 4.345785140991211,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.4194679260253906,
+ "learning_rate": 0.0006,
+ "loss": 4.326481819152832,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.4357808828353882,
+ "learning_rate": 0.0006,
+ "loss": 4.3457183837890625,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.4160650670528412,
+ "learning_rate": 0.0006,
+ "loss": 4.24708890914917,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.4105308949947357,
+ "learning_rate": 0.0006,
+ "loss": 4.3586530685424805,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.399740993976593,
+ "learning_rate": 0.0006,
+ "loss": 4.352291584014893,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.39557352662086487,
+ "learning_rate": 0.0006,
+ "loss": 4.284960746765137,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.4299493134021759,
+ "learning_rate": 0.0006,
+ "loss": 4.285758018493652,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.4042324721813202,
+ "learning_rate": 0.0006,
+ "loss": 4.357293605804443,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.396954745054245,
+ "learning_rate": 0.0006,
+ "loss": 4.2686262130737305,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.3821943998336792,
+ "learning_rate": 0.0006,
+ "loss": 4.357154846191406,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.3846510648727417,
+ "learning_rate": 0.0006,
+ "loss": 4.323714256286621,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.37851205468177795,
+ "learning_rate": 0.0006,
+ "loss": 4.341939926147461,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.37929001450538635,
+ "learning_rate": 0.0006,
+ "loss": 4.248264312744141,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.3882073163986206,
+ "learning_rate": 0.0006,
+ "loss": 4.307059288024902,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.38127774000167847,
+ "learning_rate": 0.0006,
+ "loss": 4.363462448120117,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.3818758726119995,
+ "learning_rate": 0.0006,
+ "loss": 4.322787284851074,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.389406681060791,
+ "learning_rate": 0.0006,
+ "loss": 4.457492828369141,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.38305217027664185,
+ "learning_rate": 0.0006,
+ "loss": 4.306647300720215,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.3900682032108307,
+ "learning_rate": 0.0006,
+ "loss": 4.331067085266113,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.38036227226257324,
+ "learning_rate": 0.0006,
+ "loss": 4.264892578125,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.39323344826698303,
+ "learning_rate": 0.0006,
+ "loss": 4.365866661071777,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.4049435257911682,
+ "learning_rate": 0.0006,
+ "loss": 4.381568908691406,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.4216940701007843,
+ "learning_rate": 0.0006,
+ "loss": 4.364271640777588,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.42422112822532654,
+ "learning_rate": 0.0006,
+ "loss": 4.400199890136719,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.3819519281387329,
+ "learning_rate": 0.0006,
+ "loss": 4.257974147796631,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.4014202654361725,
+ "learning_rate": 0.0006,
+ "loss": 4.329166889190674,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.39812493324279785,
+ "learning_rate": 0.0006,
+ "loss": 4.372607231140137,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.3916856050491333,
+ "learning_rate": 0.0006,
+ "loss": 4.385530471801758,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.4020134508609772,
+ "learning_rate": 0.0006,
+ "loss": 4.3358330726623535,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.3931422829627991,
+ "learning_rate": 0.0006,
+ "loss": 4.381669521331787,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.37799912691116333,
+ "learning_rate": 0.0006,
+ "loss": 4.392168998718262,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.39257925748825073,
+ "learning_rate": 0.0006,
+ "loss": 4.4379096031188965,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.39501482248306274,
+ "learning_rate": 0.0006,
+ "loss": 4.323174953460693,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.3914605677127838,
+ "learning_rate": 0.0006,
+ "loss": 4.365396022796631,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.3778083026409149,
+ "learning_rate": 0.0006,
+ "loss": 4.3220720291137695,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.3911595344543457,
+ "learning_rate": 0.0006,
+ "loss": 4.323670864105225,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.3692200779914856,
+ "learning_rate": 0.0006,
+ "loss": 4.341980934143066,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.3713432848453522,
+ "learning_rate": 0.0006,
+ "loss": 4.304820537567139,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.37348702549934387,
+ "learning_rate": 0.0006,
+ "loss": 4.326486587524414,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.3943784236907959,
+ "learning_rate": 0.0006,
+ "loss": 4.374529838562012,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.4153553247451782,
+ "learning_rate": 0.0006,
+ "loss": 4.392250061035156,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.3885365426540375,
+ "learning_rate": 0.0006,
+ "loss": 4.322462558746338,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.3777163326740265,
+ "learning_rate": 0.0006,
+ "loss": 4.399444103240967,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.45014286041259766,
+ "learning_rate": 0.0006,
+ "loss": 4.266523361206055,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 6.2529473304748535,
+ "eval_runtime": 43.7478,
+ "eval_samples_per_second": 55.82,
+ "eval_steps_per_second": 3.497,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.4145124852657318,
+ "learning_rate": 0.0006,
+ "loss": 4.266193389892578,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.44340333342552185,
+ "learning_rate": 0.0006,
+ "loss": 4.134491443634033,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.4580900967121124,
+ "learning_rate": 0.0006,
+ "loss": 4.287178993225098,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.47761040925979614,
+ "learning_rate": 0.0006,
+ "loss": 4.429558277130127,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.46682101488113403,
+ "learning_rate": 0.0006,
+ "loss": 4.317314147949219,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.4769667685031891,
+ "learning_rate": 0.0006,
+ "loss": 4.290413856506348,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.539111316204071,
+ "learning_rate": 0.0006,
+ "loss": 4.240926742553711,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.6831890344619751,
+ "learning_rate": 0.0006,
+ "loss": 4.204584121704102,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.749098539352417,
+ "learning_rate": 0.0006,
+ "loss": 4.25895881652832,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.7921332120895386,
+ "learning_rate": 0.0006,
+ "loss": 4.339118003845215,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.7587332725524902,
+ "learning_rate": 0.0006,
+ "loss": 4.2877516746521,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.6472265124320984,
+ "learning_rate": 0.0006,
+ "loss": 4.2839131355285645,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.5472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.346395492553711,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.6083328723907471,
+ "learning_rate": 0.0006,
+ "loss": 4.240531921386719,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.5928010940551758,
+ "learning_rate": 0.0006,
+ "loss": 4.347572326660156,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.532841145992279,
+ "learning_rate": 0.0006,
+ "loss": 4.281345844268799,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.4778757691383362,
+ "learning_rate": 0.0006,
+ "loss": 4.279055118560791,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.48648887872695923,
+ "learning_rate": 0.0006,
+ "loss": 4.198624610900879,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.43191879987716675,
+ "learning_rate": 0.0006,
+ "loss": 4.236109733581543,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.45012032985687256,
+ "learning_rate": 0.0006,
+ "loss": 4.323042869567871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.4548600912094116,
+ "learning_rate": 0.0006,
+ "loss": 4.2210235595703125,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.45999664068222046,
+ "learning_rate": 0.0006,
+ "loss": 4.2899250984191895,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.4702019691467285,
+ "learning_rate": 0.0006,
+ "loss": 4.3281145095825195,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.4921978712081909,
+ "learning_rate": 0.0006,
+ "loss": 4.310947418212891,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.4662175178527832,
+ "learning_rate": 0.0006,
+ "loss": 4.191643714904785,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.46207281947135925,
+ "learning_rate": 0.0006,
+ "loss": 4.423742771148682,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.46523746848106384,
+ "learning_rate": 0.0006,
+ "loss": 4.321560859680176,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.42817118763923645,
+ "learning_rate": 0.0006,
+ "loss": 4.275110244750977,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.4028136134147644,
+ "learning_rate": 0.0006,
+ "loss": 4.26282262802124,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.39602214097976685,
+ "learning_rate": 0.0006,
+ "loss": 4.350768089294434,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.4017263948917389,
+ "learning_rate": 0.0006,
+ "loss": 4.2504682540893555,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.4112628996372223,
+ "learning_rate": 0.0006,
+ "loss": 4.262454986572266,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.44213998317718506,
+ "learning_rate": 0.0006,
+ "loss": 4.33111572265625,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.4273027777671814,
+ "learning_rate": 0.0006,
+ "loss": 4.241754055023193,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.42171111702919006,
+ "learning_rate": 0.0006,
+ "loss": 4.3793134689331055,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.4059634506702423,
+ "learning_rate": 0.0006,
+ "loss": 4.267672538757324,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.40447160601615906,
+ "learning_rate": 0.0006,
+ "loss": 4.282671928405762,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.39427000284194946,
+ "learning_rate": 0.0006,
+ "loss": 4.286433219909668,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.3932870924472809,
+ "learning_rate": 0.0006,
+ "loss": 4.31290340423584,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.37661924958229065,
+ "learning_rate": 0.0006,
+ "loss": 4.262170791625977,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.40946775674819946,
+ "learning_rate": 0.0006,
+ "loss": 4.303168296813965,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.3941985070705414,
+ "learning_rate": 0.0006,
+ "loss": 4.310337066650391,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.40164992213249207,
+ "learning_rate": 0.0006,
+ "loss": 4.312982559204102,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.3975890874862671,
+ "learning_rate": 0.0006,
+ "loss": 4.3248701095581055,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.38574227690696716,
+ "learning_rate": 0.0006,
+ "loss": 4.38369083404541,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.3992249667644501,
+ "learning_rate": 0.0006,
+ "loss": 4.297112464904785,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.39868417382240295,
+ "learning_rate": 0.0006,
+ "loss": 4.295505046844482,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.4101839065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.3519697189331055,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.379717081785202,
+ "learning_rate": 0.0006,
+ "loss": 4.2289581298828125,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.3912242352962494,
+ "learning_rate": 0.0006,
+ "loss": 4.40312385559082,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.3885950446128845,
+ "learning_rate": 0.0006,
+ "loss": 4.286848068237305,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.3892953097820282,
+ "learning_rate": 0.0006,
+ "loss": 4.292012691497803,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.38809701800346375,
+ "learning_rate": 0.0006,
+ "loss": 4.374564170837402,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.3903641700744629,
+ "learning_rate": 0.0006,
+ "loss": 4.394603729248047,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.39104169607162476,
+ "learning_rate": 0.0006,
+ "loss": 4.35471773147583,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.3975231349468231,
+ "learning_rate": 0.0006,
+ "loss": 4.382683753967285,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.40965917706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.367456436157227,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.4243786633014679,
+ "learning_rate": 0.0006,
+ "loss": 4.367887020111084,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.40315696597099304,
+ "learning_rate": 0.0006,
+ "loss": 4.300185203552246,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.41343727707862854,
+ "learning_rate": 0.0006,
+ "loss": 4.331711292266846,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.40250977873802185,
+ "learning_rate": 0.0006,
+ "loss": 4.3398590087890625,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.38862133026123047,
+ "learning_rate": 0.0006,
+ "loss": 4.272953033447266,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.39667993783950806,
+ "learning_rate": 0.0006,
+ "loss": 4.47554874420166,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.41999825835227966,
+ "learning_rate": 0.0006,
+ "loss": 4.263052940368652,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.4195004105567932,
+ "learning_rate": 0.0006,
+ "loss": 4.330724716186523,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.3944961130619049,
+ "learning_rate": 0.0006,
+ "loss": 4.3109002113342285,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.3944008946418762,
+ "learning_rate": 0.0006,
+ "loss": 4.298914432525635,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.4016371965408325,
+ "learning_rate": 0.0006,
+ "loss": 4.346005439758301,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.38281115889549255,
+ "learning_rate": 0.0006,
+ "loss": 4.332263946533203,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.36780816316604614,
+ "learning_rate": 0.0006,
+ "loss": 4.356542587280273,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.37247809767723083,
+ "learning_rate": 0.0006,
+ "loss": 4.244487285614014,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.4414741098880768,
+ "learning_rate": 0.0006,
+ "loss": 4.326817035675049,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 6.229246616363525,
+ "eval_runtime": 43.7873,
+ "eval_samples_per_second": 55.77,
+ "eval_steps_per_second": 3.494,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.3957669138908386,
+ "learning_rate": 0.0006,
+ "loss": 4.263937950134277,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.4236466586589813,
+ "learning_rate": 0.0006,
+ "loss": 4.222219467163086,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.47564026713371277,
+ "learning_rate": 0.0006,
+ "loss": 4.266385555267334,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.5004186630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.262574195861816,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.592176616191864,
+ "learning_rate": 0.0006,
+ "loss": 4.225201606750488,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.7019115090370178,
+ "learning_rate": 0.0006,
+ "loss": 4.23977518081665,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.8254161477088928,
+ "learning_rate": 0.0006,
+ "loss": 4.227803707122803,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.8682525753974915,
+ "learning_rate": 0.0006,
+ "loss": 4.321664810180664,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.9065311551094055,
+ "learning_rate": 0.0006,
+ "loss": 4.253820419311523,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.8974156975746155,
+ "learning_rate": 0.0006,
+ "loss": 4.3650312423706055,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.7837588787078857,
+ "learning_rate": 0.0006,
+ "loss": 4.283933639526367,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.7024438381195068,
+ "learning_rate": 0.0006,
+ "loss": 4.258434772491455,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.625393271446228,
+ "learning_rate": 0.0006,
+ "loss": 4.23687744140625,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.5788878202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.234710693359375,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.5580928325653076,
+ "learning_rate": 0.0006,
+ "loss": 4.29906702041626,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.48748156428337097,
+ "learning_rate": 0.0006,
+ "loss": 4.226408958435059,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.4848710298538208,
+ "learning_rate": 0.0006,
+ "loss": 4.2123122215271,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.5063420534133911,
+ "learning_rate": 0.0006,
+ "loss": 4.255153656005859,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.5110829472541809,
+ "learning_rate": 0.0006,
+ "loss": 4.358216285705566,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.49089232087135315,
+ "learning_rate": 0.0006,
+ "loss": 4.300388813018799,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.4603854715824127,
+ "learning_rate": 0.0006,
+ "loss": 4.2832136154174805,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.4599403440952301,
+ "learning_rate": 0.0006,
+ "loss": 4.295095443725586,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.4395982623100281,
+ "learning_rate": 0.0006,
+ "loss": 4.26538610458374,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.41270455718040466,
+ "learning_rate": 0.0006,
+ "loss": 4.2344889640808105,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.42688557505607605,
+ "learning_rate": 0.0006,
+ "loss": 4.207379341125488,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.4363268315792084,
+ "learning_rate": 0.0006,
+ "loss": 4.30502462387085,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.42514753341674805,
+ "learning_rate": 0.0006,
+ "loss": 4.3195905685424805,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.3887978494167328,
+ "learning_rate": 0.0006,
+ "loss": 4.23016357421875,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.39444148540496826,
+ "learning_rate": 0.0006,
+ "loss": 4.265226364135742,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.41804856061935425,
+ "learning_rate": 0.0006,
+ "loss": 4.399003028869629,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.4026116132736206,
+ "learning_rate": 0.0006,
+ "loss": 4.356629371643066,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.4023478329181671,
+ "learning_rate": 0.0006,
+ "loss": 4.379050254821777,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.39880287647247314,
+ "learning_rate": 0.0006,
+ "loss": 4.277581214904785,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.38926973938941956,
+ "learning_rate": 0.0006,
+ "loss": 4.2318902015686035,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.3924587368965149,
+ "learning_rate": 0.0006,
+ "loss": 4.329956531524658,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.40522003173828125,
+ "learning_rate": 0.0006,
+ "loss": 4.315302848815918,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.3916785418987274,
+ "learning_rate": 0.0006,
+ "loss": 4.319087505340576,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.419207364320755,
+ "learning_rate": 0.0006,
+ "loss": 4.373052597045898,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.3973175287246704,
+ "learning_rate": 0.0006,
+ "loss": 4.323544025421143,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.37236395478248596,
+ "learning_rate": 0.0006,
+ "loss": 4.206120491027832,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.385455846786499,
+ "learning_rate": 0.0006,
+ "loss": 4.294527053833008,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.3870242238044739,
+ "learning_rate": 0.0006,
+ "loss": 4.221030235290527,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.3881280720233917,
+ "learning_rate": 0.0006,
+ "loss": 4.233551025390625,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.3722829818725586,
+ "learning_rate": 0.0006,
+ "loss": 4.257683277130127,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.375012069940567,
+ "learning_rate": 0.0006,
+ "loss": 4.350418567657471,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.38077789545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.192095756530762,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.3906152844429016,
+ "learning_rate": 0.0006,
+ "loss": 4.357870578765869,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.3887590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.318536281585693,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.3828654885292053,
+ "learning_rate": 0.0006,
+ "loss": 4.28328800201416,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.39694708585739136,
+ "learning_rate": 0.0006,
+ "loss": 4.391949653625488,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.3975147604942322,
+ "learning_rate": 0.0006,
+ "loss": 4.352961540222168,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.3841004967689514,
+ "learning_rate": 0.0006,
+ "loss": 4.228391647338867,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.3807359039783478,
+ "learning_rate": 0.0006,
+ "loss": 4.22756290435791,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.3987439274787903,
+ "learning_rate": 0.0006,
+ "loss": 4.407889366149902,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.4201034605503082,
+ "learning_rate": 0.0006,
+ "loss": 4.34971809387207,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.4346381723880768,
+ "learning_rate": 0.0006,
+ "loss": 4.293330192565918,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.44999462366104126,
+ "learning_rate": 0.0006,
+ "loss": 4.417044162750244,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.38561612367630005,
+ "learning_rate": 0.0006,
+ "loss": 4.258061408996582,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.3790895938873291,
+ "learning_rate": 0.0006,
+ "loss": 4.321300029754639,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.3984527289867401,
+ "learning_rate": 0.0006,
+ "loss": 4.247694969177246,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.42955538630485535,
+ "learning_rate": 0.0006,
+ "loss": 4.343568325042725,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.40776535868644714,
+ "learning_rate": 0.0006,
+ "loss": 4.34933614730835,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.39172181487083435,
+ "learning_rate": 0.0006,
+ "loss": 4.379310607910156,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.40323659777641296,
+ "learning_rate": 0.0006,
+ "loss": 4.268922805786133,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.4012514352798462,
+ "learning_rate": 0.0006,
+ "loss": 4.363704681396484,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.39983171224594116,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.39482736587524414,
+ "learning_rate": 0.0006,
+ "loss": 4.338078022003174,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.40444278717041016,
+ "learning_rate": 0.0006,
+ "loss": 4.373770713806152,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.3808857500553131,
+ "learning_rate": 0.0006,
+ "loss": 4.326850891113281,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.38284221291542053,
+ "learning_rate": 0.0006,
+ "loss": 4.389925956726074,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.3825092613697052,
+ "learning_rate": 0.0006,
+ "loss": 4.389588356018066,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.4557396471500397,
+ "learning_rate": 0.0006,
+ "loss": 4.302459239959717,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 6.270473480224609,
+ "eval_runtime": 43.6892,
+ "eval_samples_per_second": 55.895,
+ "eval_steps_per_second": 3.502,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.4212155044078827,
+ "learning_rate": 0.0006,
+ "loss": 4.3081440925598145,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.4590097963809967,
+ "learning_rate": 0.0006,
+ "loss": 4.150710582733154,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.4502851963043213,
+ "learning_rate": 0.0006,
+ "loss": 4.238507270812988,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.44205573201179504,
+ "learning_rate": 0.0006,
+ "loss": 4.202637672424316,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.5142990946769714,
+ "learning_rate": 0.0006,
+ "loss": 4.325977325439453,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.5224044919013977,
+ "learning_rate": 0.0006,
+ "loss": 4.265192031860352,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.5608325004577637,
+ "learning_rate": 0.0006,
+ "loss": 4.295414924621582,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.6955265402793884,
+ "learning_rate": 0.0006,
+ "loss": 4.218759536743164,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.868670642375946,
+ "learning_rate": 0.0006,
+ "loss": 4.220717430114746,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 1.0042238235473633,
+ "learning_rate": 0.0006,
+ "loss": 4.290093421936035,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.9413097500801086,
+ "learning_rate": 0.0006,
+ "loss": 4.324940204620361,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.697178304195404,
+ "learning_rate": 0.0006,
+ "loss": 4.301477909088135,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.7008699774742126,
+ "learning_rate": 0.0006,
+ "loss": 4.2905120849609375,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.6534171104431152,
+ "learning_rate": 0.0006,
+ "loss": 4.20712947845459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.6290929317474365,
+ "learning_rate": 0.0006,
+ "loss": 4.229743003845215,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.5494177341461182,
+ "learning_rate": 0.0006,
+ "loss": 4.185794353485107,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.5147525072097778,
+ "learning_rate": 0.0006,
+ "loss": 4.26673698425293,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.5048599243164062,
+ "learning_rate": 0.0006,
+ "loss": 4.210233211517334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.5414654016494751,
+ "learning_rate": 0.0006,
+ "loss": 4.333046913146973,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.47082704305648804,
+ "learning_rate": 0.0006,
+ "loss": 4.301358699798584,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.4675837755203247,
+ "learning_rate": 0.0006,
+ "loss": 4.204195022583008,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.4378611743450165,
+ "learning_rate": 0.0006,
+ "loss": 4.155127048492432,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.4415567219257355,
+ "learning_rate": 0.0006,
+ "loss": 4.2721967697143555,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.47591230273246765,
+ "learning_rate": 0.0006,
+ "loss": 4.358033180236816,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.4658828675746918,
+ "learning_rate": 0.0006,
+ "loss": 4.294735908508301,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.4501555860042572,
+ "learning_rate": 0.0006,
+ "loss": 4.263189315795898,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.46739140152931213,
+ "learning_rate": 0.0006,
+ "loss": 4.32848596572876,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.45165732502937317,
+ "learning_rate": 0.0006,
+ "loss": 4.267234802246094,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.409282922744751,
+ "learning_rate": 0.0006,
+ "loss": 4.285059928894043,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.42865875363349915,
+ "learning_rate": 0.0006,
+ "loss": 4.227115631103516,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.4552954137325287,
+ "learning_rate": 0.0006,
+ "loss": 4.325474739074707,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.42055317759513855,
+ "learning_rate": 0.0006,
+ "loss": 4.2007951736450195,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.4279162287712097,
+ "learning_rate": 0.0006,
+ "loss": 4.359176158905029,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.4455033540725708,
+ "learning_rate": 0.0006,
+ "loss": 4.275487899780273,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.43002691864967346,
+ "learning_rate": 0.0006,
+ "loss": 4.181482315063477,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.44032880663871765,
+ "learning_rate": 0.0006,
+ "loss": 4.36613655090332,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.4100615680217743,
+ "learning_rate": 0.0006,
+ "loss": 4.265050411224365,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.39392155408859253,
+ "learning_rate": 0.0006,
+ "loss": 4.325000762939453,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.4347812533378601,
+ "learning_rate": 0.0006,
+ "loss": 4.307058334350586,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.42177414894104004,
+ "learning_rate": 0.0006,
+ "loss": 4.270357131958008,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.431207537651062,
+ "learning_rate": 0.0006,
+ "loss": 4.414610862731934,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.4254903495311737,
+ "learning_rate": 0.0006,
+ "loss": 4.285326957702637,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.4089864194393158,
+ "learning_rate": 0.0006,
+ "loss": 4.275937080383301,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.4102814197540283,
+ "learning_rate": 0.0006,
+ "loss": 4.303900718688965,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.3859243094921112,
+ "learning_rate": 0.0006,
+ "loss": 4.215274333953857,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.4012472331523895,
+ "learning_rate": 0.0006,
+ "loss": 4.328278541564941,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.4047054648399353,
+ "learning_rate": 0.0006,
+ "loss": 4.276683807373047,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.4050472676753998,
+ "learning_rate": 0.0006,
+ "loss": 4.302199363708496,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.40645819902420044,
+ "learning_rate": 0.0006,
+ "loss": 4.401165008544922,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.3888589143753052,
+ "learning_rate": 0.0006,
+ "loss": 4.258542060852051,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.3865634500980377,
+ "learning_rate": 0.0006,
+ "loss": 4.224770545959473,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.40157631039619446,
+ "learning_rate": 0.0006,
+ "loss": 4.321439743041992,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.4097841680049896,
+ "learning_rate": 0.0006,
+ "loss": 4.436502456665039,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.4125346541404724,
+ "learning_rate": 0.0006,
+ "loss": 4.3067522048950195,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.39692872762680054,
+ "learning_rate": 0.0006,
+ "loss": 4.338959693908691,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.3942561149597168,
+ "learning_rate": 0.0006,
+ "loss": 4.29915714263916,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.3940109610557556,
+ "learning_rate": 0.0006,
+ "loss": 4.343454360961914,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.39725086092948914,
+ "learning_rate": 0.0006,
+ "loss": 4.294066429138184,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.3779081702232361,
+ "learning_rate": 0.0006,
+ "loss": 4.2644758224487305,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.37665313482284546,
+ "learning_rate": 0.0006,
+ "loss": 4.3241119384765625,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.394426167011261,
+ "learning_rate": 0.0006,
+ "loss": 4.391383647918701,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.3948868215084076,
+ "learning_rate": 0.0006,
+ "loss": 4.336596965789795,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.4218588173389435,
+ "learning_rate": 0.0006,
+ "loss": 4.268021583557129,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.3900219202041626,
+ "learning_rate": 0.0006,
+ "loss": 4.323431015014648,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.3683486580848694,
+ "learning_rate": 0.0006,
+ "loss": 4.283624649047852,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.3842235803604126,
+ "learning_rate": 0.0006,
+ "loss": 4.302942752838135,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.40175142884254456,
+ "learning_rate": 0.0006,
+ "loss": 4.394964218139648,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.4041447639465332,
+ "learning_rate": 0.0006,
+ "loss": 4.355955600738525,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.38710159063339233,
+ "learning_rate": 0.0006,
+ "loss": 4.340442180633545,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.38841989636421204,
+ "learning_rate": 0.0006,
+ "loss": 4.380399703979492,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.41300448775291443,
+ "learning_rate": 0.0006,
+ "loss": 4.321839332580566,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.49495911598205566,
+ "learning_rate": 0.0006,
+ "loss": 4.293513774871826,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 6.327922344207764,
+ "eval_runtime": 43.7769,
+ "eval_samples_per_second": 55.783,
+ "eval_steps_per_second": 3.495,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.4602355659008026,
+ "learning_rate": 0.0006,
+ "loss": 4.2585554122924805,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.4733062982559204,
+ "learning_rate": 0.0006,
+ "loss": 4.237922191619873,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.4390600025653839,
+ "learning_rate": 0.0006,
+ "loss": 4.159769058227539,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.44887402653694153,
+ "learning_rate": 0.0006,
+ "loss": 4.2117743492126465,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.4746656119823456,
+ "learning_rate": 0.0006,
+ "loss": 4.22344446182251,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.4502047598361969,
+ "learning_rate": 0.0006,
+ "loss": 4.179043769836426,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.4669528603553772,
+ "learning_rate": 0.0006,
+ "loss": 4.242807388305664,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.48304441571235657,
+ "learning_rate": 0.0006,
+ "loss": 4.243523597717285,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.4745117425918579,
+ "learning_rate": 0.0006,
+ "loss": 4.271031856536865,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.42403295636177063,
+ "learning_rate": 0.0006,
+ "loss": 4.231593132019043,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.4177025556564331,
+ "learning_rate": 0.0006,
+ "loss": 4.1239848136901855,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.44315826892852783,
+ "learning_rate": 0.0006,
+ "loss": 4.293359279632568,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.4518056809902191,
+ "learning_rate": 0.0006,
+ "loss": 4.238755226135254,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.4481995701789856,
+ "learning_rate": 0.0006,
+ "loss": 4.10948371887207,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.4367348253726959,
+ "learning_rate": 0.0006,
+ "loss": 4.289554595947266,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.41825398802757263,
+ "learning_rate": 0.0006,
+ "loss": 4.201297760009766,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.4390457570552826,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.4219510853290558,
+ "learning_rate": 0.0006,
+ "loss": 4.234352111816406,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.4195581078529358,
+ "learning_rate": 0.0006,
+ "loss": 4.213441371917725,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.4425918459892273,
+ "learning_rate": 0.0006,
+ "loss": 4.268826007843018,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.4734676778316498,
+ "learning_rate": 0.0006,
+ "loss": 4.266847610473633,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.48404407501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.241931915283203,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.4946669936180115,
+ "learning_rate": 0.0006,
+ "loss": 4.250909805297852,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.47972625494003296,
+ "learning_rate": 0.0006,
+ "loss": 4.195961952209473,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.4569213390350342,
+ "learning_rate": 0.0006,
+ "loss": 4.296036720275879,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.4644681215286255,
+ "learning_rate": 0.0006,
+ "loss": 4.216559410095215,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.48317641019821167,
+ "learning_rate": 0.0006,
+ "loss": 4.3226318359375,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.5122473835945129,
+ "learning_rate": 0.0006,
+ "loss": 4.366876602172852,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.5485180020332336,
+ "learning_rate": 0.0006,
+ "loss": 4.2639265060424805,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.5493056774139404,
+ "learning_rate": 0.0006,
+ "loss": 4.315012454986572,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.5442193150520325,
+ "learning_rate": 0.0006,
+ "loss": 4.293516159057617,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.5160698294639587,
+ "learning_rate": 0.0006,
+ "loss": 4.203614234924316,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.4583905041217804,
+ "learning_rate": 0.0006,
+ "loss": 4.204253673553467,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.47937676310539246,
+ "learning_rate": 0.0006,
+ "loss": 4.225821495056152,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.4585326611995697,
+ "learning_rate": 0.0006,
+ "loss": 4.27936315536499,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.4224967658519745,
+ "learning_rate": 0.0006,
+ "loss": 4.396998405456543,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.43489396572113037,
+ "learning_rate": 0.0006,
+ "loss": 4.321684837341309,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.43469369411468506,
+ "learning_rate": 0.0006,
+ "loss": 4.333868980407715,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.4171457588672638,
+ "learning_rate": 0.0006,
+ "loss": 4.212692737579346,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.40925848484039307,
+ "learning_rate": 0.0006,
+ "loss": 4.354894638061523,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.42900922894477844,
+ "learning_rate": 0.0006,
+ "loss": 4.309920310974121,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.42338159680366516,
+ "learning_rate": 0.0006,
+ "loss": 4.2942705154418945,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.4057067930698395,
+ "learning_rate": 0.0006,
+ "loss": 4.214710235595703,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.4072226583957672,
+ "learning_rate": 0.0006,
+ "loss": 4.312472343444824,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.3916485905647278,
+ "learning_rate": 0.0006,
+ "loss": 4.237615585327148,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.42151209712028503,
+ "learning_rate": 0.0006,
+ "loss": 4.377703666687012,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.44910693168640137,
+ "learning_rate": 0.0006,
+ "loss": 4.425722122192383,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.46527767181396484,
+ "learning_rate": 0.0006,
+ "loss": 4.26363468170166,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.45423775911331177,
+ "learning_rate": 0.0006,
+ "loss": 4.219768047332764,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.4229055345058441,
+ "learning_rate": 0.0006,
+ "loss": 4.2751007080078125,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.4136784076690674,
+ "learning_rate": 0.0006,
+ "loss": 4.256582736968994,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.42408230900764465,
+ "learning_rate": 0.0006,
+ "loss": 4.341879844665527,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.4360068142414093,
+ "learning_rate": 0.0006,
+ "loss": 4.2564802169799805,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.4251601994037628,
+ "learning_rate": 0.0006,
+ "loss": 4.370902061462402,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.4240182936191559,
+ "learning_rate": 0.0006,
+ "loss": 4.357310771942139,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.40821802616119385,
+ "learning_rate": 0.0006,
+ "loss": 4.299274444580078,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.42971381545066833,
+ "learning_rate": 0.0006,
+ "loss": 4.339339256286621,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.4170750677585602,
+ "learning_rate": 0.0006,
+ "loss": 4.295743942260742,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.4416576027870178,
+ "learning_rate": 0.0006,
+ "loss": 4.31326961517334,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.43994101881980896,
+ "learning_rate": 0.0006,
+ "loss": 4.286459922790527,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.43738171458244324,
+ "learning_rate": 0.0006,
+ "loss": 4.3276166915893555,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.42107513546943665,
+ "learning_rate": 0.0006,
+ "loss": 4.276320457458496,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.4138924479484558,
+ "learning_rate": 0.0006,
+ "loss": 4.263800621032715,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.4136491119861603,
+ "learning_rate": 0.0006,
+ "loss": 4.3641462326049805,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.4299047291278839,
+ "learning_rate": 0.0006,
+ "loss": 4.395074844360352,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.4680858552455902,
+ "learning_rate": 0.0006,
+ "loss": 4.29918098449707,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.5115722417831421,
+ "learning_rate": 0.0006,
+ "loss": 4.317390441894531,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.49535948038101196,
+ "learning_rate": 0.0006,
+ "loss": 4.311214447021484,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.44336947798728943,
+ "learning_rate": 0.0006,
+ "loss": 4.410158157348633,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.41606271266937256,
+ "learning_rate": 0.0006,
+ "loss": 4.303007125854492,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.3919375538825989,
+ "learning_rate": 0.0006,
+ "loss": 4.271506309509277,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.4847380518913269,
+ "learning_rate": 0.0006,
+ "loss": 4.368446350097656,
+ "step": 5760
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.4546183350530867e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-5760/training_args.bin b/runs/i5-fulle-lm/checkpoint-5760/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-5760/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-6048/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-6048/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/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/i5-fulle-lm/checkpoint-6048/config.json b/runs/i5-fulle-lm/checkpoint-6048/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6048/generation_config.json b/runs/i5-fulle-lm/checkpoint-6048/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6048/model.safetensors b/runs/i5-fulle-lm/checkpoint-6048/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..77a27f2e90ebcabc84dea882ca3e86a608659d03
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c1db7d2280f317fd7558005a2cdc31db93f984d6b4171857ddc89a4b4fde7dde
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-6048/optimizer.pt b/runs/i5-fulle-lm/checkpoint-6048/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..21653aa869bcc52b39ed94847f57a13560318976
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:36fb07956cfc56a54040435169101d2628dc03bb106eb43404a1017ce92766a8
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-6048/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-6048/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..80696d4d8e6ea8a428cdcb1dbf4ad8f1ea87d281
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:de5233366c1ab9c5205cae7a42206dcfad6c7861af34afa0b13cf3983eb705a6
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-6048/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-6048/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..da2f0957b11287648d50e802a5324c0f71cb2b99
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:95f6d50ec36b4abd96d270359604f90a62b2a75ece3b34f885c420a63d5b128d
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-6048/scheduler.pt b/runs/i5-fulle-lm/checkpoint-6048/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..762789ce7e31cc09dc831dc70530516d1f1e01b2
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:100b47a764841837311a60bed293b8e5dd3c3501d4d1da6c3b20120bb6630ddd
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-6048/tokenizer.json b/runs/i5-fulle-lm/checkpoint-6048/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-6048/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-6048/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6048/trainer_state.json b/runs/i5-fulle-lm/checkpoint-6048/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..dfd51db73e28912d73ff98fdec47600b15fa9fd6
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/trainer_state.json
@@ -0,0 +1,43026 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 84.0,
+ "eval_steps": 500,
+ "global_step": 6048,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 6.10045862197876,
+ "eval_runtime": 43.881,
+ "eval_samples_per_second": 55.651,
+ "eval_steps_per_second": 3.487,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.3880091607570648,
+ "learning_rate": 0.0006,
+ "loss": 4.2891340255737305,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.46462568640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.368136882781982,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.46417036652565,
+ "learning_rate": 0.0006,
+ "loss": 4.290570259094238,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.42546287178993225,
+ "learning_rate": 0.0006,
+ "loss": 4.275969505310059,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.42158621549606323,
+ "learning_rate": 0.0006,
+ "loss": 4.3133697509765625,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.41421398520469666,
+ "learning_rate": 0.0006,
+ "loss": 4.318943977355957,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.4261677861213684,
+ "learning_rate": 0.0006,
+ "loss": 4.386415481567383,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.4547804594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.200797080993652,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.5152761340141296,
+ "learning_rate": 0.0006,
+ "loss": 4.392667770385742,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.6397215127944946,
+ "learning_rate": 0.0006,
+ "loss": 4.365647315979004,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.867751955986023,
+ "learning_rate": 0.0006,
+ "loss": 4.404231071472168,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 1.113226056098938,
+ "learning_rate": 0.0006,
+ "loss": 4.4237775802612305,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.9725164771080017,
+ "learning_rate": 0.0006,
+ "loss": 4.353878021240234,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.8986128568649292,
+ "learning_rate": 0.0006,
+ "loss": 4.404200553894043,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.644611656665802,
+ "learning_rate": 0.0006,
+ "loss": 4.314446449279785,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.5430455803871155,
+ "learning_rate": 0.0006,
+ "loss": 4.404072284698486,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.5315895080566406,
+ "learning_rate": 0.0006,
+ "loss": 4.339350700378418,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.4984396696090698,
+ "learning_rate": 0.0006,
+ "loss": 4.418368339538574,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.4928722679615021,
+ "learning_rate": 0.0006,
+ "loss": 4.351061820983887,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.4810708463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.32480525970459,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.4846661388874054,
+ "learning_rate": 0.0006,
+ "loss": 4.410396099090576,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.45098942518234253,
+ "learning_rate": 0.0006,
+ "loss": 4.434419631958008,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.4603881239891052,
+ "learning_rate": 0.0006,
+ "loss": 4.374553680419922,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.47921186685562134,
+ "learning_rate": 0.0006,
+ "loss": 4.43428373336792,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.458781361579895,
+ "learning_rate": 0.0006,
+ "loss": 4.345955848693848,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.43630266189575195,
+ "learning_rate": 0.0006,
+ "loss": 4.396679401397705,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.4061865210533142,
+ "learning_rate": 0.0006,
+ "loss": 4.3547186851501465,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.3998570740222931,
+ "learning_rate": 0.0006,
+ "loss": 4.42930793762207,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.43052756786346436,
+ "learning_rate": 0.0006,
+ "loss": 4.483987808227539,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.40878528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.4177021980285645,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.41628801822662354,
+ "learning_rate": 0.0006,
+ "loss": 4.383821487426758,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.39991578459739685,
+ "learning_rate": 0.0006,
+ "loss": 4.403266429901123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.3781890571117401,
+ "learning_rate": 0.0006,
+ "loss": 4.361995220184326,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.38037991523742676,
+ "learning_rate": 0.0006,
+ "loss": 4.520498275756836,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.3687450587749481,
+ "learning_rate": 0.0006,
+ "loss": 4.34592342376709,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.3800104558467865,
+ "learning_rate": 0.0006,
+ "loss": 4.395520210266113,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.38416075706481934,
+ "learning_rate": 0.0006,
+ "loss": 4.432024002075195,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.38714301586151123,
+ "learning_rate": 0.0006,
+ "loss": 4.371710300445557,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.3560386002063751,
+ "learning_rate": 0.0006,
+ "loss": 4.389065265655518,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.3583020269870758,
+ "learning_rate": 0.0006,
+ "loss": 4.294467926025391,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.3507572412490845,
+ "learning_rate": 0.0006,
+ "loss": 4.335668563842773,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.3481273353099823,
+ "learning_rate": 0.0006,
+ "loss": 4.355007171630859,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.3648652732372284,
+ "learning_rate": 0.0006,
+ "loss": 4.458398818969727,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.3315402865409851,
+ "learning_rate": 0.0006,
+ "loss": 4.415014266967773,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.34356269240379333,
+ "learning_rate": 0.0006,
+ "loss": 4.3891496658325195,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.3475818932056427,
+ "learning_rate": 0.0006,
+ "loss": 4.403259754180908,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.3756524622440338,
+ "learning_rate": 0.0006,
+ "loss": 4.396340370178223,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.38063693046569824,
+ "learning_rate": 0.0006,
+ "loss": 4.390671253204346,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.3574332594871521,
+ "learning_rate": 0.0006,
+ "loss": 4.342291831970215,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.35717374086380005,
+ "learning_rate": 0.0006,
+ "loss": 4.389538764953613,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.34184643626213074,
+ "learning_rate": 0.0006,
+ "loss": 4.407958030700684,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.3665345013141632,
+ "learning_rate": 0.0006,
+ "loss": 4.407729148864746,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.3752829432487488,
+ "learning_rate": 0.0006,
+ "loss": 4.406526565551758,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.3690424859523773,
+ "learning_rate": 0.0006,
+ "loss": 4.444920063018799,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.35570403933525085,
+ "learning_rate": 0.0006,
+ "loss": 4.41465950012207,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.3422539532184601,
+ "learning_rate": 0.0006,
+ "loss": 4.341947078704834,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.34019631147384644,
+ "learning_rate": 0.0006,
+ "loss": 4.383486747741699,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.35433074831962585,
+ "learning_rate": 0.0006,
+ "loss": 4.43992280960083,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.3690914809703827,
+ "learning_rate": 0.0006,
+ "loss": 4.396021842956543,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.35793814063072205,
+ "learning_rate": 0.0006,
+ "loss": 4.389019012451172,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.34700852632522583,
+ "learning_rate": 0.0006,
+ "loss": 4.476073265075684,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.3613256514072418,
+ "learning_rate": 0.0006,
+ "loss": 4.43828010559082,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.3444153070449829,
+ "learning_rate": 0.0006,
+ "loss": 4.470188140869141,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.3383917510509491,
+ "learning_rate": 0.0006,
+ "loss": 4.381032943725586,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.3648519217967987,
+ "learning_rate": 0.0006,
+ "loss": 4.399723052978516,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.34983959794044495,
+ "learning_rate": 0.0006,
+ "loss": 4.43270206451416,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.33937394618988037,
+ "learning_rate": 0.0006,
+ "loss": 4.4052228927612305,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.34935757517814636,
+ "learning_rate": 0.0006,
+ "loss": 4.38171911239624,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.3566495180130005,
+ "learning_rate": 0.0006,
+ "loss": 4.495579242706299,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.3702648878097534,
+ "learning_rate": 0.0006,
+ "loss": 4.452796936035156,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.3714422583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.404526710510254,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.42734357714653015,
+ "learning_rate": 0.0006,
+ "loss": 4.511031150817871,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 6.156860828399658,
+ "eval_runtime": 44.07,
+ "eval_samples_per_second": 55.412,
+ "eval_steps_per_second": 3.472,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.381186306476593,
+ "learning_rate": 0.0006,
+ "loss": 4.39985466003418,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.4057665169239044,
+ "learning_rate": 0.0006,
+ "loss": 4.338055610656738,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.4002494513988495,
+ "learning_rate": 0.0006,
+ "loss": 4.331958770751953,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.4294043183326721,
+ "learning_rate": 0.0006,
+ "loss": 4.339388370513916,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.45085105299949646,
+ "learning_rate": 0.0006,
+ "loss": 4.334287643432617,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.5061688423156738,
+ "learning_rate": 0.0006,
+ "loss": 4.2327470779418945,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.5022581219673157,
+ "learning_rate": 0.0006,
+ "loss": 4.291156768798828,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.5529219508171082,
+ "learning_rate": 0.0006,
+ "loss": 4.4021406173706055,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.5945294499397278,
+ "learning_rate": 0.0006,
+ "loss": 4.3400092124938965,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.5755016803741455,
+ "learning_rate": 0.0006,
+ "loss": 4.2676286697387695,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.5352432131767273,
+ "learning_rate": 0.0006,
+ "loss": 4.322068214416504,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.5563830137252808,
+ "learning_rate": 0.0006,
+ "loss": 4.401552200317383,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.5542744994163513,
+ "learning_rate": 0.0006,
+ "loss": 4.361536026000977,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.5109394788742065,
+ "learning_rate": 0.0006,
+ "loss": 4.333110809326172,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.48128604888916016,
+ "learning_rate": 0.0006,
+ "loss": 4.311734199523926,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.48069921135902405,
+ "learning_rate": 0.0006,
+ "loss": 4.400852203369141,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.45155879855155945,
+ "learning_rate": 0.0006,
+ "loss": 4.257515907287598,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.44431430101394653,
+ "learning_rate": 0.0006,
+ "loss": 4.397309303283691,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.43975624442100525,
+ "learning_rate": 0.0006,
+ "loss": 4.392481803894043,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.43021512031555176,
+ "learning_rate": 0.0006,
+ "loss": 4.323525428771973,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.4590098559856415,
+ "learning_rate": 0.0006,
+ "loss": 4.334511756896973,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.42400652170181274,
+ "learning_rate": 0.0006,
+ "loss": 4.33546257019043,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.41162917017936707,
+ "learning_rate": 0.0006,
+ "loss": 4.348457336425781,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.44991976022720337,
+ "learning_rate": 0.0006,
+ "loss": 4.3486785888671875,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.41424447298049927,
+ "learning_rate": 0.0006,
+ "loss": 4.396841049194336,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.4157496690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.386002540588379,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.43610864877700806,
+ "learning_rate": 0.0006,
+ "loss": 4.355074882507324,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.43452468514442444,
+ "learning_rate": 0.0006,
+ "loss": 4.327574729919434,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.42757663130760193,
+ "learning_rate": 0.0006,
+ "loss": 4.289640426635742,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.38811302185058594,
+ "learning_rate": 0.0006,
+ "loss": 4.297506809234619,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.3866890072822571,
+ "learning_rate": 0.0006,
+ "loss": 4.4301838874816895,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.43073758482933044,
+ "learning_rate": 0.0006,
+ "loss": 4.365545749664307,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.4058871865272522,
+ "learning_rate": 0.0006,
+ "loss": 4.294832229614258,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.41439321637153625,
+ "learning_rate": 0.0006,
+ "loss": 4.374986171722412,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.39280998706817627,
+ "learning_rate": 0.0006,
+ "loss": 4.472156524658203,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.380862832069397,
+ "learning_rate": 0.0006,
+ "loss": 4.3376359939575195,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.3880598843097687,
+ "learning_rate": 0.0006,
+ "loss": 4.399764537811279,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.4056805372238159,
+ "learning_rate": 0.0006,
+ "loss": 4.3839263916015625,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.43928271532058716,
+ "learning_rate": 0.0006,
+ "loss": 4.387872695922852,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.4157223701477051,
+ "learning_rate": 0.0006,
+ "loss": 4.491827011108398,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.38938942551612854,
+ "learning_rate": 0.0006,
+ "loss": 4.369803428649902,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.39400580525398254,
+ "learning_rate": 0.0006,
+ "loss": 4.4603800773620605,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.3747307062149048,
+ "learning_rate": 0.0006,
+ "loss": 4.366776466369629,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.4072708785533905,
+ "learning_rate": 0.0006,
+ "loss": 4.3782854080200195,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.4091123342514038,
+ "learning_rate": 0.0006,
+ "loss": 4.4356689453125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.40395987033843994,
+ "learning_rate": 0.0006,
+ "loss": 4.413468360900879,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.39857032895088196,
+ "learning_rate": 0.0006,
+ "loss": 4.450807571411133,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.4158494174480438,
+ "learning_rate": 0.0006,
+ "loss": 4.381142616271973,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.4082915484905243,
+ "learning_rate": 0.0006,
+ "loss": 4.496438980102539,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.37405046820640564,
+ "learning_rate": 0.0006,
+ "loss": 4.345484256744385,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.359416127204895,
+ "learning_rate": 0.0006,
+ "loss": 4.26982307434082,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.3519706726074219,
+ "learning_rate": 0.0006,
+ "loss": 4.397839546203613,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.3789094388484955,
+ "learning_rate": 0.0006,
+ "loss": 4.415822982788086,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.3676875829696655,
+ "learning_rate": 0.0006,
+ "loss": 4.396381855010986,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.3599476218223572,
+ "learning_rate": 0.0006,
+ "loss": 4.4171977043151855,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.3843400180339813,
+ "learning_rate": 0.0006,
+ "loss": 4.47220516204834,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.3702511191368103,
+ "learning_rate": 0.0006,
+ "loss": 4.500491619110107,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.3719273805618286,
+ "learning_rate": 0.0006,
+ "loss": 4.352668762207031,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.3619741201400757,
+ "learning_rate": 0.0006,
+ "loss": 4.3586931228637695,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.3766055703163147,
+ "learning_rate": 0.0006,
+ "loss": 4.408159255981445,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.3580402433872223,
+ "learning_rate": 0.0006,
+ "loss": 4.355810165405273,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.3602997958660126,
+ "learning_rate": 0.0006,
+ "loss": 4.357786178588867,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.35930490493774414,
+ "learning_rate": 0.0006,
+ "loss": 4.353297233581543,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.3693123161792755,
+ "learning_rate": 0.0006,
+ "loss": 4.391401290893555,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.36045047640800476,
+ "learning_rate": 0.0006,
+ "loss": 4.447843551635742,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.38618308305740356,
+ "learning_rate": 0.0006,
+ "loss": 4.465207099914551,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.38916000723838806,
+ "learning_rate": 0.0006,
+ "loss": 4.4063239097595215,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.3937848210334778,
+ "learning_rate": 0.0006,
+ "loss": 4.438618183135986,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.3975565731525421,
+ "learning_rate": 0.0006,
+ "loss": 4.376347541809082,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.383375883102417,
+ "learning_rate": 0.0006,
+ "loss": 4.376345634460449,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.38982275128364563,
+ "learning_rate": 0.0006,
+ "loss": 4.477313041687012,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.44567444920539856,
+ "learning_rate": 0.0006,
+ "loss": 4.4622087478637695,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 6.127683162689209,
+ "eval_runtime": 43.8712,
+ "eval_samples_per_second": 55.663,
+ "eval_steps_per_second": 3.487,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.38945627212524414,
+ "learning_rate": 0.0006,
+ "loss": 4.225332736968994,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.48500800132751465,
+ "learning_rate": 0.0006,
+ "loss": 4.303142547607422,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.4945746660232544,
+ "learning_rate": 0.0006,
+ "loss": 4.252800464630127,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.4860735237598419,
+ "learning_rate": 0.0006,
+ "loss": 4.3632307052612305,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.5717944502830505,
+ "learning_rate": 0.0006,
+ "loss": 4.2910966873168945,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.6825600862503052,
+ "learning_rate": 0.0006,
+ "loss": 4.446534633636475,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.7507191300392151,
+ "learning_rate": 0.0006,
+ "loss": 4.3218584060668945,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.8143581748008728,
+ "learning_rate": 0.0006,
+ "loss": 4.291619777679443,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.8164665699005127,
+ "learning_rate": 0.0006,
+ "loss": 4.314390182495117,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.8027179837226868,
+ "learning_rate": 0.0006,
+ "loss": 4.347686767578125,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.7046833038330078,
+ "learning_rate": 0.0006,
+ "loss": 4.382390975952148,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.6704773902893066,
+ "learning_rate": 0.0006,
+ "loss": 4.368736267089844,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.5986452698707581,
+ "learning_rate": 0.0006,
+ "loss": 4.3586106300354,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.5452585816383362,
+ "learning_rate": 0.0006,
+ "loss": 4.215537071228027,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.5050400495529175,
+ "learning_rate": 0.0006,
+ "loss": 4.345709800720215,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.4811224639415741,
+ "learning_rate": 0.0006,
+ "loss": 4.229983329772949,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.47257834672927856,
+ "learning_rate": 0.0006,
+ "loss": 4.401679039001465,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.46806448698043823,
+ "learning_rate": 0.0006,
+ "loss": 4.345294952392578,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.47019970417022705,
+ "learning_rate": 0.0006,
+ "loss": 4.3366899490356445,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.4618140459060669,
+ "learning_rate": 0.0006,
+ "loss": 4.423093795776367,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.45103076100349426,
+ "learning_rate": 0.0006,
+ "loss": 4.429213523864746,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.42674535512924194,
+ "learning_rate": 0.0006,
+ "loss": 4.355292320251465,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.4282950162887573,
+ "learning_rate": 0.0006,
+ "loss": 4.307826995849609,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.4120710790157318,
+ "learning_rate": 0.0006,
+ "loss": 4.322912216186523,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.4138009548187256,
+ "learning_rate": 0.0006,
+ "loss": 4.328085899353027,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.41546961665153503,
+ "learning_rate": 0.0006,
+ "loss": 4.4070940017700195,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.44050562381744385,
+ "learning_rate": 0.0006,
+ "loss": 4.419538497924805,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.41043856739997864,
+ "learning_rate": 0.0006,
+ "loss": 4.404756546020508,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.42796140909194946,
+ "learning_rate": 0.0006,
+ "loss": 4.3040008544921875,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.38510003685951233,
+ "learning_rate": 0.0006,
+ "loss": 4.353320598602295,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.3788503110408783,
+ "learning_rate": 0.0006,
+ "loss": 4.300704479217529,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.3905165493488312,
+ "learning_rate": 0.0006,
+ "loss": 4.343006610870361,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.3838869333267212,
+ "learning_rate": 0.0006,
+ "loss": 4.308780670166016,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.38746532797813416,
+ "learning_rate": 0.0006,
+ "loss": 4.335064888000488,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.37491124868392944,
+ "learning_rate": 0.0006,
+ "loss": 4.32066535949707,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.36987295746803284,
+ "learning_rate": 0.0006,
+ "loss": 4.317310333251953,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.38870200514793396,
+ "learning_rate": 0.0006,
+ "loss": 4.354729652404785,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.37225764989852905,
+ "learning_rate": 0.0006,
+ "loss": 4.29198694229126,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.3612116873264313,
+ "learning_rate": 0.0006,
+ "loss": 4.3979315757751465,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.40117356181144714,
+ "learning_rate": 0.0006,
+ "loss": 4.429460048675537,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.3933751881122589,
+ "learning_rate": 0.0006,
+ "loss": 4.348066329956055,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.38921254873275757,
+ "learning_rate": 0.0006,
+ "loss": 4.405765056610107,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.3987453579902649,
+ "learning_rate": 0.0006,
+ "loss": 4.350672721862793,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.43417951464653015,
+ "learning_rate": 0.0006,
+ "loss": 4.463413238525391,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.41297927498817444,
+ "learning_rate": 0.0006,
+ "loss": 4.309045791625977,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.38461950421333313,
+ "learning_rate": 0.0006,
+ "loss": 4.318929672241211,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.3841524124145508,
+ "learning_rate": 0.0006,
+ "loss": 4.379926681518555,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.39013510942459106,
+ "learning_rate": 0.0006,
+ "loss": 4.3409342765808105,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.3847009539604187,
+ "learning_rate": 0.0006,
+ "loss": 4.467362880706787,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.3979317247867584,
+ "learning_rate": 0.0006,
+ "loss": 4.333352088928223,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.4019637107849121,
+ "learning_rate": 0.0006,
+ "loss": 4.32415246963501,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.38000333309173584,
+ "learning_rate": 0.0006,
+ "loss": 4.318780899047852,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.3957592248916626,
+ "learning_rate": 0.0006,
+ "loss": 4.301888942718506,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.380258709192276,
+ "learning_rate": 0.0006,
+ "loss": 4.362771987915039,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.37715500593185425,
+ "learning_rate": 0.0006,
+ "loss": 4.455068588256836,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.37162303924560547,
+ "learning_rate": 0.0006,
+ "loss": 4.453987121582031,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.36303192377090454,
+ "learning_rate": 0.0006,
+ "loss": 4.400303363800049,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.34762880206108093,
+ "learning_rate": 0.0006,
+ "loss": 4.3961381912231445,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.34881117939949036,
+ "learning_rate": 0.0006,
+ "loss": 4.419530868530273,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.36440593004226685,
+ "learning_rate": 0.0006,
+ "loss": 4.4832868576049805,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.3671160638332367,
+ "learning_rate": 0.0006,
+ "loss": 4.389676094055176,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.3860883116722107,
+ "learning_rate": 0.0006,
+ "loss": 4.383245468139648,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.38325265049934387,
+ "learning_rate": 0.0006,
+ "loss": 4.3348388671875,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.3778875470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.362031936645508,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.3768773674964905,
+ "learning_rate": 0.0006,
+ "loss": 4.33457088470459,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.39139771461486816,
+ "learning_rate": 0.0006,
+ "loss": 4.455694198608398,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.38553205132484436,
+ "learning_rate": 0.0006,
+ "loss": 4.347469329833984,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.3916657567024231,
+ "learning_rate": 0.0006,
+ "loss": 4.394040107727051,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.3568893373012543,
+ "learning_rate": 0.0006,
+ "loss": 4.3976874351501465,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.3758280277252197,
+ "learning_rate": 0.0006,
+ "loss": 4.401939392089844,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.3833237588405609,
+ "learning_rate": 0.0006,
+ "loss": 4.339327812194824,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.4451141357421875,
+ "learning_rate": 0.0006,
+ "loss": 4.452360153198242,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 6.193995952606201,
+ "eval_runtime": 43.9228,
+ "eval_samples_per_second": 55.598,
+ "eval_steps_per_second": 3.483,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.4081752598285675,
+ "learning_rate": 0.0006,
+ "loss": 4.2674560546875,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.46005865931510925,
+ "learning_rate": 0.0006,
+ "loss": 4.2233099937438965,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.4297347962856293,
+ "learning_rate": 0.0006,
+ "loss": 4.269168376922607,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.427181601524353,
+ "learning_rate": 0.0006,
+ "loss": 4.304473876953125,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.4240623712539673,
+ "learning_rate": 0.0006,
+ "loss": 4.358336448669434,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.461392879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.351563930511475,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.4573875665664673,
+ "learning_rate": 0.0006,
+ "loss": 4.233829021453857,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.5236565470695496,
+ "learning_rate": 0.0006,
+ "loss": 4.313651084899902,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.6449952125549316,
+ "learning_rate": 0.0006,
+ "loss": 4.2785491943359375,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.76405930519104,
+ "learning_rate": 0.0006,
+ "loss": 4.333526611328125,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.8181349635124207,
+ "learning_rate": 0.0006,
+ "loss": 4.3336896896362305,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.7717618942260742,
+ "learning_rate": 0.0006,
+ "loss": 4.314065933227539,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.6831390857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.378012657165527,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.5755302906036377,
+ "learning_rate": 0.0006,
+ "loss": 4.331476211547852,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.5297263860702515,
+ "learning_rate": 0.0006,
+ "loss": 4.337549209594727,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.5538325309753418,
+ "learning_rate": 0.0006,
+ "loss": 4.395265102386475,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.4868195652961731,
+ "learning_rate": 0.0006,
+ "loss": 4.313584327697754,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.4794177711009979,
+ "learning_rate": 0.0006,
+ "loss": 4.413606643676758,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.4221785366535187,
+ "learning_rate": 0.0006,
+ "loss": 4.255707740783691,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.4288736879825592,
+ "learning_rate": 0.0006,
+ "loss": 4.257824897766113,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.42079946398735046,
+ "learning_rate": 0.0006,
+ "loss": 4.2655253410339355,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.4367576539516449,
+ "learning_rate": 0.0006,
+ "loss": 4.390307426452637,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.4121208190917969,
+ "learning_rate": 0.0006,
+ "loss": 4.3600006103515625,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.3934427797794342,
+ "learning_rate": 0.0006,
+ "loss": 4.276140213012695,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.3987336754798889,
+ "learning_rate": 0.0006,
+ "loss": 4.330526351928711,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.40691474080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.260777473449707,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.3869854807853699,
+ "learning_rate": 0.0006,
+ "loss": 4.3207855224609375,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.3992115259170532,
+ "learning_rate": 0.0006,
+ "loss": 4.3675432205200195,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.39756008982658386,
+ "learning_rate": 0.0006,
+ "loss": 4.359041213989258,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.37387391924858093,
+ "learning_rate": 0.0006,
+ "loss": 4.314123630523682,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.3787343502044678,
+ "learning_rate": 0.0006,
+ "loss": 4.376033782958984,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.388907253742218,
+ "learning_rate": 0.0006,
+ "loss": 4.2664690017700195,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.39261215925216675,
+ "learning_rate": 0.0006,
+ "loss": 4.335193634033203,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.385919988155365,
+ "learning_rate": 0.0006,
+ "loss": 4.329131126403809,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.39091575145721436,
+ "learning_rate": 0.0006,
+ "loss": 4.416098117828369,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.3747062683105469,
+ "learning_rate": 0.0006,
+ "loss": 4.284010887145996,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.37862640619277954,
+ "learning_rate": 0.0006,
+ "loss": 4.398101806640625,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.3797444701194763,
+ "learning_rate": 0.0006,
+ "loss": 4.433382034301758,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.3917072117328644,
+ "learning_rate": 0.0006,
+ "loss": 4.265375137329102,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.40743324160575867,
+ "learning_rate": 0.0006,
+ "loss": 4.351291656494141,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.4176776707172394,
+ "learning_rate": 0.0006,
+ "loss": 4.4158782958984375,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.4368206560611725,
+ "learning_rate": 0.0006,
+ "loss": 4.422186851501465,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.45450183749198914,
+ "learning_rate": 0.0006,
+ "loss": 4.363736629486084,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.4195234775543213,
+ "learning_rate": 0.0006,
+ "loss": 4.459656715393066,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.3838373124599457,
+ "learning_rate": 0.0006,
+ "loss": 4.338109016418457,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.37965819239616394,
+ "learning_rate": 0.0006,
+ "loss": 4.350182056427002,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.3787379264831543,
+ "learning_rate": 0.0006,
+ "loss": 4.394096851348877,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.3984084129333496,
+ "learning_rate": 0.0006,
+ "loss": 4.381903171539307,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.3826642334461212,
+ "learning_rate": 0.0006,
+ "loss": 4.269111156463623,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.3738428056240082,
+ "learning_rate": 0.0006,
+ "loss": 4.29117488861084,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.3769048750400543,
+ "learning_rate": 0.0006,
+ "loss": 4.395892143249512,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.36490270495414734,
+ "learning_rate": 0.0006,
+ "loss": 4.356070518493652,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.38128694891929626,
+ "learning_rate": 0.0006,
+ "loss": 4.366775989532471,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.3863452672958374,
+ "learning_rate": 0.0006,
+ "loss": 4.403047561645508,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.3697649836540222,
+ "learning_rate": 0.0006,
+ "loss": 4.333529472351074,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.3666415810585022,
+ "learning_rate": 0.0006,
+ "loss": 4.421572685241699,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.3746238946914673,
+ "learning_rate": 0.0006,
+ "loss": 4.291342735290527,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.3864925503730774,
+ "learning_rate": 0.0006,
+ "loss": 4.319379806518555,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.40842366218566895,
+ "learning_rate": 0.0006,
+ "loss": 4.34860897064209,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.39575234055519104,
+ "learning_rate": 0.0006,
+ "loss": 4.389467239379883,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.3882506787776947,
+ "learning_rate": 0.0006,
+ "loss": 4.373462677001953,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.38202980160713196,
+ "learning_rate": 0.0006,
+ "loss": 4.370086669921875,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.37805864214897156,
+ "learning_rate": 0.0006,
+ "loss": 4.46006965637207,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.3739442527294159,
+ "learning_rate": 0.0006,
+ "loss": 4.36165714263916,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.3707204759120941,
+ "learning_rate": 0.0006,
+ "loss": 4.418872356414795,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.37603604793548584,
+ "learning_rate": 0.0006,
+ "loss": 4.45180606842041,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.3731978237628937,
+ "learning_rate": 0.0006,
+ "loss": 4.412590026855469,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.3871077001094818,
+ "learning_rate": 0.0006,
+ "loss": 4.4665679931640625,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.3805893659591675,
+ "learning_rate": 0.0006,
+ "loss": 4.376047134399414,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.3941190540790558,
+ "learning_rate": 0.0006,
+ "loss": 4.414681434631348,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.39961132407188416,
+ "learning_rate": 0.0006,
+ "loss": 4.40030574798584,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.45096156001091003,
+ "learning_rate": 0.0006,
+ "loss": 4.3740458488464355,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 6.164906978607178,
+ "eval_runtime": 43.7516,
+ "eval_samples_per_second": 55.815,
+ "eval_steps_per_second": 3.497,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.4227452278137207,
+ "learning_rate": 0.0006,
+ "loss": 4.3197340965271,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.4646683931350708,
+ "learning_rate": 0.0006,
+ "loss": 4.254220008850098,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.5112658739089966,
+ "learning_rate": 0.0006,
+ "loss": 4.245427131652832,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.5452179312705994,
+ "learning_rate": 0.0006,
+ "loss": 4.303033828735352,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.6151604652404785,
+ "learning_rate": 0.0006,
+ "loss": 4.3013811111450195,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.7466694712638855,
+ "learning_rate": 0.0006,
+ "loss": 4.303430080413818,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.9221336841583252,
+ "learning_rate": 0.0006,
+ "loss": 4.330693244934082,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.9571523666381836,
+ "learning_rate": 0.0006,
+ "loss": 4.283618927001953,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.8955944776535034,
+ "learning_rate": 0.0006,
+ "loss": 4.331462860107422,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.9967221021652222,
+ "learning_rate": 0.0006,
+ "loss": 4.267236709594727,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.896125853061676,
+ "learning_rate": 0.0006,
+ "loss": 4.382920265197754,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.8246790170669556,
+ "learning_rate": 0.0006,
+ "loss": 4.325201034545898,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.6651087403297424,
+ "learning_rate": 0.0006,
+ "loss": 4.389814376831055,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.5789903998374939,
+ "learning_rate": 0.0006,
+ "loss": 4.256431579589844,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.540268063545227,
+ "learning_rate": 0.0006,
+ "loss": 4.314873218536377,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.5234258770942688,
+ "learning_rate": 0.0006,
+ "loss": 4.322999954223633,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.5203981399536133,
+ "learning_rate": 0.0006,
+ "loss": 4.449131965637207,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.47833096981048584,
+ "learning_rate": 0.0006,
+ "loss": 4.370548725128174,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.45063355565071106,
+ "learning_rate": 0.0006,
+ "loss": 4.423710823059082,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.4473242163658142,
+ "learning_rate": 0.0006,
+ "loss": 4.322866439819336,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.45025673508644104,
+ "learning_rate": 0.0006,
+ "loss": 4.242474555969238,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.4419912099838257,
+ "learning_rate": 0.0006,
+ "loss": 4.3837714195251465,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.4443511664867401,
+ "learning_rate": 0.0006,
+ "loss": 4.393730163574219,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.42215496301651,
+ "learning_rate": 0.0006,
+ "loss": 4.360969066619873,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.4408218562602997,
+ "learning_rate": 0.0006,
+ "loss": 4.399507522583008,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.42309728264808655,
+ "learning_rate": 0.0006,
+ "loss": 4.34589147567749,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.3893560767173767,
+ "learning_rate": 0.0006,
+ "loss": 4.278870582580566,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.42726844549179077,
+ "learning_rate": 0.0006,
+ "loss": 4.428325653076172,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.39529383182525635,
+ "learning_rate": 0.0006,
+ "loss": 4.3687872886657715,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.39174285531044006,
+ "learning_rate": 0.0006,
+ "loss": 4.367023468017578,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.39338526129722595,
+ "learning_rate": 0.0006,
+ "loss": 4.372482776641846,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.396528959274292,
+ "learning_rate": 0.0006,
+ "loss": 4.325854778289795,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.4031950533390045,
+ "learning_rate": 0.0006,
+ "loss": 4.387483596801758,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.3867308795452118,
+ "learning_rate": 0.0006,
+ "loss": 4.337440490722656,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.3758327066898346,
+ "learning_rate": 0.0006,
+ "loss": 4.332152366638184,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.3789239823818207,
+ "learning_rate": 0.0006,
+ "loss": 4.234537124633789,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.36792582273483276,
+ "learning_rate": 0.0006,
+ "loss": 4.3876800537109375,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.3689296245574951,
+ "learning_rate": 0.0006,
+ "loss": 4.311098098754883,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.3556303083896637,
+ "learning_rate": 0.0006,
+ "loss": 4.348201274871826,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.38501277565956116,
+ "learning_rate": 0.0006,
+ "loss": 4.391176700592041,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.3857221305370331,
+ "learning_rate": 0.0006,
+ "loss": 4.377525329589844,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.37236976623535156,
+ "learning_rate": 0.0006,
+ "loss": 4.25323486328125,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.37982237339019775,
+ "learning_rate": 0.0006,
+ "loss": 4.326591491699219,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.3887641131877899,
+ "learning_rate": 0.0006,
+ "loss": 4.32540225982666,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.3766990900039673,
+ "learning_rate": 0.0006,
+ "loss": 4.320146560668945,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.3827766478061676,
+ "learning_rate": 0.0006,
+ "loss": 4.344974517822266,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.3892960846424103,
+ "learning_rate": 0.0006,
+ "loss": 4.37299108505249,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.39927658438682556,
+ "learning_rate": 0.0006,
+ "loss": 4.346755504608154,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.3751842975616455,
+ "learning_rate": 0.0006,
+ "loss": 4.390047073364258,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.3758105933666229,
+ "learning_rate": 0.0006,
+ "loss": 4.392386436462402,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.3755977153778076,
+ "learning_rate": 0.0006,
+ "loss": 4.389333724975586,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.38697585463523865,
+ "learning_rate": 0.0006,
+ "loss": 4.363922119140625,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.37856224179267883,
+ "learning_rate": 0.0006,
+ "loss": 4.415143966674805,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.3853805959224701,
+ "learning_rate": 0.0006,
+ "loss": 4.332059860229492,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.3552320599555969,
+ "learning_rate": 0.0006,
+ "loss": 4.360487937927246,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.3593924641609192,
+ "learning_rate": 0.0006,
+ "loss": 4.386531829833984,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.37393584847450256,
+ "learning_rate": 0.0006,
+ "loss": 4.377449989318848,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.37289509177207947,
+ "learning_rate": 0.0006,
+ "loss": 4.381917953491211,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.3700922131538391,
+ "learning_rate": 0.0006,
+ "loss": 4.472764015197754,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.3773220181465149,
+ "learning_rate": 0.0006,
+ "loss": 4.438575744628906,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.3959292769432068,
+ "learning_rate": 0.0006,
+ "loss": 4.41773796081543,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.37098821997642517,
+ "learning_rate": 0.0006,
+ "loss": 4.3457441329956055,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.3589438199996948,
+ "learning_rate": 0.0006,
+ "loss": 4.390456676483154,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.3993541896343231,
+ "learning_rate": 0.0006,
+ "loss": 4.412688255310059,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.39771372079849243,
+ "learning_rate": 0.0006,
+ "loss": 4.37404203414917,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.37521013617515564,
+ "learning_rate": 0.0006,
+ "loss": 4.379281044006348,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.3812563717365265,
+ "learning_rate": 0.0006,
+ "loss": 4.475038528442383,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.3759402632713318,
+ "learning_rate": 0.0006,
+ "loss": 4.298859596252441,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.38831669092178345,
+ "learning_rate": 0.0006,
+ "loss": 4.335268020629883,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.3674168884754181,
+ "learning_rate": 0.0006,
+ "loss": 4.288745880126953,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.37575823068618774,
+ "learning_rate": 0.0006,
+ "loss": 4.340919494628906,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.44213995337486267,
+ "learning_rate": 0.0006,
+ "loss": 4.428310394287109,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 6.250092029571533,
+ "eval_runtime": 43.9606,
+ "eval_samples_per_second": 55.55,
+ "eval_steps_per_second": 3.48,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.40146708488464355,
+ "learning_rate": 0.0006,
+ "loss": 4.233017921447754,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.4238559305667877,
+ "learning_rate": 0.0006,
+ "loss": 4.256832122802734,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.4282098412513733,
+ "learning_rate": 0.0006,
+ "loss": 4.243378639221191,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.4408058524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.367465019226074,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.445965439081192,
+ "learning_rate": 0.0006,
+ "loss": 4.347798824310303,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.47689515352249146,
+ "learning_rate": 0.0006,
+ "loss": 4.242677211761475,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.5041401386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.354928016662598,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.5793538689613342,
+ "learning_rate": 0.0006,
+ "loss": 4.301093578338623,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.5709708333015442,
+ "learning_rate": 0.0006,
+ "loss": 4.217863082885742,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.5181067585945129,
+ "learning_rate": 0.0006,
+ "loss": 4.246687889099121,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.5148541927337646,
+ "learning_rate": 0.0006,
+ "loss": 4.285772800445557,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.5215007662773132,
+ "learning_rate": 0.0006,
+ "loss": 4.2491350173950195,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.5118919610977173,
+ "learning_rate": 0.0006,
+ "loss": 4.354918479919434,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.5332921147346497,
+ "learning_rate": 0.0006,
+ "loss": 4.294621467590332,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.5734043717384338,
+ "learning_rate": 0.0006,
+ "loss": 4.283238887786865,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.5209192037582397,
+ "learning_rate": 0.0006,
+ "loss": 4.251487731933594,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.4510970711708069,
+ "learning_rate": 0.0006,
+ "loss": 4.294740676879883,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.42409008741378784,
+ "learning_rate": 0.0006,
+ "loss": 4.267972946166992,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.45052847266197205,
+ "learning_rate": 0.0006,
+ "loss": 4.451445579528809,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.420418918132782,
+ "learning_rate": 0.0006,
+ "loss": 4.227499008178711,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.4419310390949249,
+ "learning_rate": 0.0006,
+ "loss": 4.294921875,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.41020578145980835,
+ "learning_rate": 0.0006,
+ "loss": 4.235942840576172,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.4084969162940979,
+ "learning_rate": 0.0006,
+ "loss": 4.285951614379883,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.39946338534355164,
+ "learning_rate": 0.0006,
+ "loss": 4.388570785522461,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.39431124925613403,
+ "learning_rate": 0.0006,
+ "loss": 4.329334259033203,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.41183048486709595,
+ "learning_rate": 0.0006,
+ "loss": 4.369775295257568,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.4041382968425751,
+ "learning_rate": 0.0006,
+ "loss": 4.272721290588379,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.42982324957847595,
+ "learning_rate": 0.0006,
+ "loss": 4.310064315795898,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.42579901218414307,
+ "learning_rate": 0.0006,
+ "loss": 4.284671783447266,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.41768139600753784,
+ "learning_rate": 0.0006,
+ "loss": 4.343086242675781,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.3960258960723877,
+ "learning_rate": 0.0006,
+ "loss": 4.2318806648254395,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.3981281518936157,
+ "learning_rate": 0.0006,
+ "loss": 4.2755937576293945,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.39555633068084717,
+ "learning_rate": 0.0006,
+ "loss": 4.383005142211914,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.4002246856689453,
+ "learning_rate": 0.0006,
+ "loss": 4.332754135131836,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.4106678068637848,
+ "learning_rate": 0.0006,
+ "loss": 4.391409873962402,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.3856841027736664,
+ "learning_rate": 0.0006,
+ "loss": 4.316332817077637,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.3910135328769684,
+ "learning_rate": 0.0006,
+ "loss": 4.327088356018066,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.38631075620651245,
+ "learning_rate": 0.0006,
+ "loss": 4.308974266052246,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.36760637164115906,
+ "learning_rate": 0.0006,
+ "loss": 4.396300315856934,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.39333999156951904,
+ "learning_rate": 0.0006,
+ "loss": 4.33335018157959,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.37966030836105347,
+ "learning_rate": 0.0006,
+ "loss": 4.298529148101807,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.3774148225784302,
+ "learning_rate": 0.0006,
+ "loss": 4.218472480773926,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.38100066781044006,
+ "learning_rate": 0.0006,
+ "loss": 4.337407112121582,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.3924340605735779,
+ "learning_rate": 0.0006,
+ "loss": 4.38271427154541,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.37583890557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.331287384033203,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.3993631601333618,
+ "learning_rate": 0.0006,
+ "loss": 4.297436237335205,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.41312935948371887,
+ "learning_rate": 0.0006,
+ "loss": 4.305514335632324,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.4133725166320801,
+ "learning_rate": 0.0006,
+ "loss": 4.339967727661133,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.3860441744327545,
+ "learning_rate": 0.0006,
+ "loss": 4.31814432144165,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.3891344964504242,
+ "learning_rate": 0.0006,
+ "loss": 4.346461772918701,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.3863038122653961,
+ "learning_rate": 0.0006,
+ "loss": 4.413818359375,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.37267377972602844,
+ "learning_rate": 0.0006,
+ "loss": 4.333828449249268,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.37040555477142334,
+ "learning_rate": 0.0006,
+ "loss": 4.456110000610352,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.3837447464466095,
+ "learning_rate": 0.0006,
+ "loss": 4.242850303649902,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.39074262976646423,
+ "learning_rate": 0.0006,
+ "loss": 4.3549485206604,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.38219889998435974,
+ "learning_rate": 0.0006,
+ "loss": 4.296403884887695,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.38378462195396423,
+ "learning_rate": 0.0006,
+ "loss": 4.369739532470703,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.37791451811790466,
+ "learning_rate": 0.0006,
+ "loss": 4.372786998748779,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.3720730245113373,
+ "learning_rate": 0.0006,
+ "loss": 4.292923450469971,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.3587147295475006,
+ "learning_rate": 0.0006,
+ "loss": 4.336228847503662,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.3617904782295227,
+ "learning_rate": 0.0006,
+ "loss": 4.380134582519531,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.3623189628124237,
+ "learning_rate": 0.0006,
+ "loss": 4.340606689453125,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.37112200260162354,
+ "learning_rate": 0.0006,
+ "loss": 4.310943603515625,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.3742401897907257,
+ "learning_rate": 0.0006,
+ "loss": 4.3478593826293945,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.374665230512619,
+ "learning_rate": 0.0006,
+ "loss": 4.4058637619018555,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.38624459505081177,
+ "learning_rate": 0.0006,
+ "loss": 4.348050594329834,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.40541738271713257,
+ "learning_rate": 0.0006,
+ "loss": 4.471852779388428,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.3857991695404053,
+ "learning_rate": 0.0006,
+ "loss": 4.312546253204346,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.41659343242645264,
+ "learning_rate": 0.0006,
+ "loss": 4.315553188323975,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.43697381019592285,
+ "learning_rate": 0.0006,
+ "loss": 4.333539962768555,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.45475196838378906,
+ "learning_rate": 0.0006,
+ "loss": 4.362082481384277,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.4871002733707428,
+ "learning_rate": 0.0006,
+ "loss": 4.328166484832764,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 6.260599136352539,
+ "eval_runtime": 43.7447,
+ "eval_samples_per_second": 55.824,
+ "eval_steps_per_second": 3.498,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.42134732007980347,
+ "learning_rate": 0.0006,
+ "loss": 4.200570106506348,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.44146645069122314,
+ "learning_rate": 0.0006,
+ "loss": 4.219682693481445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.4451248049736023,
+ "learning_rate": 0.0006,
+ "loss": 4.240499496459961,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.45094963908195496,
+ "learning_rate": 0.0006,
+ "loss": 4.252233505249023,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.4750693738460541,
+ "learning_rate": 0.0006,
+ "loss": 4.229597091674805,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.5211004614830017,
+ "learning_rate": 0.0006,
+ "loss": 4.3165435791015625,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.5570583343505859,
+ "learning_rate": 0.0006,
+ "loss": 4.280586242675781,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.543846845626831,
+ "learning_rate": 0.0006,
+ "loss": 4.243165493011475,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.4849488437175751,
+ "learning_rate": 0.0006,
+ "loss": 4.190418243408203,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.485515296459198,
+ "learning_rate": 0.0006,
+ "loss": 4.30844783782959,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.5233704447746277,
+ "learning_rate": 0.0006,
+ "loss": 4.229648590087891,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.5426996946334839,
+ "learning_rate": 0.0006,
+ "loss": 4.31719970703125,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.5974491238594055,
+ "learning_rate": 0.0006,
+ "loss": 4.250443458557129,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.6469011902809143,
+ "learning_rate": 0.0006,
+ "loss": 4.354139804840088,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.7294577360153198,
+ "learning_rate": 0.0006,
+ "loss": 4.3642706871032715,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.6488705277442932,
+ "learning_rate": 0.0006,
+ "loss": 4.275979995727539,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.4984777271747589,
+ "learning_rate": 0.0006,
+ "loss": 4.217861175537109,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.5109938979148865,
+ "learning_rate": 0.0006,
+ "loss": 4.286642074584961,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.49844229221343994,
+ "learning_rate": 0.0006,
+ "loss": 4.238213539123535,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.488077312707901,
+ "learning_rate": 0.0006,
+ "loss": 4.231420040130615,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.4928477704524994,
+ "learning_rate": 0.0006,
+ "loss": 4.380367279052734,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.49250566959381104,
+ "learning_rate": 0.0006,
+ "loss": 4.29306697845459,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.48340678215026855,
+ "learning_rate": 0.0006,
+ "loss": 4.2856645584106445,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.4970073401927948,
+ "learning_rate": 0.0006,
+ "loss": 4.34441614151001,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.4387594759464264,
+ "learning_rate": 0.0006,
+ "loss": 4.350798606872559,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.4448535144329071,
+ "learning_rate": 0.0006,
+ "loss": 4.350264072418213,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.4491334855556488,
+ "learning_rate": 0.0006,
+ "loss": 4.310317039489746,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.4396249055862427,
+ "learning_rate": 0.0006,
+ "loss": 4.3137288093566895,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.42331191897392273,
+ "learning_rate": 0.0006,
+ "loss": 4.283992767333984,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.42483261227607727,
+ "learning_rate": 0.0006,
+ "loss": 4.269024848937988,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.40380987524986267,
+ "learning_rate": 0.0006,
+ "loss": 4.321262836456299,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.4109397530555725,
+ "learning_rate": 0.0006,
+ "loss": 4.285927772521973,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.43696823716163635,
+ "learning_rate": 0.0006,
+ "loss": 4.303576946258545,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.379971444606781,
+ "learning_rate": 0.0006,
+ "loss": 4.388635158538818,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.4044286608695984,
+ "learning_rate": 0.0006,
+ "loss": 4.329499244689941,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.4053935706615448,
+ "learning_rate": 0.0006,
+ "loss": 4.297847747802734,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.38198018074035645,
+ "learning_rate": 0.0006,
+ "loss": 4.288124084472656,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.39832696318626404,
+ "learning_rate": 0.0006,
+ "loss": 4.380218982696533,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.40758490562438965,
+ "learning_rate": 0.0006,
+ "loss": 4.32636833190918,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.3803170621395111,
+ "learning_rate": 0.0006,
+ "loss": 4.30747127532959,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.3853742480278015,
+ "learning_rate": 0.0006,
+ "loss": 4.324460029602051,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.4050910174846649,
+ "learning_rate": 0.0006,
+ "loss": 4.306979179382324,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.4187234342098236,
+ "learning_rate": 0.0006,
+ "loss": 4.334494113922119,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.4233380854129791,
+ "learning_rate": 0.0006,
+ "loss": 4.338802814483643,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.4379981458187103,
+ "learning_rate": 0.0006,
+ "loss": 4.399646759033203,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.4394802749156952,
+ "learning_rate": 0.0006,
+ "loss": 4.33521842956543,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.415715754032135,
+ "learning_rate": 0.0006,
+ "loss": 4.3247880935668945,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.3918288052082062,
+ "learning_rate": 0.0006,
+ "loss": 4.329852104187012,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.40957361459732056,
+ "learning_rate": 0.0006,
+ "loss": 4.266562461853027,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.4475722312927246,
+ "learning_rate": 0.0006,
+ "loss": 4.513836860656738,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.44053083658218384,
+ "learning_rate": 0.0006,
+ "loss": 4.305239677429199,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.4229199290275574,
+ "learning_rate": 0.0006,
+ "loss": 4.347291946411133,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.4058760106563568,
+ "learning_rate": 0.0006,
+ "loss": 4.377959251403809,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.4245327115058899,
+ "learning_rate": 0.0006,
+ "loss": 4.363465309143066,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.4446028470993042,
+ "learning_rate": 0.0006,
+ "loss": 4.4517316818237305,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.40111324191093445,
+ "learning_rate": 0.0006,
+ "loss": 4.294158935546875,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.39330703020095825,
+ "learning_rate": 0.0006,
+ "loss": 4.329209327697754,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.4327717423439026,
+ "learning_rate": 0.0006,
+ "loss": 4.349915027618408,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.411691814661026,
+ "learning_rate": 0.0006,
+ "loss": 4.441436290740967,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.39029157161712646,
+ "learning_rate": 0.0006,
+ "loss": 4.339478492736816,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.4064500331878662,
+ "learning_rate": 0.0006,
+ "loss": 4.3008952140808105,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.40196365118026733,
+ "learning_rate": 0.0006,
+ "loss": 4.278536319732666,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.3925584554672241,
+ "learning_rate": 0.0006,
+ "loss": 4.351866722106934,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.37795954942703247,
+ "learning_rate": 0.0006,
+ "loss": 4.40715217590332,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.3920917510986328,
+ "learning_rate": 0.0006,
+ "loss": 4.303398132324219,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.3982515335083008,
+ "learning_rate": 0.0006,
+ "loss": 4.397731304168701,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.41097545623779297,
+ "learning_rate": 0.0006,
+ "loss": 4.372936248779297,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.38546738028526306,
+ "learning_rate": 0.0006,
+ "loss": 4.36802339553833,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.3931894302368164,
+ "learning_rate": 0.0006,
+ "loss": 4.397665023803711,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.37862512469291687,
+ "learning_rate": 0.0006,
+ "loss": 4.356085777282715,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.41227665543556213,
+ "learning_rate": 0.0006,
+ "loss": 4.4159650802612305,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.499416321516037,
+ "learning_rate": 0.0006,
+ "loss": 4.329807281494141,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 6.198739051818848,
+ "eval_runtime": 43.6864,
+ "eval_samples_per_second": 55.898,
+ "eval_steps_per_second": 3.502,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.4628259837627411,
+ "learning_rate": 0.0006,
+ "loss": 4.170797824859619,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.4806155860424042,
+ "learning_rate": 0.0006,
+ "loss": 4.2210259437561035,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.4822350740432739,
+ "learning_rate": 0.0006,
+ "loss": 4.23138952255249,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.286277770996094,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.5044941306114197,
+ "learning_rate": 0.0006,
+ "loss": 4.232921600341797,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.5530663132667542,
+ "learning_rate": 0.0006,
+ "loss": 4.221680641174316,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.5776026844978333,
+ "learning_rate": 0.0006,
+ "loss": 4.213212966918945,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.6634025573730469,
+ "learning_rate": 0.0006,
+ "loss": 4.319071292877197,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.76152503490448,
+ "learning_rate": 0.0006,
+ "loss": 4.214156150817871,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.8480479717254639,
+ "learning_rate": 0.0006,
+ "loss": 4.321653842926025,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.9160254001617432,
+ "learning_rate": 0.0006,
+ "loss": 4.33962869644165,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.8524528741836548,
+ "learning_rate": 0.0006,
+ "loss": 4.268365859985352,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.7075300216674805,
+ "learning_rate": 0.0006,
+ "loss": 4.306760311126709,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.6349018216133118,
+ "learning_rate": 0.0006,
+ "loss": 4.333056926727295,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.5707677006721497,
+ "learning_rate": 0.0006,
+ "loss": 4.32132625579834,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.5484790205955505,
+ "learning_rate": 0.0006,
+ "loss": 4.3016767501831055,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.5517436861991882,
+ "learning_rate": 0.0006,
+ "loss": 4.295352935791016,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.5682413578033447,
+ "learning_rate": 0.0006,
+ "loss": 4.302443504333496,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.5568698644638062,
+ "learning_rate": 0.0006,
+ "loss": 4.328906059265137,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.5146242380142212,
+ "learning_rate": 0.0006,
+ "loss": 4.314318656921387,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.4866996705532074,
+ "learning_rate": 0.0006,
+ "loss": 4.321515083312988,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.47854411602020264,
+ "learning_rate": 0.0006,
+ "loss": 4.336956977844238,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.48322951793670654,
+ "learning_rate": 0.0006,
+ "loss": 4.270317554473877,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.4432683289051056,
+ "learning_rate": 0.0006,
+ "loss": 4.3168792724609375,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.42538025975227356,
+ "learning_rate": 0.0006,
+ "loss": 4.236387729644775,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.4699258804321289,
+ "learning_rate": 0.0006,
+ "loss": 4.372434616088867,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.4574076235294342,
+ "learning_rate": 0.0006,
+ "loss": 4.347474098205566,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.42455345392227173,
+ "learning_rate": 0.0006,
+ "loss": 4.345785140991211,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.4194679260253906,
+ "learning_rate": 0.0006,
+ "loss": 4.326481819152832,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.4357808828353882,
+ "learning_rate": 0.0006,
+ "loss": 4.3457183837890625,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.4160650670528412,
+ "learning_rate": 0.0006,
+ "loss": 4.24708890914917,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.4105308949947357,
+ "learning_rate": 0.0006,
+ "loss": 4.3586530685424805,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.399740993976593,
+ "learning_rate": 0.0006,
+ "loss": 4.352291584014893,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.39557352662086487,
+ "learning_rate": 0.0006,
+ "loss": 4.284960746765137,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.4299493134021759,
+ "learning_rate": 0.0006,
+ "loss": 4.285758018493652,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.4042324721813202,
+ "learning_rate": 0.0006,
+ "loss": 4.357293605804443,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.396954745054245,
+ "learning_rate": 0.0006,
+ "loss": 4.2686262130737305,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.3821943998336792,
+ "learning_rate": 0.0006,
+ "loss": 4.357154846191406,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.3846510648727417,
+ "learning_rate": 0.0006,
+ "loss": 4.323714256286621,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.37851205468177795,
+ "learning_rate": 0.0006,
+ "loss": 4.341939926147461,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.37929001450538635,
+ "learning_rate": 0.0006,
+ "loss": 4.248264312744141,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.3882073163986206,
+ "learning_rate": 0.0006,
+ "loss": 4.307059288024902,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.38127774000167847,
+ "learning_rate": 0.0006,
+ "loss": 4.363462448120117,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.3818758726119995,
+ "learning_rate": 0.0006,
+ "loss": 4.322787284851074,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.389406681060791,
+ "learning_rate": 0.0006,
+ "loss": 4.457492828369141,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.38305217027664185,
+ "learning_rate": 0.0006,
+ "loss": 4.306647300720215,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.3900682032108307,
+ "learning_rate": 0.0006,
+ "loss": 4.331067085266113,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.38036227226257324,
+ "learning_rate": 0.0006,
+ "loss": 4.264892578125,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.39323344826698303,
+ "learning_rate": 0.0006,
+ "loss": 4.365866661071777,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.4049435257911682,
+ "learning_rate": 0.0006,
+ "loss": 4.381568908691406,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.4216940701007843,
+ "learning_rate": 0.0006,
+ "loss": 4.364271640777588,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.42422112822532654,
+ "learning_rate": 0.0006,
+ "loss": 4.400199890136719,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.3819519281387329,
+ "learning_rate": 0.0006,
+ "loss": 4.257974147796631,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.4014202654361725,
+ "learning_rate": 0.0006,
+ "loss": 4.329166889190674,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.39812493324279785,
+ "learning_rate": 0.0006,
+ "loss": 4.372607231140137,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.3916856050491333,
+ "learning_rate": 0.0006,
+ "loss": 4.385530471801758,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.4020134508609772,
+ "learning_rate": 0.0006,
+ "loss": 4.3358330726623535,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.3931422829627991,
+ "learning_rate": 0.0006,
+ "loss": 4.381669521331787,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.37799912691116333,
+ "learning_rate": 0.0006,
+ "loss": 4.392168998718262,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.39257925748825073,
+ "learning_rate": 0.0006,
+ "loss": 4.4379096031188965,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.39501482248306274,
+ "learning_rate": 0.0006,
+ "loss": 4.323174953460693,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.3914605677127838,
+ "learning_rate": 0.0006,
+ "loss": 4.365396022796631,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.3778083026409149,
+ "learning_rate": 0.0006,
+ "loss": 4.3220720291137695,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.3911595344543457,
+ "learning_rate": 0.0006,
+ "loss": 4.323670864105225,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.3692200779914856,
+ "learning_rate": 0.0006,
+ "loss": 4.341980934143066,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.3713432848453522,
+ "learning_rate": 0.0006,
+ "loss": 4.304820537567139,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.37348702549934387,
+ "learning_rate": 0.0006,
+ "loss": 4.326486587524414,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.3943784236907959,
+ "learning_rate": 0.0006,
+ "loss": 4.374529838562012,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.4153553247451782,
+ "learning_rate": 0.0006,
+ "loss": 4.392250061035156,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.3885365426540375,
+ "learning_rate": 0.0006,
+ "loss": 4.322462558746338,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.3777163326740265,
+ "learning_rate": 0.0006,
+ "loss": 4.399444103240967,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.45014286041259766,
+ "learning_rate": 0.0006,
+ "loss": 4.266523361206055,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 6.2529473304748535,
+ "eval_runtime": 43.7478,
+ "eval_samples_per_second": 55.82,
+ "eval_steps_per_second": 3.497,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.4145124852657318,
+ "learning_rate": 0.0006,
+ "loss": 4.266193389892578,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.44340333342552185,
+ "learning_rate": 0.0006,
+ "loss": 4.134491443634033,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.4580900967121124,
+ "learning_rate": 0.0006,
+ "loss": 4.287178993225098,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.47761040925979614,
+ "learning_rate": 0.0006,
+ "loss": 4.429558277130127,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.46682101488113403,
+ "learning_rate": 0.0006,
+ "loss": 4.317314147949219,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.4769667685031891,
+ "learning_rate": 0.0006,
+ "loss": 4.290413856506348,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.539111316204071,
+ "learning_rate": 0.0006,
+ "loss": 4.240926742553711,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.6831890344619751,
+ "learning_rate": 0.0006,
+ "loss": 4.204584121704102,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.749098539352417,
+ "learning_rate": 0.0006,
+ "loss": 4.25895881652832,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.7921332120895386,
+ "learning_rate": 0.0006,
+ "loss": 4.339118003845215,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.7587332725524902,
+ "learning_rate": 0.0006,
+ "loss": 4.2877516746521,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.6472265124320984,
+ "learning_rate": 0.0006,
+ "loss": 4.2839131355285645,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.5472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.346395492553711,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.6083328723907471,
+ "learning_rate": 0.0006,
+ "loss": 4.240531921386719,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.5928010940551758,
+ "learning_rate": 0.0006,
+ "loss": 4.347572326660156,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.532841145992279,
+ "learning_rate": 0.0006,
+ "loss": 4.281345844268799,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.4778757691383362,
+ "learning_rate": 0.0006,
+ "loss": 4.279055118560791,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.48648887872695923,
+ "learning_rate": 0.0006,
+ "loss": 4.198624610900879,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.43191879987716675,
+ "learning_rate": 0.0006,
+ "loss": 4.236109733581543,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.45012032985687256,
+ "learning_rate": 0.0006,
+ "loss": 4.323042869567871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.4548600912094116,
+ "learning_rate": 0.0006,
+ "loss": 4.2210235595703125,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.45999664068222046,
+ "learning_rate": 0.0006,
+ "loss": 4.2899250984191895,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.4702019691467285,
+ "learning_rate": 0.0006,
+ "loss": 4.3281145095825195,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.4921978712081909,
+ "learning_rate": 0.0006,
+ "loss": 4.310947418212891,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.4662175178527832,
+ "learning_rate": 0.0006,
+ "loss": 4.191643714904785,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.46207281947135925,
+ "learning_rate": 0.0006,
+ "loss": 4.423742771148682,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.46523746848106384,
+ "learning_rate": 0.0006,
+ "loss": 4.321560859680176,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.42817118763923645,
+ "learning_rate": 0.0006,
+ "loss": 4.275110244750977,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.4028136134147644,
+ "learning_rate": 0.0006,
+ "loss": 4.26282262802124,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.39602214097976685,
+ "learning_rate": 0.0006,
+ "loss": 4.350768089294434,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.4017263948917389,
+ "learning_rate": 0.0006,
+ "loss": 4.2504682540893555,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.4112628996372223,
+ "learning_rate": 0.0006,
+ "loss": 4.262454986572266,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.44213998317718506,
+ "learning_rate": 0.0006,
+ "loss": 4.33111572265625,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.4273027777671814,
+ "learning_rate": 0.0006,
+ "loss": 4.241754055023193,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.42171111702919006,
+ "learning_rate": 0.0006,
+ "loss": 4.3793134689331055,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.4059634506702423,
+ "learning_rate": 0.0006,
+ "loss": 4.267672538757324,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.40447160601615906,
+ "learning_rate": 0.0006,
+ "loss": 4.282671928405762,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.39427000284194946,
+ "learning_rate": 0.0006,
+ "loss": 4.286433219909668,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.3932870924472809,
+ "learning_rate": 0.0006,
+ "loss": 4.31290340423584,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.37661924958229065,
+ "learning_rate": 0.0006,
+ "loss": 4.262170791625977,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.40946775674819946,
+ "learning_rate": 0.0006,
+ "loss": 4.303168296813965,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.3941985070705414,
+ "learning_rate": 0.0006,
+ "loss": 4.310337066650391,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.40164992213249207,
+ "learning_rate": 0.0006,
+ "loss": 4.312982559204102,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.3975890874862671,
+ "learning_rate": 0.0006,
+ "loss": 4.3248701095581055,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.38574227690696716,
+ "learning_rate": 0.0006,
+ "loss": 4.38369083404541,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.3992249667644501,
+ "learning_rate": 0.0006,
+ "loss": 4.297112464904785,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.39868417382240295,
+ "learning_rate": 0.0006,
+ "loss": 4.295505046844482,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.4101839065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.3519697189331055,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.379717081785202,
+ "learning_rate": 0.0006,
+ "loss": 4.2289581298828125,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.3912242352962494,
+ "learning_rate": 0.0006,
+ "loss": 4.40312385559082,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.3885950446128845,
+ "learning_rate": 0.0006,
+ "loss": 4.286848068237305,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.3892953097820282,
+ "learning_rate": 0.0006,
+ "loss": 4.292012691497803,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.38809701800346375,
+ "learning_rate": 0.0006,
+ "loss": 4.374564170837402,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.3903641700744629,
+ "learning_rate": 0.0006,
+ "loss": 4.394603729248047,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.39104169607162476,
+ "learning_rate": 0.0006,
+ "loss": 4.35471773147583,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.3975231349468231,
+ "learning_rate": 0.0006,
+ "loss": 4.382683753967285,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.40965917706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.367456436157227,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.4243786633014679,
+ "learning_rate": 0.0006,
+ "loss": 4.367887020111084,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.40315696597099304,
+ "learning_rate": 0.0006,
+ "loss": 4.300185203552246,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.41343727707862854,
+ "learning_rate": 0.0006,
+ "loss": 4.331711292266846,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.40250977873802185,
+ "learning_rate": 0.0006,
+ "loss": 4.3398590087890625,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.38862133026123047,
+ "learning_rate": 0.0006,
+ "loss": 4.272953033447266,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.39667993783950806,
+ "learning_rate": 0.0006,
+ "loss": 4.47554874420166,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.41999825835227966,
+ "learning_rate": 0.0006,
+ "loss": 4.263052940368652,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.4195004105567932,
+ "learning_rate": 0.0006,
+ "loss": 4.330724716186523,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.3944961130619049,
+ "learning_rate": 0.0006,
+ "loss": 4.3109002113342285,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.3944008946418762,
+ "learning_rate": 0.0006,
+ "loss": 4.298914432525635,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.4016371965408325,
+ "learning_rate": 0.0006,
+ "loss": 4.346005439758301,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.38281115889549255,
+ "learning_rate": 0.0006,
+ "loss": 4.332263946533203,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.36780816316604614,
+ "learning_rate": 0.0006,
+ "loss": 4.356542587280273,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.37247809767723083,
+ "learning_rate": 0.0006,
+ "loss": 4.244487285614014,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.4414741098880768,
+ "learning_rate": 0.0006,
+ "loss": 4.326817035675049,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 6.229246616363525,
+ "eval_runtime": 43.7873,
+ "eval_samples_per_second": 55.77,
+ "eval_steps_per_second": 3.494,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.3957669138908386,
+ "learning_rate": 0.0006,
+ "loss": 4.263937950134277,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.4236466586589813,
+ "learning_rate": 0.0006,
+ "loss": 4.222219467163086,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.47564026713371277,
+ "learning_rate": 0.0006,
+ "loss": 4.266385555267334,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.5004186630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.262574195861816,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.592176616191864,
+ "learning_rate": 0.0006,
+ "loss": 4.225201606750488,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.7019115090370178,
+ "learning_rate": 0.0006,
+ "loss": 4.23977518081665,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.8254161477088928,
+ "learning_rate": 0.0006,
+ "loss": 4.227803707122803,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.8682525753974915,
+ "learning_rate": 0.0006,
+ "loss": 4.321664810180664,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.9065311551094055,
+ "learning_rate": 0.0006,
+ "loss": 4.253820419311523,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.8974156975746155,
+ "learning_rate": 0.0006,
+ "loss": 4.3650312423706055,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.7837588787078857,
+ "learning_rate": 0.0006,
+ "loss": 4.283933639526367,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.7024438381195068,
+ "learning_rate": 0.0006,
+ "loss": 4.258434772491455,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.625393271446228,
+ "learning_rate": 0.0006,
+ "loss": 4.23687744140625,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.5788878202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.234710693359375,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.5580928325653076,
+ "learning_rate": 0.0006,
+ "loss": 4.29906702041626,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.48748156428337097,
+ "learning_rate": 0.0006,
+ "loss": 4.226408958435059,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.4848710298538208,
+ "learning_rate": 0.0006,
+ "loss": 4.2123122215271,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.5063420534133911,
+ "learning_rate": 0.0006,
+ "loss": 4.255153656005859,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.5110829472541809,
+ "learning_rate": 0.0006,
+ "loss": 4.358216285705566,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.49089232087135315,
+ "learning_rate": 0.0006,
+ "loss": 4.300388813018799,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.4603854715824127,
+ "learning_rate": 0.0006,
+ "loss": 4.2832136154174805,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.4599403440952301,
+ "learning_rate": 0.0006,
+ "loss": 4.295095443725586,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.4395982623100281,
+ "learning_rate": 0.0006,
+ "loss": 4.26538610458374,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.41270455718040466,
+ "learning_rate": 0.0006,
+ "loss": 4.2344889640808105,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.42688557505607605,
+ "learning_rate": 0.0006,
+ "loss": 4.207379341125488,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.4363268315792084,
+ "learning_rate": 0.0006,
+ "loss": 4.30502462387085,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.42514753341674805,
+ "learning_rate": 0.0006,
+ "loss": 4.3195905685424805,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.3887978494167328,
+ "learning_rate": 0.0006,
+ "loss": 4.23016357421875,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.39444148540496826,
+ "learning_rate": 0.0006,
+ "loss": 4.265226364135742,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.41804856061935425,
+ "learning_rate": 0.0006,
+ "loss": 4.399003028869629,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.4026116132736206,
+ "learning_rate": 0.0006,
+ "loss": 4.356629371643066,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.4023478329181671,
+ "learning_rate": 0.0006,
+ "loss": 4.379050254821777,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.39880287647247314,
+ "learning_rate": 0.0006,
+ "loss": 4.277581214904785,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.38926973938941956,
+ "learning_rate": 0.0006,
+ "loss": 4.2318902015686035,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.3924587368965149,
+ "learning_rate": 0.0006,
+ "loss": 4.329956531524658,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.40522003173828125,
+ "learning_rate": 0.0006,
+ "loss": 4.315302848815918,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.3916785418987274,
+ "learning_rate": 0.0006,
+ "loss": 4.319087505340576,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.419207364320755,
+ "learning_rate": 0.0006,
+ "loss": 4.373052597045898,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.3973175287246704,
+ "learning_rate": 0.0006,
+ "loss": 4.323544025421143,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.37236395478248596,
+ "learning_rate": 0.0006,
+ "loss": 4.206120491027832,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.385455846786499,
+ "learning_rate": 0.0006,
+ "loss": 4.294527053833008,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.3870242238044739,
+ "learning_rate": 0.0006,
+ "loss": 4.221030235290527,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.3881280720233917,
+ "learning_rate": 0.0006,
+ "loss": 4.233551025390625,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.3722829818725586,
+ "learning_rate": 0.0006,
+ "loss": 4.257683277130127,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.375012069940567,
+ "learning_rate": 0.0006,
+ "loss": 4.350418567657471,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.38077789545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.192095756530762,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.3906152844429016,
+ "learning_rate": 0.0006,
+ "loss": 4.357870578765869,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.3887590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.318536281585693,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.3828654885292053,
+ "learning_rate": 0.0006,
+ "loss": 4.28328800201416,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.39694708585739136,
+ "learning_rate": 0.0006,
+ "loss": 4.391949653625488,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.3975147604942322,
+ "learning_rate": 0.0006,
+ "loss": 4.352961540222168,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.3841004967689514,
+ "learning_rate": 0.0006,
+ "loss": 4.228391647338867,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.3807359039783478,
+ "learning_rate": 0.0006,
+ "loss": 4.22756290435791,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.3987439274787903,
+ "learning_rate": 0.0006,
+ "loss": 4.407889366149902,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.4201034605503082,
+ "learning_rate": 0.0006,
+ "loss": 4.34971809387207,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.4346381723880768,
+ "learning_rate": 0.0006,
+ "loss": 4.293330192565918,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.44999462366104126,
+ "learning_rate": 0.0006,
+ "loss": 4.417044162750244,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.38561612367630005,
+ "learning_rate": 0.0006,
+ "loss": 4.258061408996582,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.3790895938873291,
+ "learning_rate": 0.0006,
+ "loss": 4.321300029754639,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.3984527289867401,
+ "learning_rate": 0.0006,
+ "loss": 4.247694969177246,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.42955538630485535,
+ "learning_rate": 0.0006,
+ "loss": 4.343568325042725,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.40776535868644714,
+ "learning_rate": 0.0006,
+ "loss": 4.34933614730835,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.39172181487083435,
+ "learning_rate": 0.0006,
+ "loss": 4.379310607910156,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.40323659777641296,
+ "learning_rate": 0.0006,
+ "loss": 4.268922805786133,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.4012514352798462,
+ "learning_rate": 0.0006,
+ "loss": 4.363704681396484,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.39983171224594116,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.39482736587524414,
+ "learning_rate": 0.0006,
+ "loss": 4.338078022003174,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.40444278717041016,
+ "learning_rate": 0.0006,
+ "loss": 4.373770713806152,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.3808857500553131,
+ "learning_rate": 0.0006,
+ "loss": 4.326850891113281,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.38284221291542053,
+ "learning_rate": 0.0006,
+ "loss": 4.389925956726074,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.3825092613697052,
+ "learning_rate": 0.0006,
+ "loss": 4.389588356018066,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.4557396471500397,
+ "learning_rate": 0.0006,
+ "loss": 4.302459239959717,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 6.270473480224609,
+ "eval_runtime": 43.6892,
+ "eval_samples_per_second": 55.895,
+ "eval_steps_per_second": 3.502,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.4212155044078827,
+ "learning_rate": 0.0006,
+ "loss": 4.3081440925598145,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.4590097963809967,
+ "learning_rate": 0.0006,
+ "loss": 4.150710582733154,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.4502851963043213,
+ "learning_rate": 0.0006,
+ "loss": 4.238507270812988,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.44205573201179504,
+ "learning_rate": 0.0006,
+ "loss": 4.202637672424316,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.5142990946769714,
+ "learning_rate": 0.0006,
+ "loss": 4.325977325439453,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.5224044919013977,
+ "learning_rate": 0.0006,
+ "loss": 4.265192031860352,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.5608325004577637,
+ "learning_rate": 0.0006,
+ "loss": 4.295414924621582,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.6955265402793884,
+ "learning_rate": 0.0006,
+ "loss": 4.218759536743164,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.868670642375946,
+ "learning_rate": 0.0006,
+ "loss": 4.220717430114746,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 1.0042238235473633,
+ "learning_rate": 0.0006,
+ "loss": 4.290093421936035,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.9413097500801086,
+ "learning_rate": 0.0006,
+ "loss": 4.324940204620361,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.697178304195404,
+ "learning_rate": 0.0006,
+ "loss": 4.301477909088135,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.7008699774742126,
+ "learning_rate": 0.0006,
+ "loss": 4.2905120849609375,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.6534171104431152,
+ "learning_rate": 0.0006,
+ "loss": 4.20712947845459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.6290929317474365,
+ "learning_rate": 0.0006,
+ "loss": 4.229743003845215,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.5494177341461182,
+ "learning_rate": 0.0006,
+ "loss": 4.185794353485107,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.5147525072097778,
+ "learning_rate": 0.0006,
+ "loss": 4.26673698425293,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.5048599243164062,
+ "learning_rate": 0.0006,
+ "loss": 4.210233211517334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.5414654016494751,
+ "learning_rate": 0.0006,
+ "loss": 4.333046913146973,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.47082704305648804,
+ "learning_rate": 0.0006,
+ "loss": 4.301358699798584,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.4675837755203247,
+ "learning_rate": 0.0006,
+ "loss": 4.204195022583008,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.4378611743450165,
+ "learning_rate": 0.0006,
+ "loss": 4.155127048492432,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.4415567219257355,
+ "learning_rate": 0.0006,
+ "loss": 4.2721967697143555,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.47591230273246765,
+ "learning_rate": 0.0006,
+ "loss": 4.358033180236816,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.4658828675746918,
+ "learning_rate": 0.0006,
+ "loss": 4.294735908508301,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.4501555860042572,
+ "learning_rate": 0.0006,
+ "loss": 4.263189315795898,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.46739140152931213,
+ "learning_rate": 0.0006,
+ "loss": 4.32848596572876,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.45165732502937317,
+ "learning_rate": 0.0006,
+ "loss": 4.267234802246094,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.409282922744751,
+ "learning_rate": 0.0006,
+ "loss": 4.285059928894043,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.42865875363349915,
+ "learning_rate": 0.0006,
+ "loss": 4.227115631103516,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.4552954137325287,
+ "learning_rate": 0.0006,
+ "loss": 4.325474739074707,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.42055317759513855,
+ "learning_rate": 0.0006,
+ "loss": 4.2007951736450195,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.4279162287712097,
+ "learning_rate": 0.0006,
+ "loss": 4.359176158905029,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.4455033540725708,
+ "learning_rate": 0.0006,
+ "loss": 4.275487899780273,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.43002691864967346,
+ "learning_rate": 0.0006,
+ "loss": 4.181482315063477,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.44032880663871765,
+ "learning_rate": 0.0006,
+ "loss": 4.36613655090332,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.4100615680217743,
+ "learning_rate": 0.0006,
+ "loss": 4.265050411224365,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.39392155408859253,
+ "learning_rate": 0.0006,
+ "loss": 4.325000762939453,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.4347812533378601,
+ "learning_rate": 0.0006,
+ "loss": 4.307058334350586,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.42177414894104004,
+ "learning_rate": 0.0006,
+ "loss": 4.270357131958008,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.431207537651062,
+ "learning_rate": 0.0006,
+ "loss": 4.414610862731934,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.4254903495311737,
+ "learning_rate": 0.0006,
+ "loss": 4.285326957702637,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.4089864194393158,
+ "learning_rate": 0.0006,
+ "loss": 4.275937080383301,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.4102814197540283,
+ "learning_rate": 0.0006,
+ "loss": 4.303900718688965,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.3859243094921112,
+ "learning_rate": 0.0006,
+ "loss": 4.215274333953857,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.4012472331523895,
+ "learning_rate": 0.0006,
+ "loss": 4.328278541564941,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.4047054648399353,
+ "learning_rate": 0.0006,
+ "loss": 4.276683807373047,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.4050472676753998,
+ "learning_rate": 0.0006,
+ "loss": 4.302199363708496,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.40645819902420044,
+ "learning_rate": 0.0006,
+ "loss": 4.401165008544922,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.3888589143753052,
+ "learning_rate": 0.0006,
+ "loss": 4.258542060852051,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.3865634500980377,
+ "learning_rate": 0.0006,
+ "loss": 4.224770545959473,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.40157631039619446,
+ "learning_rate": 0.0006,
+ "loss": 4.321439743041992,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.4097841680049896,
+ "learning_rate": 0.0006,
+ "loss": 4.436502456665039,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.4125346541404724,
+ "learning_rate": 0.0006,
+ "loss": 4.3067522048950195,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.39692872762680054,
+ "learning_rate": 0.0006,
+ "loss": 4.338959693908691,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.3942561149597168,
+ "learning_rate": 0.0006,
+ "loss": 4.29915714263916,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.3940109610557556,
+ "learning_rate": 0.0006,
+ "loss": 4.343454360961914,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.39725086092948914,
+ "learning_rate": 0.0006,
+ "loss": 4.294066429138184,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.3779081702232361,
+ "learning_rate": 0.0006,
+ "loss": 4.2644758224487305,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.37665313482284546,
+ "learning_rate": 0.0006,
+ "loss": 4.3241119384765625,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.394426167011261,
+ "learning_rate": 0.0006,
+ "loss": 4.391383647918701,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.3948868215084076,
+ "learning_rate": 0.0006,
+ "loss": 4.336596965789795,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.4218588173389435,
+ "learning_rate": 0.0006,
+ "loss": 4.268021583557129,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.3900219202041626,
+ "learning_rate": 0.0006,
+ "loss": 4.323431015014648,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.3683486580848694,
+ "learning_rate": 0.0006,
+ "loss": 4.283624649047852,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.3842235803604126,
+ "learning_rate": 0.0006,
+ "loss": 4.302942752838135,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.40175142884254456,
+ "learning_rate": 0.0006,
+ "loss": 4.394964218139648,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.4041447639465332,
+ "learning_rate": 0.0006,
+ "loss": 4.355955600738525,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.38710159063339233,
+ "learning_rate": 0.0006,
+ "loss": 4.340442180633545,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.38841989636421204,
+ "learning_rate": 0.0006,
+ "loss": 4.380399703979492,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.41300448775291443,
+ "learning_rate": 0.0006,
+ "loss": 4.321839332580566,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.49495911598205566,
+ "learning_rate": 0.0006,
+ "loss": 4.293513774871826,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 6.327922344207764,
+ "eval_runtime": 43.7769,
+ "eval_samples_per_second": 55.783,
+ "eval_steps_per_second": 3.495,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.4602355659008026,
+ "learning_rate": 0.0006,
+ "loss": 4.2585554122924805,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.4733062982559204,
+ "learning_rate": 0.0006,
+ "loss": 4.237922191619873,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.4390600025653839,
+ "learning_rate": 0.0006,
+ "loss": 4.159769058227539,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.44887402653694153,
+ "learning_rate": 0.0006,
+ "loss": 4.2117743492126465,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.4746656119823456,
+ "learning_rate": 0.0006,
+ "loss": 4.22344446182251,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.4502047598361969,
+ "learning_rate": 0.0006,
+ "loss": 4.179043769836426,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.4669528603553772,
+ "learning_rate": 0.0006,
+ "loss": 4.242807388305664,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.48304441571235657,
+ "learning_rate": 0.0006,
+ "loss": 4.243523597717285,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.4745117425918579,
+ "learning_rate": 0.0006,
+ "loss": 4.271031856536865,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.42403295636177063,
+ "learning_rate": 0.0006,
+ "loss": 4.231593132019043,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.4177025556564331,
+ "learning_rate": 0.0006,
+ "loss": 4.1239848136901855,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.44315826892852783,
+ "learning_rate": 0.0006,
+ "loss": 4.293359279632568,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.4518056809902191,
+ "learning_rate": 0.0006,
+ "loss": 4.238755226135254,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.4481995701789856,
+ "learning_rate": 0.0006,
+ "loss": 4.10948371887207,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.4367348253726959,
+ "learning_rate": 0.0006,
+ "loss": 4.289554595947266,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.41825398802757263,
+ "learning_rate": 0.0006,
+ "loss": 4.201297760009766,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.4390457570552826,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.4219510853290558,
+ "learning_rate": 0.0006,
+ "loss": 4.234352111816406,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.4195581078529358,
+ "learning_rate": 0.0006,
+ "loss": 4.213441371917725,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.4425918459892273,
+ "learning_rate": 0.0006,
+ "loss": 4.268826007843018,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.4734676778316498,
+ "learning_rate": 0.0006,
+ "loss": 4.266847610473633,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.48404407501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.241931915283203,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.4946669936180115,
+ "learning_rate": 0.0006,
+ "loss": 4.250909805297852,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.47972625494003296,
+ "learning_rate": 0.0006,
+ "loss": 4.195961952209473,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.4569213390350342,
+ "learning_rate": 0.0006,
+ "loss": 4.296036720275879,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.4644681215286255,
+ "learning_rate": 0.0006,
+ "loss": 4.216559410095215,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.48317641019821167,
+ "learning_rate": 0.0006,
+ "loss": 4.3226318359375,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.5122473835945129,
+ "learning_rate": 0.0006,
+ "loss": 4.366876602172852,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.5485180020332336,
+ "learning_rate": 0.0006,
+ "loss": 4.2639265060424805,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.5493056774139404,
+ "learning_rate": 0.0006,
+ "loss": 4.315012454986572,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.5442193150520325,
+ "learning_rate": 0.0006,
+ "loss": 4.293516159057617,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.5160698294639587,
+ "learning_rate": 0.0006,
+ "loss": 4.203614234924316,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.4583905041217804,
+ "learning_rate": 0.0006,
+ "loss": 4.204253673553467,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.47937676310539246,
+ "learning_rate": 0.0006,
+ "loss": 4.225821495056152,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.4585326611995697,
+ "learning_rate": 0.0006,
+ "loss": 4.27936315536499,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.4224967658519745,
+ "learning_rate": 0.0006,
+ "loss": 4.396998405456543,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.43489396572113037,
+ "learning_rate": 0.0006,
+ "loss": 4.321684837341309,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.43469369411468506,
+ "learning_rate": 0.0006,
+ "loss": 4.333868980407715,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.4171457588672638,
+ "learning_rate": 0.0006,
+ "loss": 4.212692737579346,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.40925848484039307,
+ "learning_rate": 0.0006,
+ "loss": 4.354894638061523,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.42900922894477844,
+ "learning_rate": 0.0006,
+ "loss": 4.309920310974121,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.42338159680366516,
+ "learning_rate": 0.0006,
+ "loss": 4.2942705154418945,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.4057067930698395,
+ "learning_rate": 0.0006,
+ "loss": 4.214710235595703,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.4072226583957672,
+ "learning_rate": 0.0006,
+ "loss": 4.312472343444824,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.3916485905647278,
+ "learning_rate": 0.0006,
+ "loss": 4.237615585327148,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.42151209712028503,
+ "learning_rate": 0.0006,
+ "loss": 4.377703666687012,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.44910693168640137,
+ "learning_rate": 0.0006,
+ "loss": 4.425722122192383,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.46527767181396484,
+ "learning_rate": 0.0006,
+ "loss": 4.26363468170166,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.45423775911331177,
+ "learning_rate": 0.0006,
+ "loss": 4.219768047332764,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.4229055345058441,
+ "learning_rate": 0.0006,
+ "loss": 4.2751007080078125,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.4136784076690674,
+ "learning_rate": 0.0006,
+ "loss": 4.256582736968994,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.42408230900764465,
+ "learning_rate": 0.0006,
+ "loss": 4.341879844665527,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.4360068142414093,
+ "learning_rate": 0.0006,
+ "loss": 4.2564802169799805,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.4251601994037628,
+ "learning_rate": 0.0006,
+ "loss": 4.370902061462402,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.4240182936191559,
+ "learning_rate": 0.0006,
+ "loss": 4.357310771942139,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.40821802616119385,
+ "learning_rate": 0.0006,
+ "loss": 4.299274444580078,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.42971381545066833,
+ "learning_rate": 0.0006,
+ "loss": 4.339339256286621,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.4170750677585602,
+ "learning_rate": 0.0006,
+ "loss": 4.295743942260742,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.4416576027870178,
+ "learning_rate": 0.0006,
+ "loss": 4.31326961517334,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.43994101881980896,
+ "learning_rate": 0.0006,
+ "loss": 4.286459922790527,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.43738171458244324,
+ "learning_rate": 0.0006,
+ "loss": 4.3276166915893555,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.42107513546943665,
+ "learning_rate": 0.0006,
+ "loss": 4.276320457458496,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.4138924479484558,
+ "learning_rate": 0.0006,
+ "loss": 4.263800621032715,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.4136491119861603,
+ "learning_rate": 0.0006,
+ "loss": 4.3641462326049805,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.4299047291278839,
+ "learning_rate": 0.0006,
+ "loss": 4.395074844360352,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.4680858552455902,
+ "learning_rate": 0.0006,
+ "loss": 4.29918098449707,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.5115722417831421,
+ "learning_rate": 0.0006,
+ "loss": 4.317390441894531,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.49535948038101196,
+ "learning_rate": 0.0006,
+ "loss": 4.311214447021484,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.44336947798728943,
+ "learning_rate": 0.0006,
+ "loss": 4.410158157348633,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.41606271266937256,
+ "learning_rate": 0.0006,
+ "loss": 4.303007125854492,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.3919375538825989,
+ "learning_rate": 0.0006,
+ "loss": 4.271506309509277,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.4847380518913269,
+ "learning_rate": 0.0006,
+ "loss": 4.368446350097656,
+ "step": 5760
+ },
+ {
+ "epoch": 80.0,
+ "eval_loss": 6.289350509643555,
+ "eval_runtime": 43.7865,
+ "eval_samples_per_second": 55.771,
+ "eval_steps_per_second": 3.494,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.4189201593399048,
+ "learning_rate": 0.0006,
+ "loss": 4.182366847991943,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.4759898781776428,
+ "learning_rate": 0.0006,
+ "loss": 4.19309139251709,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.527441680431366,
+ "learning_rate": 0.0006,
+ "loss": 4.219327926635742,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.519743025302887,
+ "learning_rate": 0.0006,
+ "loss": 4.141674995422363,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.4941118657588959,
+ "learning_rate": 0.0006,
+ "loss": 4.151315212249756,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.5262619256973267,
+ "learning_rate": 0.0006,
+ "loss": 4.181960105895996,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.6155849099159241,
+ "learning_rate": 0.0006,
+ "loss": 4.21251106262207,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.7172285914421082,
+ "learning_rate": 0.0006,
+ "loss": 4.233085632324219,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.7969664931297302,
+ "learning_rate": 0.0006,
+ "loss": 4.231586933135986,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.7671365141868591,
+ "learning_rate": 0.0006,
+ "loss": 4.288948059082031,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.6886342167854309,
+ "learning_rate": 0.0006,
+ "loss": 4.186882495880127,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.613745927810669,
+ "learning_rate": 0.0006,
+ "loss": 4.22116756439209,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.6049351096153259,
+ "learning_rate": 0.0006,
+ "loss": 4.247993469238281,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.5160547494888306,
+ "learning_rate": 0.0006,
+ "loss": 4.230243682861328,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.5072378516197205,
+ "learning_rate": 0.0006,
+ "loss": 4.1789140701293945,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.5201945304870605,
+ "learning_rate": 0.0006,
+ "loss": 4.2888031005859375,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.5084741711616516,
+ "learning_rate": 0.0006,
+ "loss": 4.204905986785889,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.45192697644233704,
+ "learning_rate": 0.0006,
+ "loss": 4.273176193237305,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.4638829827308655,
+ "learning_rate": 0.0006,
+ "loss": 4.276776313781738,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.5091138482093811,
+ "learning_rate": 0.0006,
+ "loss": 4.20111083984375,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.5181353092193604,
+ "learning_rate": 0.0006,
+ "loss": 4.270737648010254,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.4666393995285034,
+ "learning_rate": 0.0006,
+ "loss": 4.220527648925781,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.4459801912307739,
+ "learning_rate": 0.0006,
+ "loss": 4.246898651123047,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.44209161400794983,
+ "learning_rate": 0.0006,
+ "loss": 4.2897796630859375,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.44252556562423706,
+ "learning_rate": 0.0006,
+ "loss": 4.31494665145874,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.43231600522994995,
+ "learning_rate": 0.0006,
+ "loss": 4.341650009155273,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.4496018886566162,
+ "learning_rate": 0.0006,
+ "loss": 4.222264766693115,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.41425642371177673,
+ "learning_rate": 0.0006,
+ "loss": 4.258854866027832,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.4198642671108246,
+ "learning_rate": 0.0006,
+ "loss": 4.286402225494385,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.4175935387611389,
+ "learning_rate": 0.0006,
+ "loss": 4.329756736755371,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.42901840806007385,
+ "learning_rate": 0.0006,
+ "loss": 4.2249555587768555,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.41729676723480225,
+ "learning_rate": 0.0006,
+ "loss": 4.25307559967041,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.44785404205322266,
+ "learning_rate": 0.0006,
+ "loss": 4.279146194458008,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.45788508653640747,
+ "learning_rate": 0.0006,
+ "loss": 4.185768127441406,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.4351639747619629,
+ "learning_rate": 0.0006,
+ "loss": 4.20334529876709,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.41771501302719116,
+ "learning_rate": 0.0006,
+ "loss": 4.2551493644714355,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.41627222299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.277044296264648,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.44212380051612854,
+ "learning_rate": 0.0006,
+ "loss": 4.225511074066162,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.38782668113708496,
+ "learning_rate": 0.0006,
+ "loss": 4.245084762573242,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.3984670341014862,
+ "learning_rate": 0.0006,
+ "loss": 4.318271160125732,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.3934188783168793,
+ "learning_rate": 0.0006,
+ "loss": 4.2478485107421875,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.38275960087776184,
+ "learning_rate": 0.0006,
+ "loss": 4.166913032531738,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.4073631465435028,
+ "learning_rate": 0.0006,
+ "loss": 4.325770378112793,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.40767619013786316,
+ "learning_rate": 0.0006,
+ "loss": 4.337563514709473,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.4344850778579712,
+ "learning_rate": 0.0006,
+ "loss": 4.339216709136963,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.4321129024028778,
+ "learning_rate": 0.0006,
+ "loss": 4.251045227050781,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.42891228199005127,
+ "learning_rate": 0.0006,
+ "loss": 4.339747428894043,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.430338054895401,
+ "learning_rate": 0.0006,
+ "loss": 4.290801525115967,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.44881945848464966,
+ "learning_rate": 0.0006,
+ "loss": 4.290616989135742,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.41193726658821106,
+ "learning_rate": 0.0006,
+ "loss": 4.178008079528809,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.3986659348011017,
+ "learning_rate": 0.0006,
+ "loss": 4.24334716796875,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.4000692665576935,
+ "learning_rate": 0.0006,
+ "loss": 4.273529052734375,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.4126340448856354,
+ "learning_rate": 0.0006,
+ "loss": 4.316381454467773,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.3987399935722351,
+ "learning_rate": 0.0006,
+ "loss": 4.253186225891113,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.3934975564479828,
+ "learning_rate": 0.0006,
+ "loss": 4.316921234130859,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.39915889501571655,
+ "learning_rate": 0.0006,
+ "loss": 4.304752349853516,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.4130222499370575,
+ "learning_rate": 0.0006,
+ "loss": 4.325786590576172,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.42784422636032104,
+ "learning_rate": 0.0006,
+ "loss": 4.316120624542236,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.4270218312740326,
+ "learning_rate": 0.0006,
+ "loss": 4.3773698806762695,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.4531627297401428,
+ "learning_rate": 0.0006,
+ "loss": 4.291565418243408,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.43761077523231506,
+ "learning_rate": 0.0006,
+ "loss": 4.318550109863281,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.43666771054267883,
+ "learning_rate": 0.0006,
+ "loss": 4.310146331787109,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.41557514667510986,
+ "learning_rate": 0.0006,
+ "loss": 4.278397083282471,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.3992885649204254,
+ "learning_rate": 0.0006,
+ "loss": 4.330907821655273,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.41442859172821045,
+ "learning_rate": 0.0006,
+ "loss": 4.380483627319336,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.42367640137672424,
+ "learning_rate": 0.0006,
+ "loss": 4.370355129241943,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.4104510247707367,
+ "learning_rate": 0.0006,
+ "loss": 4.243627548217773,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.4377829134464264,
+ "learning_rate": 0.0006,
+ "loss": 4.434067726135254,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.44119682908058167,
+ "learning_rate": 0.0006,
+ "loss": 4.379904747009277,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.4018053114414215,
+ "learning_rate": 0.0006,
+ "loss": 4.286595344543457,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.4040871560573578,
+ "learning_rate": 0.0006,
+ "loss": 4.337483882904053,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.4790824055671692,
+ "learning_rate": 0.0006,
+ "loss": 4.364114761352539,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 6.3435444831848145,
+ "eval_runtime": 43.8507,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.447443425655365,
+ "learning_rate": 0.0006,
+ "loss": 4.273200988769531,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.4924955368041992,
+ "learning_rate": 0.0006,
+ "loss": 4.222320079803467,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.6066558957099915,
+ "learning_rate": 0.0006,
+ "loss": 4.145882606506348,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.7758402824401855,
+ "learning_rate": 0.0006,
+ "loss": 4.182838439941406,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 1.005454659461975,
+ "learning_rate": 0.0006,
+ "loss": 4.156442642211914,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 1.1113026142120361,
+ "learning_rate": 0.0006,
+ "loss": 4.239047050476074,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.7954476475715637,
+ "learning_rate": 0.0006,
+ "loss": 4.231141090393066,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.7038424611091614,
+ "learning_rate": 0.0006,
+ "loss": 4.308542728424072,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.6864593029022217,
+ "learning_rate": 0.0006,
+ "loss": 4.214676380157471,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.6193567514419556,
+ "learning_rate": 0.0006,
+ "loss": 4.243054389953613,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.6326499581336975,
+ "learning_rate": 0.0006,
+ "loss": 4.307093143463135,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.633601725101471,
+ "learning_rate": 0.0006,
+ "loss": 4.28586483001709,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.5711596012115479,
+ "learning_rate": 0.0006,
+ "loss": 4.190366744995117,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.582478404045105,
+ "learning_rate": 0.0006,
+ "loss": 4.243340492248535,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.5870423316955566,
+ "learning_rate": 0.0006,
+ "loss": 4.330052852630615,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.5572404265403748,
+ "learning_rate": 0.0006,
+ "loss": 4.221210956573486,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.48703816533088684,
+ "learning_rate": 0.0006,
+ "loss": 4.246015548706055,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.4946155548095703,
+ "learning_rate": 0.0006,
+ "loss": 4.203368186950684,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.48104000091552734,
+ "learning_rate": 0.0006,
+ "loss": 4.195788383483887,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.4884639382362366,
+ "learning_rate": 0.0006,
+ "loss": 4.246498107910156,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.46171557903289795,
+ "learning_rate": 0.0006,
+ "loss": 4.271712779998779,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.4299808740615845,
+ "learning_rate": 0.0006,
+ "loss": 4.2654619216918945,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.4515123963356018,
+ "learning_rate": 0.0006,
+ "loss": 4.270195960998535,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.4448329210281372,
+ "learning_rate": 0.0006,
+ "loss": 4.295469284057617,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.43523281812667847,
+ "learning_rate": 0.0006,
+ "loss": 4.234511375427246,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.4352431893348694,
+ "learning_rate": 0.0006,
+ "loss": 4.27800178527832,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.43417713046073914,
+ "learning_rate": 0.0006,
+ "loss": 4.291177749633789,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.4469117224216461,
+ "learning_rate": 0.0006,
+ "loss": 4.273797512054443,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.40459394454956055,
+ "learning_rate": 0.0006,
+ "loss": 4.160533428192139,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.37974515557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.165892124176025,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.4303241968154907,
+ "learning_rate": 0.0006,
+ "loss": 4.261228561401367,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.4212931990623474,
+ "learning_rate": 0.0006,
+ "loss": 4.186488628387451,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.39888855814933777,
+ "learning_rate": 0.0006,
+ "loss": 4.256392955780029,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.4147864282131195,
+ "learning_rate": 0.0006,
+ "loss": 4.285519599914551,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.4054912328720093,
+ "learning_rate": 0.0006,
+ "loss": 4.235527038574219,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.3942243158817291,
+ "learning_rate": 0.0006,
+ "loss": 4.235358715057373,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.3859952390193939,
+ "learning_rate": 0.0006,
+ "loss": 4.178792476654053,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.3996407389640808,
+ "learning_rate": 0.0006,
+ "loss": 4.332685470581055,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.3997543156147003,
+ "learning_rate": 0.0006,
+ "loss": 4.172628879547119,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.40761199593544006,
+ "learning_rate": 0.0006,
+ "loss": 4.25240421295166,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.4187498986721039,
+ "learning_rate": 0.0006,
+ "loss": 4.23222541809082,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.39432984590530396,
+ "learning_rate": 0.0006,
+ "loss": 4.1483025550842285,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.4413979947566986,
+ "learning_rate": 0.0006,
+ "loss": 4.262289524078369,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.4385976791381836,
+ "learning_rate": 0.0006,
+ "loss": 4.160347938537598,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.4254113733768463,
+ "learning_rate": 0.0006,
+ "loss": 4.235913276672363,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.40139102935791016,
+ "learning_rate": 0.0006,
+ "loss": 4.338469505310059,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.41311147809028625,
+ "learning_rate": 0.0006,
+ "loss": 4.259404182434082,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.41248565912246704,
+ "learning_rate": 0.0006,
+ "loss": 4.311250686645508,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.43279120326042175,
+ "learning_rate": 0.0006,
+ "loss": 4.352819919586182,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.4341239035129547,
+ "learning_rate": 0.0006,
+ "loss": 4.201631546020508,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.42909830808639526,
+ "learning_rate": 0.0006,
+ "loss": 4.250114440917969,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.4029415249824524,
+ "learning_rate": 0.0006,
+ "loss": 4.280141830444336,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.4094693660736084,
+ "learning_rate": 0.0006,
+ "loss": 4.245151519775391,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.4380780756473541,
+ "learning_rate": 0.0006,
+ "loss": 4.369032859802246,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.46046847105026245,
+ "learning_rate": 0.0006,
+ "loss": 4.357504844665527,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.47439682483673096,
+ "learning_rate": 0.0006,
+ "loss": 4.28305721282959,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.44236937165260315,
+ "learning_rate": 0.0006,
+ "loss": 4.242401599884033,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.4143677353858948,
+ "learning_rate": 0.0006,
+ "loss": 4.362359046936035,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.4057272970676422,
+ "learning_rate": 0.0006,
+ "loss": 4.30042028427124,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.4250582456588745,
+ "learning_rate": 0.0006,
+ "loss": 4.2771711349487305,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.426998108625412,
+ "learning_rate": 0.0006,
+ "loss": 4.280099391937256,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.4197818636894226,
+ "learning_rate": 0.0006,
+ "loss": 4.342541694641113,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.412741094827652,
+ "learning_rate": 0.0006,
+ "loss": 4.25786828994751,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.4071856737136841,
+ "learning_rate": 0.0006,
+ "loss": 4.214151382446289,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.41681522130966187,
+ "learning_rate": 0.0006,
+ "loss": 4.318428039550781,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.4144262373447418,
+ "learning_rate": 0.0006,
+ "loss": 4.37365198135376,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.3930285573005676,
+ "learning_rate": 0.0006,
+ "loss": 4.281595230102539,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.40847325325012207,
+ "learning_rate": 0.0006,
+ "loss": 4.326107978820801,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.4196723997592926,
+ "learning_rate": 0.0006,
+ "loss": 4.267861366271973,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.4259124994277954,
+ "learning_rate": 0.0006,
+ "loss": 4.370932579040527,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.3915783166885376,
+ "learning_rate": 0.0006,
+ "loss": 4.19312047958374,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.45746830105781555,
+ "learning_rate": 0.0006,
+ "loss": 4.177214622497559,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 6.357029914855957,
+ "eval_runtime": 43.7795,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.41968968510627747,
+ "learning_rate": 0.0006,
+ "loss": 4.200979709625244,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.4584674537181854,
+ "learning_rate": 0.0006,
+ "loss": 4.1334381103515625,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.4660768508911133,
+ "learning_rate": 0.0006,
+ "loss": 4.200084686279297,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.4789487421512604,
+ "learning_rate": 0.0006,
+ "loss": 4.172554016113281,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.49461299180984497,
+ "learning_rate": 0.0006,
+ "loss": 4.285592079162598,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.5337462425231934,
+ "learning_rate": 0.0006,
+ "loss": 4.229425430297852,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.5576419234275818,
+ "learning_rate": 0.0006,
+ "loss": 4.233409881591797,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.5294531583786011,
+ "learning_rate": 0.0006,
+ "loss": 4.19575309753418,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.5647598505020142,
+ "learning_rate": 0.0006,
+ "loss": 4.213438510894775,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.6300318241119385,
+ "learning_rate": 0.0006,
+ "loss": 4.2297210693359375,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.7726603746414185,
+ "learning_rate": 0.0006,
+ "loss": 4.2555036544799805,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 1.0104360580444336,
+ "learning_rate": 0.0006,
+ "loss": 4.271825790405273,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 1.1859381198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.233576774597168,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.7926550507545471,
+ "learning_rate": 0.0006,
+ "loss": 4.237586498260498,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.6820129156112671,
+ "learning_rate": 0.0006,
+ "loss": 4.299962043762207,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.7082132697105408,
+ "learning_rate": 0.0006,
+ "loss": 4.243724822998047,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.7050187587738037,
+ "learning_rate": 0.0006,
+ "loss": 4.152876853942871,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.6219658255577087,
+ "learning_rate": 0.0006,
+ "loss": 4.254920959472656,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.5747959017753601,
+ "learning_rate": 0.0006,
+ "loss": 4.228151798248291,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.5477624535560608,
+ "learning_rate": 0.0006,
+ "loss": 4.211681842803955,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.5370446443557739,
+ "learning_rate": 0.0006,
+ "loss": 4.241825580596924,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.4855964779853821,
+ "learning_rate": 0.0006,
+ "loss": 4.195348739624023,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.4688033163547516,
+ "learning_rate": 0.0006,
+ "loss": 4.21632194519043,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.4556921124458313,
+ "learning_rate": 0.0006,
+ "loss": 4.177244186401367,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.4724311828613281,
+ "learning_rate": 0.0006,
+ "loss": 4.188458442687988,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.48350122570991516,
+ "learning_rate": 0.0006,
+ "loss": 4.269173622131348,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.47434476017951965,
+ "learning_rate": 0.0006,
+ "loss": 4.210025787353516,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.44016721844673157,
+ "learning_rate": 0.0006,
+ "loss": 4.200996398925781,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.43595024943351746,
+ "learning_rate": 0.0006,
+ "loss": 4.280470848083496,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.43968138098716736,
+ "learning_rate": 0.0006,
+ "loss": 4.12271785736084,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.4622724950313568,
+ "learning_rate": 0.0006,
+ "loss": 4.2784013748168945,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.42840784788131714,
+ "learning_rate": 0.0006,
+ "loss": 4.205509185791016,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.42756643891334534,
+ "learning_rate": 0.0006,
+ "loss": 4.240240573883057,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.4455983340740204,
+ "learning_rate": 0.0006,
+ "loss": 4.170627593994141,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.47522759437561035,
+ "learning_rate": 0.0006,
+ "loss": 4.216513633728027,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.46860823035240173,
+ "learning_rate": 0.0006,
+ "loss": 4.224852561950684,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.45451217889785767,
+ "learning_rate": 0.0006,
+ "loss": 4.320342063903809,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.4033358097076416,
+ "learning_rate": 0.0006,
+ "loss": 4.174200057983398,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.4156914949417114,
+ "learning_rate": 0.0006,
+ "loss": 4.112459659576416,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.4248296618461609,
+ "learning_rate": 0.0006,
+ "loss": 4.203481674194336,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.44323766231536865,
+ "learning_rate": 0.0006,
+ "loss": 4.23320198059082,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.4104357659816742,
+ "learning_rate": 0.0006,
+ "loss": 4.248687744140625,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.4133552610874176,
+ "learning_rate": 0.0006,
+ "loss": 4.261547088623047,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.46102720499038696,
+ "learning_rate": 0.0006,
+ "loss": 4.248725414276123,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.46091315150260925,
+ "learning_rate": 0.0006,
+ "loss": 4.278741836547852,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.4718199670314789,
+ "learning_rate": 0.0006,
+ "loss": 4.287023544311523,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.4677143394947052,
+ "learning_rate": 0.0006,
+ "loss": 4.2407073974609375,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.4627108871936798,
+ "learning_rate": 0.0006,
+ "loss": 4.288060188293457,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.48298877477645874,
+ "learning_rate": 0.0006,
+ "loss": 4.3333258628845215,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.4674181342124939,
+ "learning_rate": 0.0006,
+ "loss": 4.29932165145874,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.4250151216983795,
+ "learning_rate": 0.0006,
+ "loss": 4.271842002868652,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.4271775484085083,
+ "learning_rate": 0.0006,
+ "loss": 4.230886459350586,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.4614356756210327,
+ "learning_rate": 0.0006,
+ "loss": 4.291038513183594,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.4506745934486389,
+ "learning_rate": 0.0006,
+ "loss": 4.2282562255859375,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.43020278215408325,
+ "learning_rate": 0.0006,
+ "loss": 4.255861282348633,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.4066062271595001,
+ "learning_rate": 0.0006,
+ "loss": 4.360322952270508,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.4263683557510376,
+ "learning_rate": 0.0006,
+ "loss": 4.27037239074707,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.39514079689979553,
+ "learning_rate": 0.0006,
+ "loss": 4.258206367492676,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.41911759972572327,
+ "learning_rate": 0.0006,
+ "loss": 4.279756546020508,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.41042575240135193,
+ "learning_rate": 0.0006,
+ "loss": 4.343293190002441,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.40530115365982056,
+ "learning_rate": 0.0006,
+ "loss": 4.30220890045166,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.41333019733428955,
+ "learning_rate": 0.0006,
+ "loss": 4.293051719665527,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.4278717041015625,
+ "learning_rate": 0.0006,
+ "loss": 4.200895309448242,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.38954365253448486,
+ "learning_rate": 0.0006,
+ "loss": 4.349408149719238,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.39665845036506653,
+ "learning_rate": 0.0006,
+ "loss": 4.278497219085693,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.4175996780395508,
+ "learning_rate": 0.0006,
+ "loss": 4.348122596740723,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.3897883892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.327902317047119,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.39896222949028015,
+ "learning_rate": 0.0006,
+ "loss": 4.2651143074035645,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.39377546310424805,
+ "learning_rate": 0.0006,
+ "loss": 4.351605415344238,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.39766061305999756,
+ "learning_rate": 0.0006,
+ "loss": 4.243964195251465,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.3842772841453552,
+ "learning_rate": 0.0006,
+ "loss": 4.267043590545654,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.49257901310920715,
+ "learning_rate": 0.0006,
+ "loss": 4.390436172485352,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 6.3845720291137695,
+ "eval_runtime": 43.659,
+ "eval_samples_per_second": 55.933,
+ "eval_steps_per_second": 3.504,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.4391154944896698,
+ "learning_rate": 0.0006,
+ "loss": 4.111626148223877,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.5148889422416687,
+ "learning_rate": 0.0006,
+ "loss": 4.127384662628174,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.5173138976097107,
+ "learning_rate": 0.0006,
+ "loss": 4.204227447509766,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.4456957280635834,
+ "learning_rate": 0.0006,
+ "loss": 4.200007438659668,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.44515037536621094,
+ "learning_rate": 0.0006,
+ "loss": 4.125116348266602,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.44603443145751953,
+ "learning_rate": 0.0006,
+ "loss": 4.114563465118408,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.43450453877449036,
+ "learning_rate": 0.0006,
+ "loss": 4.147992134094238,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.432449609041214,
+ "learning_rate": 0.0006,
+ "loss": 4.1462626457214355,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.45551928877830505,
+ "learning_rate": 0.0006,
+ "loss": 4.160435676574707,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.472989946603775,
+ "learning_rate": 0.0006,
+ "loss": 4.168758392333984,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.4804964065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.29326057434082,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.5023837685585022,
+ "learning_rate": 0.0006,
+ "loss": 4.129997730255127,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.554080605506897,
+ "learning_rate": 0.0006,
+ "loss": 4.210216999053955,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.6329277753829956,
+ "learning_rate": 0.0006,
+ "loss": 4.239630699157715,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.6927154064178467,
+ "learning_rate": 0.0006,
+ "loss": 4.205781936645508,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.6770079731941223,
+ "learning_rate": 0.0006,
+ "loss": 4.175786018371582,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.5854576230049133,
+ "learning_rate": 0.0006,
+ "loss": 4.234147071838379,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.529286801815033,
+ "learning_rate": 0.0006,
+ "loss": 4.11967134475708,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.5517066717147827,
+ "learning_rate": 0.0006,
+ "loss": 4.235705375671387,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.5938349366188049,
+ "learning_rate": 0.0006,
+ "loss": 4.2656755447387695,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.6056738495826721,
+ "learning_rate": 0.0006,
+ "loss": 4.246652126312256,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.5960127711296082,
+ "learning_rate": 0.0006,
+ "loss": 4.150732517242432,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.5769783854484558,
+ "learning_rate": 0.0006,
+ "loss": 4.2447919845581055,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.5047983527183533,
+ "learning_rate": 0.0006,
+ "loss": 4.215879440307617,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.5035821199417114,
+ "learning_rate": 0.0006,
+ "loss": 4.265319347381592,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.4539526402950287,
+ "learning_rate": 0.0006,
+ "loss": 4.2058539390563965,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.4950912594795227,
+ "learning_rate": 0.0006,
+ "loss": 4.384343147277832,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.4687364101409912,
+ "learning_rate": 0.0006,
+ "loss": 4.220507621765137,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.46328020095825195,
+ "learning_rate": 0.0006,
+ "loss": 4.193594455718994,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.48333385586738586,
+ "learning_rate": 0.0006,
+ "loss": 4.288180351257324,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.4870767593383789,
+ "learning_rate": 0.0006,
+ "loss": 4.270781517028809,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.48339006304740906,
+ "learning_rate": 0.0006,
+ "loss": 4.165823936462402,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.46628767251968384,
+ "learning_rate": 0.0006,
+ "loss": 4.272879600524902,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.43664637207984924,
+ "learning_rate": 0.0006,
+ "loss": 4.170869827270508,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.4373452365398407,
+ "learning_rate": 0.0006,
+ "loss": 4.2506489753723145,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.47709426283836365,
+ "learning_rate": 0.0006,
+ "loss": 4.297833442687988,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.49829018115997314,
+ "learning_rate": 0.0006,
+ "loss": 4.171062469482422,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.487209290266037,
+ "learning_rate": 0.0006,
+ "loss": 4.236351013183594,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.4661620557308197,
+ "learning_rate": 0.0006,
+ "loss": 4.193465232849121,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.4790615439414978,
+ "learning_rate": 0.0006,
+ "loss": 4.238525390625,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.4469921290874481,
+ "learning_rate": 0.0006,
+ "loss": 4.239880084991455,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.4821740984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.237403392791748,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.48282673954963684,
+ "learning_rate": 0.0006,
+ "loss": 4.1664228439331055,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.41682642698287964,
+ "learning_rate": 0.0006,
+ "loss": 4.216082572937012,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.41478675603866577,
+ "learning_rate": 0.0006,
+ "loss": 4.309684753417969,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.4269796311855316,
+ "learning_rate": 0.0006,
+ "loss": 4.2372541427612305,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.4389215409755707,
+ "learning_rate": 0.0006,
+ "loss": 4.2590179443359375,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.458717942237854,
+ "learning_rate": 0.0006,
+ "loss": 4.313959121704102,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.47272592782974243,
+ "learning_rate": 0.0006,
+ "loss": 4.3018903732299805,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.46145138144493103,
+ "learning_rate": 0.0006,
+ "loss": 4.287712097167969,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.45914238691329956,
+ "learning_rate": 0.0006,
+ "loss": 4.287365913391113,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.45007017254829407,
+ "learning_rate": 0.0006,
+ "loss": 4.207084655761719,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.4381447434425354,
+ "learning_rate": 0.0006,
+ "loss": 4.311388969421387,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.44748032093048096,
+ "learning_rate": 0.0006,
+ "loss": 4.346423625946045,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.45367518067359924,
+ "learning_rate": 0.0006,
+ "loss": 4.300904273986816,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.407585084438324,
+ "learning_rate": 0.0006,
+ "loss": 4.271082401275635,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.4048030972480774,
+ "learning_rate": 0.0006,
+ "loss": 4.239479064941406,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.4034517705440521,
+ "learning_rate": 0.0006,
+ "loss": 4.2660675048828125,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.4124349057674408,
+ "learning_rate": 0.0006,
+ "loss": 4.311362266540527,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.424675315618515,
+ "learning_rate": 0.0006,
+ "loss": 4.300950527191162,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.4398607313632965,
+ "learning_rate": 0.0006,
+ "loss": 4.274449348449707,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.4407024383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.314581871032715,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.44054970145225525,
+ "learning_rate": 0.0006,
+ "loss": 4.274312973022461,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.4406360685825348,
+ "learning_rate": 0.0006,
+ "loss": 4.349391460418701,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.4325377941131592,
+ "learning_rate": 0.0006,
+ "loss": 4.235274314880371,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.4063146114349365,
+ "learning_rate": 0.0006,
+ "loss": 4.224005699157715,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.40214279294013977,
+ "learning_rate": 0.0006,
+ "loss": 4.304279327392578,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.413821816444397,
+ "learning_rate": 0.0006,
+ "loss": 4.2585906982421875,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.4437064230442047,
+ "learning_rate": 0.0006,
+ "loss": 4.387950897216797,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.44573846459388733,
+ "learning_rate": 0.0006,
+ "loss": 4.2619805335998535,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.46081477403640747,
+ "learning_rate": 0.0006,
+ "loss": 4.32242488861084,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.5210936069488525,
+ "learning_rate": 0.0006,
+ "loss": 4.432188034057617,
+ "step": 6048
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.577349251805741e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6048/training_args.bin b/runs/i5-fulle-lm/checkpoint-6048/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6048/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-6336/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-6336/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/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/i5-fulle-lm/checkpoint-6336/config.json b/runs/i5-fulle-lm/checkpoint-6336/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6336/generation_config.json b/runs/i5-fulle-lm/checkpoint-6336/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6336/model.safetensors b/runs/i5-fulle-lm/checkpoint-6336/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..2cb8419f11995202193d1d4708437b5b3e1fe606
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:825e00fbcf178b90a7c48a98af2a5e92b9d6522084f2ad5b2340530cd211d3e9
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-6336/optimizer.pt b/runs/i5-fulle-lm/checkpoint-6336/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..34eef4c545705b65576955fdc03da68e1f570936
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dcf21bf450c48d39c6d9d15a945618cbbb68262eea0b316265c2daaa8e4a724e
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-6336/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-6336/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..39c4669ea7e56d3f747ca7bde3aa61a8b03eec7f
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cb1308f0ba2f19c67bcdc8968d2b90a7d8a5d44d658e36423e6350f1dba5d999
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-6336/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-6336/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c4ba0af5ecf76a17a5f63b434478495dc0178796
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dcb365c845e9a887585a99c920945e322383a1f34a859180f7d874743229e1c1
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-6336/scheduler.pt b/runs/i5-fulle-lm/checkpoint-6336/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..806ff31f0128f007291ee83361dda9fba5eeb32b
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79947657782b5ee38d1d49b023c1983388f9e08fc318792128b0f35b4e555422
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-6336/tokenizer.json b/runs/i5-fulle-lm/checkpoint-6336/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-6336/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-6336/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6336/trainer_state.json b/runs/i5-fulle-lm/checkpoint-6336/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..c9d6b26af80ab50eaba190a1872bb45ab5e690e1
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/trainer_state.json
@@ -0,0 +1,45074 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 88.0,
+ "eval_steps": 500,
+ "global_step": 6336,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 6.10045862197876,
+ "eval_runtime": 43.881,
+ "eval_samples_per_second": 55.651,
+ "eval_steps_per_second": 3.487,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.3880091607570648,
+ "learning_rate": 0.0006,
+ "loss": 4.2891340255737305,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.46462568640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.368136882781982,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.46417036652565,
+ "learning_rate": 0.0006,
+ "loss": 4.290570259094238,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.42546287178993225,
+ "learning_rate": 0.0006,
+ "loss": 4.275969505310059,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.42158621549606323,
+ "learning_rate": 0.0006,
+ "loss": 4.3133697509765625,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.41421398520469666,
+ "learning_rate": 0.0006,
+ "loss": 4.318943977355957,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.4261677861213684,
+ "learning_rate": 0.0006,
+ "loss": 4.386415481567383,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.4547804594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.200797080993652,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.5152761340141296,
+ "learning_rate": 0.0006,
+ "loss": 4.392667770385742,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.6397215127944946,
+ "learning_rate": 0.0006,
+ "loss": 4.365647315979004,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.867751955986023,
+ "learning_rate": 0.0006,
+ "loss": 4.404231071472168,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 1.113226056098938,
+ "learning_rate": 0.0006,
+ "loss": 4.4237775802612305,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.9725164771080017,
+ "learning_rate": 0.0006,
+ "loss": 4.353878021240234,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.8986128568649292,
+ "learning_rate": 0.0006,
+ "loss": 4.404200553894043,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.644611656665802,
+ "learning_rate": 0.0006,
+ "loss": 4.314446449279785,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.5430455803871155,
+ "learning_rate": 0.0006,
+ "loss": 4.404072284698486,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.5315895080566406,
+ "learning_rate": 0.0006,
+ "loss": 4.339350700378418,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.4984396696090698,
+ "learning_rate": 0.0006,
+ "loss": 4.418368339538574,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.4928722679615021,
+ "learning_rate": 0.0006,
+ "loss": 4.351061820983887,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.4810708463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.32480525970459,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.4846661388874054,
+ "learning_rate": 0.0006,
+ "loss": 4.410396099090576,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.45098942518234253,
+ "learning_rate": 0.0006,
+ "loss": 4.434419631958008,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.4603881239891052,
+ "learning_rate": 0.0006,
+ "loss": 4.374553680419922,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.47921186685562134,
+ "learning_rate": 0.0006,
+ "loss": 4.43428373336792,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.458781361579895,
+ "learning_rate": 0.0006,
+ "loss": 4.345955848693848,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.43630266189575195,
+ "learning_rate": 0.0006,
+ "loss": 4.396679401397705,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.4061865210533142,
+ "learning_rate": 0.0006,
+ "loss": 4.3547186851501465,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.3998570740222931,
+ "learning_rate": 0.0006,
+ "loss": 4.42930793762207,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.43052756786346436,
+ "learning_rate": 0.0006,
+ "loss": 4.483987808227539,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.40878528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.4177021980285645,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.41628801822662354,
+ "learning_rate": 0.0006,
+ "loss": 4.383821487426758,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.39991578459739685,
+ "learning_rate": 0.0006,
+ "loss": 4.403266429901123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.3781890571117401,
+ "learning_rate": 0.0006,
+ "loss": 4.361995220184326,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.38037991523742676,
+ "learning_rate": 0.0006,
+ "loss": 4.520498275756836,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.3687450587749481,
+ "learning_rate": 0.0006,
+ "loss": 4.34592342376709,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.3800104558467865,
+ "learning_rate": 0.0006,
+ "loss": 4.395520210266113,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.38416075706481934,
+ "learning_rate": 0.0006,
+ "loss": 4.432024002075195,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.38714301586151123,
+ "learning_rate": 0.0006,
+ "loss": 4.371710300445557,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.3560386002063751,
+ "learning_rate": 0.0006,
+ "loss": 4.389065265655518,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.3583020269870758,
+ "learning_rate": 0.0006,
+ "loss": 4.294467926025391,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.3507572412490845,
+ "learning_rate": 0.0006,
+ "loss": 4.335668563842773,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.3481273353099823,
+ "learning_rate": 0.0006,
+ "loss": 4.355007171630859,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.3648652732372284,
+ "learning_rate": 0.0006,
+ "loss": 4.458398818969727,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.3315402865409851,
+ "learning_rate": 0.0006,
+ "loss": 4.415014266967773,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.34356269240379333,
+ "learning_rate": 0.0006,
+ "loss": 4.3891496658325195,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.3475818932056427,
+ "learning_rate": 0.0006,
+ "loss": 4.403259754180908,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.3756524622440338,
+ "learning_rate": 0.0006,
+ "loss": 4.396340370178223,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.38063693046569824,
+ "learning_rate": 0.0006,
+ "loss": 4.390671253204346,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.3574332594871521,
+ "learning_rate": 0.0006,
+ "loss": 4.342291831970215,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.35717374086380005,
+ "learning_rate": 0.0006,
+ "loss": 4.389538764953613,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.34184643626213074,
+ "learning_rate": 0.0006,
+ "loss": 4.407958030700684,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.3665345013141632,
+ "learning_rate": 0.0006,
+ "loss": 4.407729148864746,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.3752829432487488,
+ "learning_rate": 0.0006,
+ "loss": 4.406526565551758,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.3690424859523773,
+ "learning_rate": 0.0006,
+ "loss": 4.444920063018799,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.35570403933525085,
+ "learning_rate": 0.0006,
+ "loss": 4.41465950012207,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.3422539532184601,
+ "learning_rate": 0.0006,
+ "loss": 4.341947078704834,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.34019631147384644,
+ "learning_rate": 0.0006,
+ "loss": 4.383486747741699,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.35433074831962585,
+ "learning_rate": 0.0006,
+ "loss": 4.43992280960083,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.3690914809703827,
+ "learning_rate": 0.0006,
+ "loss": 4.396021842956543,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.35793814063072205,
+ "learning_rate": 0.0006,
+ "loss": 4.389019012451172,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.34700852632522583,
+ "learning_rate": 0.0006,
+ "loss": 4.476073265075684,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.3613256514072418,
+ "learning_rate": 0.0006,
+ "loss": 4.43828010559082,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.3444153070449829,
+ "learning_rate": 0.0006,
+ "loss": 4.470188140869141,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.3383917510509491,
+ "learning_rate": 0.0006,
+ "loss": 4.381032943725586,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.3648519217967987,
+ "learning_rate": 0.0006,
+ "loss": 4.399723052978516,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.34983959794044495,
+ "learning_rate": 0.0006,
+ "loss": 4.43270206451416,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.33937394618988037,
+ "learning_rate": 0.0006,
+ "loss": 4.4052228927612305,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.34935757517814636,
+ "learning_rate": 0.0006,
+ "loss": 4.38171911239624,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.3566495180130005,
+ "learning_rate": 0.0006,
+ "loss": 4.495579242706299,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.3702648878097534,
+ "learning_rate": 0.0006,
+ "loss": 4.452796936035156,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.3714422583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.404526710510254,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.42734357714653015,
+ "learning_rate": 0.0006,
+ "loss": 4.511031150817871,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 6.156860828399658,
+ "eval_runtime": 44.07,
+ "eval_samples_per_second": 55.412,
+ "eval_steps_per_second": 3.472,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.381186306476593,
+ "learning_rate": 0.0006,
+ "loss": 4.39985466003418,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.4057665169239044,
+ "learning_rate": 0.0006,
+ "loss": 4.338055610656738,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.4002494513988495,
+ "learning_rate": 0.0006,
+ "loss": 4.331958770751953,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.4294043183326721,
+ "learning_rate": 0.0006,
+ "loss": 4.339388370513916,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.45085105299949646,
+ "learning_rate": 0.0006,
+ "loss": 4.334287643432617,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.5061688423156738,
+ "learning_rate": 0.0006,
+ "loss": 4.2327470779418945,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.5022581219673157,
+ "learning_rate": 0.0006,
+ "loss": 4.291156768798828,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.5529219508171082,
+ "learning_rate": 0.0006,
+ "loss": 4.4021406173706055,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.5945294499397278,
+ "learning_rate": 0.0006,
+ "loss": 4.3400092124938965,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.5755016803741455,
+ "learning_rate": 0.0006,
+ "loss": 4.2676286697387695,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.5352432131767273,
+ "learning_rate": 0.0006,
+ "loss": 4.322068214416504,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.5563830137252808,
+ "learning_rate": 0.0006,
+ "loss": 4.401552200317383,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.5542744994163513,
+ "learning_rate": 0.0006,
+ "loss": 4.361536026000977,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.5109394788742065,
+ "learning_rate": 0.0006,
+ "loss": 4.333110809326172,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.48128604888916016,
+ "learning_rate": 0.0006,
+ "loss": 4.311734199523926,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.48069921135902405,
+ "learning_rate": 0.0006,
+ "loss": 4.400852203369141,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.45155879855155945,
+ "learning_rate": 0.0006,
+ "loss": 4.257515907287598,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.44431430101394653,
+ "learning_rate": 0.0006,
+ "loss": 4.397309303283691,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.43975624442100525,
+ "learning_rate": 0.0006,
+ "loss": 4.392481803894043,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.43021512031555176,
+ "learning_rate": 0.0006,
+ "loss": 4.323525428771973,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.4590098559856415,
+ "learning_rate": 0.0006,
+ "loss": 4.334511756896973,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.42400652170181274,
+ "learning_rate": 0.0006,
+ "loss": 4.33546257019043,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.41162917017936707,
+ "learning_rate": 0.0006,
+ "loss": 4.348457336425781,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.44991976022720337,
+ "learning_rate": 0.0006,
+ "loss": 4.3486785888671875,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.41424447298049927,
+ "learning_rate": 0.0006,
+ "loss": 4.396841049194336,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.4157496690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.386002540588379,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.43610864877700806,
+ "learning_rate": 0.0006,
+ "loss": 4.355074882507324,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.43452468514442444,
+ "learning_rate": 0.0006,
+ "loss": 4.327574729919434,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.42757663130760193,
+ "learning_rate": 0.0006,
+ "loss": 4.289640426635742,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.38811302185058594,
+ "learning_rate": 0.0006,
+ "loss": 4.297506809234619,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.3866890072822571,
+ "learning_rate": 0.0006,
+ "loss": 4.4301838874816895,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.43073758482933044,
+ "learning_rate": 0.0006,
+ "loss": 4.365545749664307,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.4058871865272522,
+ "learning_rate": 0.0006,
+ "loss": 4.294832229614258,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.41439321637153625,
+ "learning_rate": 0.0006,
+ "loss": 4.374986171722412,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.39280998706817627,
+ "learning_rate": 0.0006,
+ "loss": 4.472156524658203,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.380862832069397,
+ "learning_rate": 0.0006,
+ "loss": 4.3376359939575195,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.3880598843097687,
+ "learning_rate": 0.0006,
+ "loss": 4.399764537811279,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.4056805372238159,
+ "learning_rate": 0.0006,
+ "loss": 4.3839263916015625,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.43928271532058716,
+ "learning_rate": 0.0006,
+ "loss": 4.387872695922852,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.4157223701477051,
+ "learning_rate": 0.0006,
+ "loss": 4.491827011108398,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.38938942551612854,
+ "learning_rate": 0.0006,
+ "loss": 4.369803428649902,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.39400580525398254,
+ "learning_rate": 0.0006,
+ "loss": 4.4603800773620605,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.3747307062149048,
+ "learning_rate": 0.0006,
+ "loss": 4.366776466369629,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.4072708785533905,
+ "learning_rate": 0.0006,
+ "loss": 4.3782854080200195,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.4091123342514038,
+ "learning_rate": 0.0006,
+ "loss": 4.4356689453125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.40395987033843994,
+ "learning_rate": 0.0006,
+ "loss": 4.413468360900879,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.39857032895088196,
+ "learning_rate": 0.0006,
+ "loss": 4.450807571411133,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.4158494174480438,
+ "learning_rate": 0.0006,
+ "loss": 4.381142616271973,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.4082915484905243,
+ "learning_rate": 0.0006,
+ "loss": 4.496438980102539,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.37405046820640564,
+ "learning_rate": 0.0006,
+ "loss": 4.345484256744385,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.359416127204895,
+ "learning_rate": 0.0006,
+ "loss": 4.26982307434082,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.3519706726074219,
+ "learning_rate": 0.0006,
+ "loss": 4.397839546203613,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.3789094388484955,
+ "learning_rate": 0.0006,
+ "loss": 4.415822982788086,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.3676875829696655,
+ "learning_rate": 0.0006,
+ "loss": 4.396381855010986,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.3599476218223572,
+ "learning_rate": 0.0006,
+ "loss": 4.4171977043151855,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.3843400180339813,
+ "learning_rate": 0.0006,
+ "loss": 4.47220516204834,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.3702511191368103,
+ "learning_rate": 0.0006,
+ "loss": 4.500491619110107,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.3719273805618286,
+ "learning_rate": 0.0006,
+ "loss": 4.352668762207031,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.3619741201400757,
+ "learning_rate": 0.0006,
+ "loss": 4.3586931228637695,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.3766055703163147,
+ "learning_rate": 0.0006,
+ "loss": 4.408159255981445,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.3580402433872223,
+ "learning_rate": 0.0006,
+ "loss": 4.355810165405273,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.3602997958660126,
+ "learning_rate": 0.0006,
+ "loss": 4.357786178588867,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.35930490493774414,
+ "learning_rate": 0.0006,
+ "loss": 4.353297233581543,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.3693123161792755,
+ "learning_rate": 0.0006,
+ "loss": 4.391401290893555,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.36045047640800476,
+ "learning_rate": 0.0006,
+ "loss": 4.447843551635742,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.38618308305740356,
+ "learning_rate": 0.0006,
+ "loss": 4.465207099914551,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.38916000723838806,
+ "learning_rate": 0.0006,
+ "loss": 4.4063239097595215,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.3937848210334778,
+ "learning_rate": 0.0006,
+ "loss": 4.438618183135986,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.3975565731525421,
+ "learning_rate": 0.0006,
+ "loss": 4.376347541809082,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.383375883102417,
+ "learning_rate": 0.0006,
+ "loss": 4.376345634460449,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.38982275128364563,
+ "learning_rate": 0.0006,
+ "loss": 4.477313041687012,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.44567444920539856,
+ "learning_rate": 0.0006,
+ "loss": 4.4622087478637695,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 6.127683162689209,
+ "eval_runtime": 43.8712,
+ "eval_samples_per_second": 55.663,
+ "eval_steps_per_second": 3.487,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.38945627212524414,
+ "learning_rate": 0.0006,
+ "loss": 4.225332736968994,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.48500800132751465,
+ "learning_rate": 0.0006,
+ "loss": 4.303142547607422,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.4945746660232544,
+ "learning_rate": 0.0006,
+ "loss": 4.252800464630127,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.4860735237598419,
+ "learning_rate": 0.0006,
+ "loss": 4.3632307052612305,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.5717944502830505,
+ "learning_rate": 0.0006,
+ "loss": 4.2910966873168945,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.6825600862503052,
+ "learning_rate": 0.0006,
+ "loss": 4.446534633636475,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.7507191300392151,
+ "learning_rate": 0.0006,
+ "loss": 4.3218584060668945,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.8143581748008728,
+ "learning_rate": 0.0006,
+ "loss": 4.291619777679443,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.8164665699005127,
+ "learning_rate": 0.0006,
+ "loss": 4.314390182495117,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.8027179837226868,
+ "learning_rate": 0.0006,
+ "loss": 4.347686767578125,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.7046833038330078,
+ "learning_rate": 0.0006,
+ "loss": 4.382390975952148,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.6704773902893066,
+ "learning_rate": 0.0006,
+ "loss": 4.368736267089844,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.5986452698707581,
+ "learning_rate": 0.0006,
+ "loss": 4.3586106300354,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.5452585816383362,
+ "learning_rate": 0.0006,
+ "loss": 4.215537071228027,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.5050400495529175,
+ "learning_rate": 0.0006,
+ "loss": 4.345709800720215,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.4811224639415741,
+ "learning_rate": 0.0006,
+ "loss": 4.229983329772949,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.47257834672927856,
+ "learning_rate": 0.0006,
+ "loss": 4.401679039001465,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.46806448698043823,
+ "learning_rate": 0.0006,
+ "loss": 4.345294952392578,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.47019970417022705,
+ "learning_rate": 0.0006,
+ "loss": 4.3366899490356445,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.4618140459060669,
+ "learning_rate": 0.0006,
+ "loss": 4.423093795776367,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.45103076100349426,
+ "learning_rate": 0.0006,
+ "loss": 4.429213523864746,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.42674535512924194,
+ "learning_rate": 0.0006,
+ "loss": 4.355292320251465,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.4282950162887573,
+ "learning_rate": 0.0006,
+ "loss": 4.307826995849609,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.4120710790157318,
+ "learning_rate": 0.0006,
+ "loss": 4.322912216186523,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.4138009548187256,
+ "learning_rate": 0.0006,
+ "loss": 4.328085899353027,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.41546961665153503,
+ "learning_rate": 0.0006,
+ "loss": 4.4070940017700195,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.44050562381744385,
+ "learning_rate": 0.0006,
+ "loss": 4.419538497924805,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.41043856739997864,
+ "learning_rate": 0.0006,
+ "loss": 4.404756546020508,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.42796140909194946,
+ "learning_rate": 0.0006,
+ "loss": 4.3040008544921875,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.38510003685951233,
+ "learning_rate": 0.0006,
+ "loss": 4.353320598602295,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.3788503110408783,
+ "learning_rate": 0.0006,
+ "loss": 4.300704479217529,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.3905165493488312,
+ "learning_rate": 0.0006,
+ "loss": 4.343006610870361,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.3838869333267212,
+ "learning_rate": 0.0006,
+ "loss": 4.308780670166016,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.38746532797813416,
+ "learning_rate": 0.0006,
+ "loss": 4.335064888000488,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.37491124868392944,
+ "learning_rate": 0.0006,
+ "loss": 4.32066535949707,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.36987295746803284,
+ "learning_rate": 0.0006,
+ "loss": 4.317310333251953,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.38870200514793396,
+ "learning_rate": 0.0006,
+ "loss": 4.354729652404785,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.37225764989852905,
+ "learning_rate": 0.0006,
+ "loss": 4.29198694229126,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.3612116873264313,
+ "learning_rate": 0.0006,
+ "loss": 4.3979315757751465,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.40117356181144714,
+ "learning_rate": 0.0006,
+ "loss": 4.429460048675537,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.3933751881122589,
+ "learning_rate": 0.0006,
+ "loss": 4.348066329956055,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.38921254873275757,
+ "learning_rate": 0.0006,
+ "loss": 4.405765056610107,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.3987453579902649,
+ "learning_rate": 0.0006,
+ "loss": 4.350672721862793,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.43417951464653015,
+ "learning_rate": 0.0006,
+ "loss": 4.463413238525391,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.41297927498817444,
+ "learning_rate": 0.0006,
+ "loss": 4.309045791625977,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.38461950421333313,
+ "learning_rate": 0.0006,
+ "loss": 4.318929672241211,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.3841524124145508,
+ "learning_rate": 0.0006,
+ "loss": 4.379926681518555,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.39013510942459106,
+ "learning_rate": 0.0006,
+ "loss": 4.3409342765808105,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.3847009539604187,
+ "learning_rate": 0.0006,
+ "loss": 4.467362880706787,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.3979317247867584,
+ "learning_rate": 0.0006,
+ "loss": 4.333352088928223,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.4019637107849121,
+ "learning_rate": 0.0006,
+ "loss": 4.32415246963501,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.38000333309173584,
+ "learning_rate": 0.0006,
+ "loss": 4.318780899047852,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.3957592248916626,
+ "learning_rate": 0.0006,
+ "loss": 4.301888942718506,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.380258709192276,
+ "learning_rate": 0.0006,
+ "loss": 4.362771987915039,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.37715500593185425,
+ "learning_rate": 0.0006,
+ "loss": 4.455068588256836,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.37162303924560547,
+ "learning_rate": 0.0006,
+ "loss": 4.453987121582031,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.36303192377090454,
+ "learning_rate": 0.0006,
+ "loss": 4.400303363800049,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.34762880206108093,
+ "learning_rate": 0.0006,
+ "loss": 4.3961381912231445,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.34881117939949036,
+ "learning_rate": 0.0006,
+ "loss": 4.419530868530273,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.36440593004226685,
+ "learning_rate": 0.0006,
+ "loss": 4.4832868576049805,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.3671160638332367,
+ "learning_rate": 0.0006,
+ "loss": 4.389676094055176,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.3860883116722107,
+ "learning_rate": 0.0006,
+ "loss": 4.383245468139648,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.38325265049934387,
+ "learning_rate": 0.0006,
+ "loss": 4.3348388671875,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.3778875470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.362031936645508,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.3768773674964905,
+ "learning_rate": 0.0006,
+ "loss": 4.33457088470459,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.39139771461486816,
+ "learning_rate": 0.0006,
+ "loss": 4.455694198608398,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.38553205132484436,
+ "learning_rate": 0.0006,
+ "loss": 4.347469329833984,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.3916657567024231,
+ "learning_rate": 0.0006,
+ "loss": 4.394040107727051,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.3568893373012543,
+ "learning_rate": 0.0006,
+ "loss": 4.3976874351501465,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.3758280277252197,
+ "learning_rate": 0.0006,
+ "loss": 4.401939392089844,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.3833237588405609,
+ "learning_rate": 0.0006,
+ "loss": 4.339327812194824,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.4451141357421875,
+ "learning_rate": 0.0006,
+ "loss": 4.452360153198242,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 6.193995952606201,
+ "eval_runtime": 43.9228,
+ "eval_samples_per_second": 55.598,
+ "eval_steps_per_second": 3.483,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.4081752598285675,
+ "learning_rate": 0.0006,
+ "loss": 4.2674560546875,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.46005865931510925,
+ "learning_rate": 0.0006,
+ "loss": 4.2233099937438965,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.4297347962856293,
+ "learning_rate": 0.0006,
+ "loss": 4.269168376922607,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.427181601524353,
+ "learning_rate": 0.0006,
+ "loss": 4.304473876953125,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.4240623712539673,
+ "learning_rate": 0.0006,
+ "loss": 4.358336448669434,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.461392879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.351563930511475,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.4573875665664673,
+ "learning_rate": 0.0006,
+ "loss": 4.233829021453857,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.5236565470695496,
+ "learning_rate": 0.0006,
+ "loss": 4.313651084899902,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.6449952125549316,
+ "learning_rate": 0.0006,
+ "loss": 4.2785491943359375,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.76405930519104,
+ "learning_rate": 0.0006,
+ "loss": 4.333526611328125,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.8181349635124207,
+ "learning_rate": 0.0006,
+ "loss": 4.3336896896362305,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.7717618942260742,
+ "learning_rate": 0.0006,
+ "loss": 4.314065933227539,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.6831390857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.378012657165527,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.5755302906036377,
+ "learning_rate": 0.0006,
+ "loss": 4.331476211547852,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.5297263860702515,
+ "learning_rate": 0.0006,
+ "loss": 4.337549209594727,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.5538325309753418,
+ "learning_rate": 0.0006,
+ "loss": 4.395265102386475,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.4868195652961731,
+ "learning_rate": 0.0006,
+ "loss": 4.313584327697754,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.4794177711009979,
+ "learning_rate": 0.0006,
+ "loss": 4.413606643676758,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.4221785366535187,
+ "learning_rate": 0.0006,
+ "loss": 4.255707740783691,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.4288736879825592,
+ "learning_rate": 0.0006,
+ "loss": 4.257824897766113,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.42079946398735046,
+ "learning_rate": 0.0006,
+ "loss": 4.2655253410339355,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.4367576539516449,
+ "learning_rate": 0.0006,
+ "loss": 4.390307426452637,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.4121208190917969,
+ "learning_rate": 0.0006,
+ "loss": 4.3600006103515625,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.3934427797794342,
+ "learning_rate": 0.0006,
+ "loss": 4.276140213012695,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.3987336754798889,
+ "learning_rate": 0.0006,
+ "loss": 4.330526351928711,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.40691474080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.260777473449707,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.3869854807853699,
+ "learning_rate": 0.0006,
+ "loss": 4.3207855224609375,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.3992115259170532,
+ "learning_rate": 0.0006,
+ "loss": 4.3675432205200195,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.39756008982658386,
+ "learning_rate": 0.0006,
+ "loss": 4.359041213989258,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.37387391924858093,
+ "learning_rate": 0.0006,
+ "loss": 4.314123630523682,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.3787343502044678,
+ "learning_rate": 0.0006,
+ "loss": 4.376033782958984,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.388907253742218,
+ "learning_rate": 0.0006,
+ "loss": 4.2664690017700195,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.39261215925216675,
+ "learning_rate": 0.0006,
+ "loss": 4.335193634033203,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.385919988155365,
+ "learning_rate": 0.0006,
+ "loss": 4.329131126403809,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.39091575145721436,
+ "learning_rate": 0.0006,
+ "loss": 4.416098117828369,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.3747062683105469,
+ "learning_rate": 0.0006,
+ "loss": 4.284010887145996,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.37862640619277954,
+ "learning_rate": 0.0006,
+ "loss": 4.398101806640625,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.3797444701194763,
+ "learning_rate": 0.0006,
+ "loss": 4.433382034301758,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.3917072117328644,
+ "learning_rate": 0.0006,
+ "loss": 4.265375137329102,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.40743324160575867,
+ "learning_rate": 0.0006,
+ "loss": 4.351291656494141,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.4176776707172394,
+ "learning_rate": 0.0006,
+ "loss": 4.4158782958984375,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.4368206560611725,
+ "learning_rate": 0.0006,
+ "loss": 4.422186851501465,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.45450183749198914,
+ "learning_rate": 0.0006,
+ "loss": 4.363736629486084,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.4195234775543213,
+ "learning_rate": 0.0006,
+ "loss": 4.459656715393066,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.3838373124599457,
+ "learning_rate": 0.0006,
+ "loss": 4.338109016418457,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.37965819239616394,
+ "learning_rate": 0.0006,
+ "loss": 4.350182056427002,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.3787379264831543,
+ "learning_rate": 0.0006,
+ "loss": 4.394096851348877,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.3984084129333496,
+ "learning_rate": 0.0006,
+ "loss": 4.381903171539307,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.3826642334461212,
+ "learning_rate": 0.0006,
+ "loss": 4.269111156463623,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.3738428056240082,
+ "learning_rate": 0.0006,
+ "loss": 4.29117488861084,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.3769048750400543,
+ "learning_rate": 0.0006,
+ "loss": 4.395892143249512,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.36490270495414734,
+ "learning_rate": 0.0006,
+ "loss": 4.356070518493652,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.38128694891929626,
+ "learning_rate": 0.0006,
+ "loss": 4.366775989532471,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.3863452672958374,
+ "learning_rate": 0.0006,
+ "loss": 4.403047561645508,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.3697649836540222,
+ "learning_rate": 0.0006,
+ "loss": 4.333529472351074,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.3666415810585022,
+ "learning_rate": 0.0006,
+ "loss": 4.421572685241699,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.3746238946914673,
+ "learning_rate": 0.0006,
+ "loss": 4.291342735290527,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.3864925503730774,
+ "learning_rate": 0.0006,
+ "loss": 4.319379806518555,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.40842366218566895,
+ "learning_rate": 0.0006,
+ "loss": 4.34860897064209,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.39575234055519104,
+ "learning_rate": 0.0006,
+ "loss": 4.389467239379883,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.3882506787776947,
+ "learning_rate": 0.0006,
+ "loss": 4.373462677001953,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.38202980160713196,
+ "learning_rate": 0.0006,
+ "loss": 4.370086669921875,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.37805864214897156,
+ "learning_rate": 0.0006,
+ "loss": 4.46006965637207,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.3739442527294159,
+ "learning_rate": 0.0006,
+ "loss": 4.36165714263916,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.3707204759120941,
+ "learning_rate": 0.0006,
+ "loss": 4.418872356414795,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.37603604793548584,
+ "learning_rate": 0.0006,
+ "loss": 4.45180606842041,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.3731978237628937,
+ "learning_rate": 0.0006,
+ "loss": 4.412590026855469,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.3871077001094818,
+ "learning_rate": 0.0006,
+ "loss": 4.4665679931640625,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.3805893659591675,
+ "learning_rate": 0.0006,
+ "loss": 4.376047134399414,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.3941190540790558,
+ "learning_rate": 0.0006,
+ "loss": 4.414681434631348,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.39961132407188416,
+ "learning_rate": 0.0006,
+ "loss": 4.40030574798584,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.45096156001091003,
+ "learning_rate": 0.0006,
+ "loss": 4.3740458488464355,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 6.164906978607178,
+ "eval_runtime": 43.7516,
+ "eval_samples_per_second": 55.815,
+ "eval_steps_per_second": 3.497,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.4227452278137207,
+ "learning_rate": 0.0006,
+ "loss": 4.3197340965271,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.4646683931350708,
+ "learning_rate": 0.0006,
+ "loss": 4.254220008850098,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.5112658739089966,
+ "learning_rate": 0.0006,
+ "loss": 4.245427131652832,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.5452179312705994,
+ "learning_rate": 0.0006,
+ "loss": 4.303033828735352,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.6151604652404785,
+ "learning_rate": 0.0006,
+ "loss": 4.3013811111450195,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.7466694712638855,
+ "learning_rate": 0.0006,
+ "loss": 4.303430080413818,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.9221336841583252,
+ "learning_rate": 0.0006,
+ "loss": 4.330693244934082,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.9571523666381836,
+ "learning_rate": 0.0006,
+ "loss": 4.283618927001953,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.8955944776535034,
+ "learning_rate": 0.0006,
+ "loss": 4.331462860107422,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.9967221021652222,
+ "learning_rate": 0.0006,
+ "loss": 4.267236709594727,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.896125853061676,
+ "learning_rate": 0.0006,
+ "loss": 4.382920265197754,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.8246790170669556,
+ "learning_rate": 0.0006,
+ "loss": 4.325201034545898,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.6651087403297424,
+ "learning_rate": 0.0006,
+ "loss": 4.389814376831055,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.5789903998374939,
+ "learning_rate": 0.0006,
+ "loss": 4.256431579589844,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.540268063545227,
+ "learning_rate": 0.0006,
+ "loss": 4.314873218536377,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.5234258770942688,
+ "learning_rate": 0.0006,
+ "loss": 4.322999954223633,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.5203981399536133,
+ "learning_rate": 0.0006,
+ "loss": 4.449131965637207,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.47833096981048584,
+ "learning_rate": 0.0006,
+ "loss": 4.370548725128174,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.45063355565071106,
+ "learning_rate": 0.0006,
+ "loss": 4.423710823059082,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.4473242163658142,
+ "learning_rate": 0.0006,
+ "loss": 4.322866439819336,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.45025673508644104,
+ "learning_rate": 0.0006,
+ "loss": 4.242474555969238,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.4419912099838257,
+ "learning_rate": 0.0006,
+ "loss": 4.3837714195251465,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.4443511664867401,
+ "learning_rate": 0.0006,
+ "loss": 4.393730163574219,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.42215496301651,
+ "learning_rate": 0.0006,
+ "loss": 4.360969066619873,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.4408218562602997,
+ "learning_rate": 0.0006,
+ "loss": 4.399507522583008,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.42309728264808655,
+ "learning_rate": 0.0006,
+ "loss": 4.34589147567749,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.3893560767173767,
+ "learning_rate": 0.0006,
+ "loss": 4.278870582580566,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.42726844549179077,
+ "learning_rate": 0.0006,
+ "loss": 4.428325653076172,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.39529383182525635,
+ "learning_rate": 0.0006,
+ "loss": 4.3687872886657715,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.39174285531044006,
+ "learning_rate": 0.0006,
+ "loss": 4.367023468017578,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.39338526129722595,
+ "learning_rate": 0.0006,
+ "loss": 4.372482776641846,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.396528959274292,
+ "learning_rate": 0.0006,
+ "loss": 4.325854778289795,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.4031950533390045,
+ "learning_rate": 0.0006,
+ "loss": 4.387483596801758,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.3867308795452118,
+ "learning_rate": 0.0006,
+ "loss": 4.337440490722656,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.3758327066898346,
+ "learning_rate": 0.0006,
+ "loss": 4.332152366638184,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.3789239823818207,
+ "learning_rate": 0.0006,
+ "loss": 4.234537124633789,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.36792582273483276,
+ "learning_rate": 0.0006,
+ "loss": 4.3876800537109375,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.3689296245574951,
+ "learning_rate": 0.0006,
+ "loss": 4.311098098754883,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.3556303083896637,
+ "learning_rate": 0.0006,
+ "loss": 4.348201274871826,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.38501277565956116,
+ "learning_rate": 0.0006,
+ "loss": 4.391176700592041,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.3857221305370331,
+ "learning_rate": 0.0006,
+ "loss": 4.377525329589844,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.37236976623535156,
+ "learning_rate": 0.0006,
+ "loss": 4.25323486328125,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.37982237339019775,
+ "learning_rate": 0.0006,
+ "loss": 4.326591491699219,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.3887641131877899,
+ "learning_rate": 0.0006,
+ "loss": 4.32540225982666,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.3766990900039673,
+ "learning_rate": 0.0006,
+ "loss": 4.320146560668945,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.3827766478061676,
+ "learning_rate": 0.0006,
+ "loss": 4.344974517822266,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.3892960846424103,
+ "learning_rate": 0.0006,
+ "loss": 4.37299108505249,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.39927658438682556,
+ "learning_rate": 0.0006,
+ "loss": 4.346755504608154,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.3751842975616455,
+ "learning_rate": 0.0006,
+ "loss": 4.390047073364258,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.3758105933666229,
+ "learning_rate": 0.0006,
+ "loss": 4.392386436462402,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.3755977153778076,
+ "learning_rate": 0.0006,
+ "loss": 4.389333724975586,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.38697585463523865,
+ "learning_rate": 0.0006,
+ "loss": 4.363922119140625,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.37856224179267883,
+ "learning_rate": 0.0006,
+ "loss": 4.415143966674805,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.3853805959224701,
+ "learning_rate": 0.0006,
+ "loss": 4.332059860229492,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.3552320599555969,
+ "learning_rate": 0.0006,
+ "loss": 4.360487937927246,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.3593924641609192,
+ "learning_rate": 0.0006,
+ "loss": 4.386531829833984,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.37393584847450256,
+ "learning_rate": 0.0006,
+ "loss": 4.377449989318848,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.37289509177207947,
+ "learning_rate": 0.0006,
+ "loss": 4.381917953491211,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.3700922131538391,
+ "learning_rate": 0.0006,
+ "loss": 4.472764015197754,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.3773220181465149,
+ "learning_rate": 0.0006,
+ "loss": 4.438575744628906,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.3959292769432068,
+ "learning_rate": 0.0006,
+ "loss": 4.41773796081543,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.37098821997642517,
+ "learning_rate": 0.0006,
+ "loss": 4.3457441329956055,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.3589438199996948,
+ "learning_rate": 0.0006,
+ "loss": 4.390456676483154,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.3993541896343231,
+ "learning_rate": 0.0006,
+ "loss": 4.412688255310059,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.39771372079849243,
+ "learning_rate": 0.0006,
+ "loss": 4.37404203414917,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.37521013617515564,
+ "learning_rate": 0.0006,
+ "loss": 4.379281044006348,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.3812563717365265,
+ "learning_rate": 0.0006,
+ "loss": 4.475038528442383,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.3759402632713318,
+ "learning_rate": 0.0006,
+ "loss": 4.298859596252441,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.38831669092178345,
+ "learning_rate": 0.0006,
+ "loss": 4.335268020629883,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.3674168884754181,
+ "learning_rate": 0.0006,
+ "loss": 4.288745880126953,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.37575823068618774,
+ "learning_rate": 0.0006,
+ "loss": 4.340919494628906,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.44213995337486267,
+ "learning_rate": 0.0006,
+ "loss": 4.428310394287109,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 6.250092029571533,
+ "eval_runtime": 43.9606,
+ "eval_samples_per_second": 55.55,
+ "eval_steps_per_second": 3.48,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.40146708488464355,
+ "learning_rate": 0.0006,
+ "loss": 4.233017921447754,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.4238559305667877,
+ "learning_rate": 0.0006,
+ "loss": 4.256832122802734,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.4282098412513733,
+ "learning_rate": 0.0006,
+ "loss": 4.243378639221191,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.4408058524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.367465019226074,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.445965439081192,
+ "learning_rate": 0.0006,
+ "loss": 4.347798824310303,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.47689515352249146,
+ "learning_rate": 0.0006,
+ "loss": 4.242677211761475,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.5041401386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.354928016662598,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.5793538689613342,
+ "learning_rate": 0.0006,
+ "loss": 4.301093578338623,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.5709708333015442,
+ "learning_rate": 0.0006,
+ "loss": 4.217863082885742,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.5181067585945129,
+ "learning_rate": 0.0006,
+ "loss": 4.246687889099121,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.5148541927337646,
+ "learning_rate": 0.0006,
+ "loss": 4.285772800445557,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.5215007662773132,
+ "learning_rate": 0.0006,
+ "loss": 4.2491350173950195,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.5118919610977173,
+ "learning_rate": 0.0006,
+ "loss": 4.354918479919434,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.5332921147346497,
+ "learning_rate": 0.0006,
+ "loss": 4.294621467590332,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.5734043717384338,
+ "learning_rate": 0.0006,
+ "loss": 4.283238887786865,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.5209192037582397,
+ "learning_rate": 0.0006,
+ "loss": 4.251487731933594,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.4510970711708069,
+ "learning_rate": 0.0006,
+ "loss": 4.294740676879883,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.42409008741378784,
+ "learning_rate": 0.0006,
+ "loss": 4.267972946166992,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.45052847266197205,
+ "learning_rate": 0.0006,
+ "loss": 4.451445579528809,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.420418918132782,
+ "learning_rate": 0.0006,
+ "loss": 4.227499008178711,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.4419310390949249,
+ "learning_rate": 0.0006,
+ "loss": 4.294921875,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.41020578145980835,
+ "learning_rate": 0.0006,
+ "loss": 4.235942840576172,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.4084969162940979,
+ "learning_rate": 0.0006,
+ "loss": 4.285951614379883,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.39946338534355164,
+ "learning_rate": 0.0006,
+ "loss": 4.388570785522461,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.39431124925613403,
+ "learning_rate": 0.0006,
+ "loss": 4.329334259033203,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.41183048486709595,
+ "learning_rate": 0.0006,
+ "loss": 4.369775295257568,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.4041382968425751,
+ "learning_rate": 0.0006,
+ "loss": 4.272721290588379,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.42982324957847595,
+ "learning_rate": 0.0006,
+ "loss": 4.310064315795898,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.42579901218414307,
+ "learning_rate": 0.0006,
+ "loss": 4.284671783447266,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.41768139600753784,
+ "learning_rate": 0.0006,
+ "loss": 4.343086242675781,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.3960258960723877,
+ "learning_rate": 0.0006,
+ "loss": 4.2318806648254395,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.3981281518936157,
+ "learning_rate": 0.0006,
+ "loss": 4.2755937576293945,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.39555633068084717,
+ "learning_rate": 0.0006,
+ "loss": 4.383005142211914,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.4002246856689453,
+ "learning_rate": 0.0006,
+ "loss": 4.332754135131836,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.4106678068637848,
+ "learning_rate": 0.0006,
+ "loss": 4.391409873962402,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.3856841027736664,
+ "learning_rate": 0.0006,
+ "loss": 4.316332817077637,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.3910135328769684,
+ "learning_rate": 0.0006,
+ "loss": 4.327088356018066,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.38631075620651245,
+ "learning_rate": 0.0006,
+ "loss": 4.308974266052246,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.36760637164115906,
+ "learning_rate": 0.0006,
+ "loss": 4.396300315856934,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.39333999156951904,
+ "learning_rate": 0.0006,
+ "loss": 4.33335018157959,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.37966030836105347,
+ "learning_rate": 0.0006,
+ "loss": 4.298529148101807,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.3774148225784302,
+ "learning_rate": 0.0006,
+ "loss": 4.218472480773926,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.38100066781044006,
+ "learning_rate": 0.0006,
+ "loss": 4.337407112121582,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.3924340605735779,
+ "learning_rate": 0.0006,
+ "loss": 4.38271427154541,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.37583890557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.331287384033203,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.3993631601333618,
+ "learning_rate": 0.0006,
+ "loss": 4.297436237335205,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.41312935948371887,
+ "learning_rate": 0.0006,
+ "loss": 4.305514335632324,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.4133725166320801,
+ "learning_rate": 0.0006,
+ "loss": 4.339967727661133,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.3860441744327545,
+ "learning_rate": 0.0006,
+ "loss": 4.31814432144165,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.3891344964504242,
+ "learning_rate": 0.0006,
+ "loss": 4.346461772918701,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.3863038122653961,
+ "learning_rate": 0.0006,
+ "loss": 4.413818359375,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.37267377972602844,
+ "learning_rate": 0.0006,
+ "loss": 4.333828449249268,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.37040555477142334,
+ "learning_rate": 0.0006,
+ "loss": 4.456110000610352,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.3837447464466095,
+ "learning_rate": 0.0006,
+ "loss": 4.242850303649902,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.39074262976646423,
+ "learning_rate": 0.0006,
+ "loss": 4.3549485206604,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.38219889998435974,
+ "learning_rate": 0.0006,
+ "loss": 4.296403884887695,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.38378462195396423,
+ "learning_rate": 0.0006,
+ "loss": 4.369739532470703,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.37791451811790466,
+ "learning_rate": 0.0006,
+ "loss": 4.372786998748779,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.3720730245113373,
+ "learning_rate": 0.0006,
+ "loss": 4.292923450469971,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.3587147295475006,
+ "learning_rate": 0.0006,
+ "loss": 4.336228847503662,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.3617904782295227,
+ "learning_rate": 0.0006,
+ "loss": 4.380134582519531,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.3623189628124237,
+ "learning_rate": 0.0006,
+ "loss": 4.340606689453125,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.37112200260162354,
+ "learning_rate": 0.0006,
+ "loss": 4.310943603515625,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.3742401897907257,
+ "learning_rate": 0.0006,
+ "loss": 4.3478593826293945,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.374665230512619,
+ "learning_rate": 0.0006,
+ "loss": 4.4058637619018555,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.38624459505081177,
+ "learning_rate": 0.0006,
+ "loss": 4.348050594329834,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.40541738271713257,
+ "learning_rate": 0.0006,
+ "loss": 4.471852779388428,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.3857991695404053,
+ "learning_rate": 0.0006,
+ "loss": 4.312546253204346,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.41659343242645264,
+ "learning_rate": 0.0006,
+ "loss": 4.315553188323975,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.43697381019592285,
+ "learning_rate": 0.0006,
+ "loss": 4.333539962768555,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.45475196838378906,
+ "learning_rate": 0.0006,
+ "loss": 4.362082481384277,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.4871002733707428,
+ "learning_rate": 0.0006,
+ "loss": 4.328166484832764,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 6.260599136352539,
+ "eval_runtime": 43.7447,
+ "eval_samples_per_second": 55.824,
+ "eval_steps_per_second": 3.498,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.42134732007980347,
+ "learning_rate": 0.0006,
+ "loss": 4.200570106506348,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.44146645069122314,
+ "learning_rate": 0.0006,
+ "loss": 4.219682693481445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.4451248049736023,
+ "learning_rate": 0.0006,
+ "loss": 4.240499496459961,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.45094963908195496,
+ "learning_rate": 0.0006,
+ "loss": 4.252233505249023,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.4750693738460541,
+ "learning_rate": 0.0006,
+ "loss": 4.229597091674805,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.5211004614830017,
+ "learning_rate": 0.0006,
+ "loss": 4.3165435791015625,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.5570583343505859,
+ "learning_rate": 0.0006,
+ "loss": 4.280586242675781,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.543846845626831,
+ "learning_rate": 0.0006,
+ "loss": 4.243165493011475,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.4849488437175751,
+ "learning_rate": 0.0006,
+ "loss": 4.190418243408203,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.485515296459198,
+ "learning_rate": 0.0006,
+ "loss": 4.30844783782959,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.5233704447746277,
+ "learning_rate": 0.0006,
+ "loss": 4.229648590087891,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.5426996946334839,
+ "learning_rate": 0.0006,
+ "loss": 4.31719970703125,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.5974491238594055,
+ "learning_rate": 0.0006,
+ "loss": 4.250443458557129,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.6469011902809143,
+ "learning_rate": 0.0006,
+ "loss": 4.354139804840088,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.7294577360153198,
+ "learning_rate": 0.0006,
+ "loss": 4.3642706871032715,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.6488705277442932,
+ "learning_rate": 0.0006,
+ "loss": 4.275979995727539,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.4984777271747589,
+ "learning_rate": 0.0006,
+ "loss": 4.217861175537109,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.5109938979148865,
+ "learning_rate": 0.0006,
+ "loss": 4.286642074584961,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.49844229221343994,
+ "learning_rate": 0.0006,
+ "loss": 4.238213539123535,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.488077312707901,
+ "learning_rate": 0.0006,
+ "loss": 4.231420040130615,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.4928477704524994,
+ "learning_rate": 0.0006,
+ "loss": 4.380367279052734,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.49250566959381104,
+ "learning_rate": 0.0006,
+ "loss": 4.29306697845459,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.48340678215026855,
+ "learning_rate": 0.0006,
+ "loss": 4.2856645584106445,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.4970073401927948,
+ "learning_rate": 0.0006,
+ "loss": 4.34441614151001,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.4387594759464264,
+ "learning_rate": 0.0006,
+ "loss": 4.350798606872559,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.4448535144329071,
+ "learning_rate": 0.0006,
+ "loss": 4.350264072418213,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.4491334855556488,
+ "learning_rate": 0.0006,
+ "loss": 4.310317039489746,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.4396249055862427,
+ "learning_rate": 0.0006,
+ "loss": 4.3137288093566895,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.42331191897392273,
+ "learning_rate": 0.0006,
+ "loss": 4.283992767333984,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.42483261227607727,
+ "learning_rate": 0.0006,
+ "loss": 4.269024848937988,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.40380987524986267,
+ "learning_rate": 0.0006,
+ "loss": 4.321262836456299,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.4109397530555725,
+ "learning_rate": 0.0006,
+ "loss": 4.285927772521973,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.43696823716163635,
+ "learning_rate": 0.0006,
+ "loss": 4.303576946258545,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.379971444606781,
+ "learning_rate": 0.0006,
+ "loss": 4.388635158538818,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.4044286608695984,
+ "learning_rate": 0.0006,
+ "loss": 4.329499244689941,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.4053935706615448,
+ "learning_rate": 0.0006,
+ "loss": 4.297847747802734,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.38198018074035645,
+ "learning_rate": 0.0006,
+ "loss": 4.288124084472656,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.39832696318626404,
+ "learning_rate": 0.0006,
+ "loss": 4.380218982696533,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.40758490562438965,
+ "learning_rate": 0.0006,
+ "loss": 4.32636833190918,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.3803170621395111,
+ "learning_rate": 0.0006,
+ "loss": 4.30747127532959,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.3853742480278015,
+ "learning_rate": 0.0006,
+ "loss": 4.324460029602051,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.4050910174846649,
+ "learning_rate": 0.0006,
+ "loss": 4.306979179382324,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.4187234342098236,
+ "learning_rate": 0.0006,
+ "loss": 4.334494113922119,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.4233380854129791,
+ "learning_rate": 0.0006,
+ "loss": 4.338802814483643,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.4379981458187103,
+ "learning_rate": 0.0006,
+ "loss": 4.399646759033203,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.4394802749156952,
+ "learning_rate": 0.0006,
+ "loss": 4.33521842956543,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.415715754032135,
+ "learning_rate": 0.0006,
+ "loss": 4.3247880935668945,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.3918288052082062,
+ "learning_rate": 0.0006,
+ "loss": 4.329852104187012,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.40957361459732056,
+ "learning_rate": 0.0006,
+ "loss": 4.266562461853027,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.4475722312927246,
+ "learning_rate": 0.0006,
+ "loss": 4.513836860656738,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.44053083658218384,
+ "learning_rate": 0.0006,
+ "loss": 4.305239677429199,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.4229199290275574,
+ "learning_rate": 0.0006,
+ "loss": 4.347291946411133,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.4058760106563568,
+ "learning_rate": 0.0006,
+ "loss": 4.377959251403809,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.4245327115058899,
+ "learning_rate": 0.0006,
+ "loss": 4.363465309143066,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.4446028470993042,
+ "learning_rate": 0.0006,
+ "loss": 4.4517316818237305,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.40111324191093445,
+ "learning_rate": 0.0006,
+ "loss": 4.294158935546875,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.39330703020095825,
+ "learning_rate": 0.0006,
+ "loss": 4.329209327697754,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.4327717423439026,
+ "learning_rate": 0.0006,
+ "loss": 4.349915027618408,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.411691814661026,
+ "learning_rate": 0.0006,
+ "loss": 4.441436290740967,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.39029157161712646,
+ "learning_rate": 0.0006,
+ "loss": 4.339478492736816,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.4064500331878662,
+ "learning_rate": 0.0006,
+ "loss": 4.3008952140808105,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.40196365118026733,
+ "learning_rate": 0.0006,
+ "loss": 4.278536319732666,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.3925584554672241,
+ "learning_rate": 0.0006,
+ "loss": 4.351866722106934,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.37795954942703247,
+ "learning_rate": 0.0006,
+ "loss": 4.40715217590332,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.3920917510986328,
+ "learning_rate": 0.0006,
+ "loss": 4.303398132324219,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.3982515335083008,
+ "learning_rate": 0.0006,
+ "loss": 4.397731304168701,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.41097545623779297,
+ "learning_rate": 0.0006,
+ "loss": 4.372936248779297,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.38546738028526306,
+ "learning_rate": 0.0006,
+ "loss": 4.36802339553833,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.3931894302368164,
+ "learning_rate": 0.0006,
+ "loss": 4.397665023803711,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.37862512469291687,
+ "learning_rate": 0.0006,
+ "loss": 4.356085777282715,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.41227665543556213,
+ "learning_rate": 0.0006,
+ "loss": 4.4159650802612305,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.499416321516037,
+ "learning_rate": 0.0006,
+ "loss": 4.329807281494141,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 6.198739051818848,
+ "eval_runtime": 43.6864,
+ "eval_samples_per_second": 55.898,
+ "eval_steps_per_second": 3.502,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.4628259837627411,
+ "learning_rate": 0.0006,
+ "loss": 4.170797824859619,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.4806155860424042,
+ "learning_rate": 0.0006,
+ "loss": 4.2210259437561035,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.4822350740432739,
+ "learning_rate": 0.0006,
+ "loss": 4.23138952255249,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.286277770996094,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.5044941306114197,
+ "learning_rate": 0.0006,
+ "loss": 4.232921600341797,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.5530663132667542,
+ "learning_rate": 0.0006,
+ "loss": 4.221680641174316,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.5776026844978333,
+ "learning_rate": 0.0006,
+ "loss": 4.213212966918945,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.6634025573730469,
+ "learning_rate": 0.0006,
+ "loss": 4.319071292877197,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.76152503490448,
+ "learning_rate": 0.0006,
+ "loss": 4.214156150817871,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.8480479717254639,
+ "learning_rate": 0.0006,
+ "loss": 4.321653842926025,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.9160254001617432,
+ "learning_rate": 0.0006,
+ "loss": 4.33962869644165,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.8524528741836548,
+ "learning_rate": 0.0006,
+ "loss": 4.268365859985352,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.7075300216674805,
+ "learning_rate": 0.0006,
+ "loss": 4.306760311126709,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.6349018216133118,
+ "learning_rate": 0.0006,
+ "loss": 4.333056926727295,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.5707677006721497,
+ "learning_rate": 0.0006,
+ "loss": 4.32132625579834,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.5484790205955505,
+ "learning_rate": 0.0006,
+ "loss": 4.3016767501831055,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.5517436861991882,
+ "learning_rate": 0.0006,
+ "loss": 4.295352935791016,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.5682413578033447,
+ "learning_rate": 0.0006,
+ "loss": 4.302443504333496,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.5568698644638062,
+ "learning_rate": 0.0006,
+ "loss": 4.328906059265137,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.5146242380142212,
+ "learning_rate": 0.0006,
+ "loss": 4.314318656921387,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.4866996705532074,
+ "learning_rate": 0.0006,
+ "loss": 4.321515083312988,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.47854411602020264,
+ "learning_rate": 0.0006,
+ "loss": 4.336956977844238,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.48322951793670654,
+ "learning_rate": 0.0006,
+ "loss": 4.270317554473877,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.4432683289051056,
+ "learning_rate": 0.0006,
+ "loss": 4.3168792724609375,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.42538025975227356,
+ "learning_rate": 0.0006,
+ "loss": 4.236387729644775,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.4699258804321289,
+ "learning_rate": 0.0006,
+ "loss": 4.372434616088867,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.4574076235294342,
+ "learning_rate": 0.0006,
+ "loss": 4.347474098205566,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.42455345392227173,
+ "learning_rate": 0.0006,
+ "loss": 4.345785140991211,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.4194679260253906,
+ "learning_rate": 0.0006,
+ "loss": 4.326481819152832,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.4357808828353882,
+ "learning_rate": 0.0006,
+ "loss": 4.3457183837890625,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.4160650670528412,
+ "learning_rate": 0.0006,
+ "loss": 4.24708890914917,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.4105308949947357,
+ "learning_rate": 0.0006,
+ "loss": 4.3586530685424805,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.399740993976593,
+ "learning_rate": 0.0006,
+ "loss": 4.352291584014893,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.39557352662086487,
+ "learning_rate": 0.0006,
+ "loss": 4.284960746765137,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.4299493134021759,
+ "learning_rate": 0.0006,
+ "loss": 4.285758018493652,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.4042324721813202,
+ "learning_rate": 0.0006,
+ "loss": 4.357293605804443,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.396954745054245,
+ "learning_rate": 0.0006,
+ "loss": 4.2686262130737305,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.3821943998336792,
+ "learning_rate": 0.0006,
+ "loss": 4.357154846191406,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.3846510648727417,
+ "learning_rate": 0.0006,
+ "loss": 4.323714256286621,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.37851205468177795,
+ "learning_rate": 0.0006,
+ "loss": 4.341939926147461,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.37929001450538635,
+ "learning_rate": 0.0006,
+ "loss": 4.248264312744141,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.3882073163986206,
+ "learning_rate": 0.0006,
+ "loss": 4.307059288024902,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.38127774000167847,
+ "learning_rate": 0.0006,
+ "loss": 4.363462448120117,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.3818758726119995,
+ "learning_rate": 0.0006,
+ "loss": 4.322787284851074,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.389406681060791,
+ "learning_rate": 0.0006,
+ "loss": 4.457492828369141,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.38305217027664185,
+ "learning_rate": 0.0006,
+ "loss": 4.306647300720215,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.3900682032108307,
+ "learning_rate": 0.0006,
+ "loss": 4.331067085266113,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.38036227226257324,
+ "learning_rate": 0.0006,
+ "loss": 4.264892578125,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.39323344826698303,
+ "learning_rate": 0.0006,
+ "loss": 4.365866661071777,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.4049435257911682,
+ "learning_rate": 0.0006,
+ "loss": 4.381568908691406,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.4216940701007843,
+ "learning_rate": 0.0006,
+ "loss": 4.364271640777588,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.42422112822532654,
+ "learning_rate": 0.0006,
+ "loss": 4.400199890136719,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.3819519281387329,
+ "learning_rate": 0.0006,
+ "loss": 4.257974147796631,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.4014202654361725,
+ "learning_rate": 0.0006,
+ "loss": 4.329166889190674,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.39812493324279785,
+ "learning_rate": 0.0006,
+ "loss": 4.372607231140137,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.3916856050491333,
+ "learning_rate": 0.0006,
+ "loss": 4.385530471801758,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.4020134508609772,
+ "learning_rate": 0.0006,
+ "loss": 4.3358330726623535,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.3931422829627991,
+ "learning_rate": 0.0006,
+ "loss": 4.381669521331787,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.37799912691116333,
+ "learning_rate": 0.0006,
+ "loss": 4.392168998718262,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.39257925748825073,
+ "learning_rate": 0.0006,
+ "loss": 4.4379096031188965,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.39501482248306274,
+ "learning_rate": 0.0006,
+ "loss": 4.323174953460693,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.3914605677127838,
+ "learning_rate": 0.0006,
+ "loss": 4.365396022796631,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.3778083026409149,
+ "learning_rate": 0.0006,
+ "loss": 4.3220720291137695,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.3911595344543457,
+ "learning_rate": 0.0006,
+ "loss": 4.323670864105225,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.3692200779914856,
+ "learning_rate": 0.0006,
+ "loss": 4.341980934143066,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.3713432848453522,
+ "learning_rate": 0.0006,
+ "loss": 4.304820537567139,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.37348702549934387,
+ "learning_rate": 0.0006,
+ "loss": 4.326486587524414,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.3943784236907959,
+ "learning_rate": 0.0006,
+ "loss": 4.374529838562012,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.4153553247451782,
+ "learning_rate": 0.0006,
+ "loss": 4.392250061035156,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.3885365426540375,
+ "learning_rate": 0.0006,
+ "loss": 4.322462558746338,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.3777163326740265,
+ "learning_rate": 0.0006,
+ "loss": 4.399444103240967,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.45014286041259766,
+ "learning_rate": 0.0006,
+ "loss": 4.266523361206055,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 6.2529473304748535,
+ "eval_runtime": 43.7478,
+ "eval_samples_per_second": 55.82,
+ "eval_steps_per_second": 3.497,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.4145124852657318,
+ "learning_rate": 0.0006,
+ "loss": 4.266193389892578,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.44340333342552185,
+ "learning_rate": 0.0006,
+ "loss": 4.134491443634033,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.4580900967121124,
+ "learning_rate": 0.0006,
+ "loss": 4.287178993225098,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.47761040925979614,
+ "learning_rate": 0.0006,
+ "loss": 4.429558277130127,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.46682101488113403,
+ "learning_rate": 0.0006,
+ "loss": 4.317314147949219,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.4769667685031891,
+ "learning_rate": 0.0006,
+ "loss": 4.290413856506348,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.539111316204071,
+ "learning_rate": 0.0006,
+ "loss": 4.240926742553711,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.6831890344619751,
+ "learning_rate": 0.0006,
+ "loss": 4.204584121704102,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.749098539352417,
+ "learning_rate": 0.0006,
+ "loss": 4.25895881652832,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.7921332120895386,
+ "learning_rate": 0.0006,
+ "loss": 4.339118003845215,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.7587332725524902,
+ "learning_rate": 0.0006,
+ "loss": 4.2877516746521,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.6472265124320984,
+ "learning_rate": 0.0006,
+ "loss": 4.2839131355285645,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.5472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.346395492553711,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.6083328723907471,
+ "learning_rate": 0.0006,
+ "loss": 4.240531921386719,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.5928010940551758,
+ "learning_rate": 0.0006,
+ "loss": 4.347572326660156,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.532841145992279,
+ "learning_rate": 0.0006,
+ "loss": 4.281345844268799,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.4778757691383362,
+ "learning_rate": 0.0006,
+ "loss": 4.279055118560791,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.48648887872695923,
+ "learning_rate": 0.0006,
+ "loss": 4.198624610900879,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.43191879987716675,
+ "learning_rate": 0.0006,
+ "loss": 4.236109733581543,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.45012032985687256,
+ "learning_rate": 0.0006,
+ "loss": 4.323042869567871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.4548600912094116,
+ "learning_rate": 0.0006,
+ "loss": 4.2210235595703125,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.45999664068222046,
+ "learning_rate": 0.0006,
+ "loss": 4.2899250984191895,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.4702019691467285,
+ "learning_rate": 0.0006,
+ "loss": 4.3281145095825195,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.4921978712081909,
+ "learning_rate": 0.0006,
+ "loss": 4.310947418212891,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.4662175178527832,
+ "learning_rate": 0.0006,
+ "loss": 4.191643714904785,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.46207281947135925,
+ "learning_rate": 0.0006,
+ "loss": 4.423742771148682,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.46523746848106384,
+ "learning_rate": 0.0006,
+ "loss": 4.321560859680176,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.42817118763923645,
+ "learning_rate": 0.0006,
+ "loss": 4.275110244750977,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.4028136134147644,
+ "learning_rate": 0.0006,
+ "loss": 4.26282262802124,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.39602214097976685,
+ "learning_rate": 0.0006,
+ "loss": 4.350768089294434,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.4017263948917389,
+ "learning_rate": 0.0006,
+ "loss": 4.2504682540893555,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.4112628996372223,
+ "learning_rate": 0.0006,
+ "loss": 4.262454986572266,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.44213998317718506,
+ "learning_rate": 0.0006,
+ "loss": 4.33111572265625,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.4273027777671814,
+ "learning_rate": 0.0006,
+ "loss": 4.241754055023193,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.42171111702919006,
+ "learning_rate": 0.0006,
+ "loss": 4.3793134689331055,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.4059634506702423,
+ "learning_rate": 0.0006,
+ "loss": 4.267672538757324,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.40447160601615906,
+ "learning_rate": 0.0006,
+ "loss": 4.282671928405762,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.39427000284194946,
+ "learning_rate": 0.0006,
+ "loss": 4.286433219909668,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.3932870924472809,
+ "learning_rate": 0.0006,
+ "loss": 4.31290340423584,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.37661924958229065,
+ "learning_rate": 0.0006,
+ "loss": 4.262170791625977,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.40946775674819946,
+ "learning_rate": 0.0006,
+ "loss": 4.303168296813965,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.3941985070705414,
+ "learning_rate": 0.0006,
+ "loss": 4.310337066650391,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.40164992213249207,
+ "learning_rate": 0.0006,
+ "loss": 4.312982559204102,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.3975890874862671,
+ "learning_rate": 0.0006,
+ "loss": 4.3248701095581055,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.38574227690696716,
+ "learning_rate": 0.0006,
+ "loss": 4.38369083404541,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.3992249667644501,
+ "learning_rate": 0.0006,
+ "loss": 4.297112464904785,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.39868417382240295,
+ "learning_rate": 0.0006,
+ "loss": 4.295505046844482,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.4101839065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.3519697189331055,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.379717081785202,
+ "learning_rate": 0.0006,
+ "loss": 4.2289581298828125,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.3912242352962494,
+ "learning_rate": 0.0006,
+ "loss": 4.40312385559082,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.3885950446128845,
+ "learning_rate": 0.0006,
+ "loss": 4.286848068237305,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.3892953097820282,
+ "learning_rate": 0.0006,
+ "loss": 4.292012691497803,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.38809701800346375,
+ "learning_rate": 0.0006,
+ "loss": 4.374564170837402,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.3903641700744629,
+ "learning_rate": 0.0006,
+ "loss": 4.394603729248047,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.39104169607162476,
+ "learning_rate": 0.0006,
+ "loss": 4.35471773147583,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.3975231349468231,
+ "learning_rate": 0.0006,
+ "loss": 4.382683753967285,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.40965917706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.367456436157227,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.4243786633014679,
+ "learning_rate": 0.0006,
+ "loss": 4.367887020111084,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.40315696597099304,
+ "learning_rate": 0.0006,
+ "loss": 4.300185203552246,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.41343727707862854,
+ "learning_rate": 0.0006,
+ "loss": 4.331711292266846,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.40250977873802185,
+ "learning_rate": 0.0006,
+ "loss": 4.3398590087890625,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.38862133026123047,
+ "learning_rate": 0.0006,
+ "loss": 4.272953033447266,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.39667993783950806,
+ "learning_rate": 0.0006,
+ "loss": 4.47554874420166,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.41999825835227966,
+ "learning_rate": 0.0006,
+ "loss": 4.263052940368652,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.4195004105567932,
+ "learning_rate": 0.0006,
+ "loss": 4.330724716186523,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.3944961130619049,
+ "learning_rate": 0.0006,
+ "loss": 4.3109002113342285,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.3944008946418762,
+ "learning_rate": 0.0006,
+ "loss": 4.298914432525635,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.4016371965408325,
+ "learning_rate": 0.0006,
+ "loss": 4.346005439758301,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.38281115889549255,
+ "learning_rate": 0.0006,
+ "loss": 4.332263946533203,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.36780816316604614,
+ "learning_rate": 0.0006,
+ "loss": 4.356542587280273,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.37247809767723083,
+ "learning_rate": 0.0006,
+ "loss": 4.244487285614014,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.4414741098880768,
+ "learning_rate": 0.0006,
+ "loss": 4.326817035675049,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 6.229246616363525,
+ "eval_runtime": 43.7873,
+ "eval_samples_per_second": 55.77,
+ "eval_steps_per_second": 3.494,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.3957669138908386,
+ "learning_rate": 0.0006,
+ "loss": 4.263937950134277,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.4236466586589813,
+ "learning_rate": 0.0006,
+ "loss": 4.222219467163086,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.47564026713371277,
+ "learning_rate": 0.0006,
+ "loss": 4.266385555267334,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.5004186630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.262574195861816,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.592176616191864,
+ "learning_rate": 0.0006,
+ "loss": 4.225201606750488,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.7019115090370178,
+ "learning_rate": 0.0006,
+ "loss": 4.23977518081665,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.8254161477088928,
+ "learning_rate": 0.0006,
+ "loss": 4.227803707122803,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.8682525753974915,
+ "learning_rate": 0.0006,
+ "loss": 4.321664810180664,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.9065311551094055,
+ "learning_rate": 0.0006,
+ "loss": 4.253820419311523,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.8974156975746155,
+ "learning_rate": 0.0006,
+ "loss": 4.3650312423706055,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.7837588787078857,
+ "learning_rate": 0.0006,
+ "loss": 4.283933639526367,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.7024438381195068,
+ "learning_rate": 0.0006,
+ "loss": 4.258434772491455,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.625393271446228,
+ "learning_rate": 0.0006,
+ "loss": 4.23687744140625,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.5788878202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.234710693359375,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.5580928325653076,
+ "learning_rate": 0.0006,
+ "loss": 4.29906702041626,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.48748156428337097,
+ "learning_rate": 0.0006,
+ "loss": 4.226408958435059,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.4848710298538208,
+ "learning_rate": 0.0006,
+ "loss": 4.2123122215271,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.5063420534133911,
+ "learning_rate": 0.0006,
+ "loss": 4.255153656005859,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.5110829472541809,
+ "learning_rate": 0.0006,
+ "loss": 4.358216285705566,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.49089232087135315,
+ "learning_rate": 0.0006,
+ "loss": 4.300388813018799,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.4603854715824127,
+ "learning_rate": 0.0006,
+ "loss": 4.2832136154174805,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.4599403440952301,
+ "learning_rate": 0.0006,
+ "loss": 4.295095443725586,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.4395982623100281,
+ "learning_rate": 0.0006,
+ "loss": 4.26538610458374,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.41270455718040466,
+ "learning_rate": 0.0006,
+ "loss": 4.2344889640808105,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.42688557505607605,
+ "learning_rate": 0.0006,
+ "loss": 4.207379341125488,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.4363268315792084,
+ "learning_rate": 0.0006,
+ "loss": 4.30502462387085,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.42514753341674805,
+ "learning_rate": 0.0006,
+ "loss": 4.3195905685424805,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.3887978494167328,
+ "learning_rate": 0.0006,
+ "loss": 4.23016357421875,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.39444148540496826,
+ "learning_rate": 0.0006,
+ "loss": 4.265226364135742,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.41804856061935425,
+ "learning_rate": 0.0006,
+ "loss": 4.399003028869629,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.4026116132736206,
+ "learning_rate": 0.0006,
+ "loss": 4.356629371643066,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.4023478329181671,
+ "learning_rate": 0.0006,
+ "loss": 4.379050254821777,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.39880287647247314,
+ "learning_rate": 0.0006,
+ "loss": 4.277581214904785,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.38926973938941956,
+ "learning_rate": 0.0006,
+ "loss": 4.2318902015686035,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.3924587368965149,
+ "learning_rate": 0.0006,
+ "loss": 4.329956531524658,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.40522003173828125,
+ "learning_rate": 0.0006,
+ "loss": 4.315302848815918,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.3916785418987274,
+ "learning_rate": 0.0006,
+ "loss": 4.319087505340576,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.419207364320755,
+ "learning_rate": 0.0006,
+ "loss": 4.373052597045898,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.3973175287246704,
+ "learning_rate": 0.0006,
+ "loss": 4.323544025421143,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.37236395478248596,
+ "learning_rate": 0.0006,
+ "loss": 4.206120491027832,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.385455846786499,
+ "learning_rate": 0.0006,
+ "loss": 4.294527053833008,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.3870242238044739,
+ "learning_rate": 0.0006,
+ "loss": 4.221030235290527,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.3881280720233917,
+ "learning_rate": 0.0006,
+ "loss": 4.233551025390625,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.3722829818725586,
+ "learning_rate": 0.0006,
+ "loss": 4.257683277130127,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.375012069940567,
+ "learning_rate": 0.0006,
+ "loss": 4.350418567657471,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.38077789545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.192095756530762,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.3906152844429016,
+ "learning_rate": 0.0006,
+ "loss": 4.357870578765869,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.3887590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.318536281585693,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.3828654885292053,
+ "learning_rate": 0.0006,
+ "loss": 4.28328800201416,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.39694708585739136,
+ "learning_rate": 0.0006,
+ "loss": 4.391949653625488,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.3975147604942322,
+ "learning_rate": 0.0006,
+ "loss": 4.352961540222168,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.3841004967689514,
+ "learning_rate": 0.0006,
+ "loss": 4.228391647338867,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.3807359039783478,
+ "learning_rate": 0.0006,
+ "loss": 4.22756290435791,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.3987439274787903,
+ "learning_rate": 0.0006,
+ "loss": 4.407889366149902,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.4201034605503082,
+ "learning_rate": 0.0006,
+ "loss": 4.34971809387207,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.4346381723880768,
+ "learning_rate": 0.0006,
+ "loss": 4.293330192565918,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.44999462366104126,
+ "learning_rate": 0.0006,
+ "loss": 4.417044162750244,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.38561612367630005,
+ "learning_rate": 0.0006,
+ "loss": 4.258061408996582,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.3790895938873291,
+ "learning_rate": 0.0006,
+ "loss": 4.321300029754639,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.3984527289867401,
+ "learning_rate": 0.0006,
+ "loss": 4.247694969177246,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.42955538630485535,
+ "learning_rate": 0.0006,
+ "loss": 4.343568325042725,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.40776535868644714,
+ "learning_rate": 0.0006,
+ "loss": 4.34933614730835,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.39172181487083435,
+ "learning_rate": 0.0006,
+ "loss": 4.379310607910156,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.40323659777641296,
+ "learning_rate": 0.0006,
+ "loss": 4.268922805786133,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.4012514352798462,
+ "learning_rate": 0.0006,
+ "loss": 4.363704681396484,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.39983171224594116,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.39482736587524414,
+ "learning_rate": 0.0006,
+ "loss": 4.338078022003174,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.40444278717041016,
+ "learning_rate": 0.0006,
+ "loss": 4.373770713806152,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.3808857500553131,
+ "learning_rate": 0.0006,
+ "loss": 4.326850891113281,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.38284221291542053,
+ "learning_rate": 0.0006,
+ "loss": 4.389925956726074,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.3825092613697052,
+ "learning_rate": 0.0006,
+ "loss": 4.389588356018066,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.4557396471500397,
+ "learning_rate": 0.0006,
+ "loss": 4.302459239959717,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 6.270473480224609,
+ "eval_runtime": 43.6892,
+ "eval_samples_per_second": 55.895,
+ "eval_steps_per_second": 3.502,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.4212155044078827,
+ "learning_rate": 0.0006,
+ "loss": 4.3081440925598145,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.4590097963809967,
+ "learning_rate": 0.0006,
+ "loss": 4.150710582733154,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.4502851963043213,
+ "learning_rate": 0.0006,
+ "loss": 4.238507270812988,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.44205573201179504,
+ "learning_rate": 0.0006,
+ "loss": 4.202637672424316,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.5142990946769714,
+ "learning_rate": 0.0006,
+ "loss": 4.325977325439453,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.5224044919013977,
+ "learning_rate": 0.0006,
+ "loss": 4.265192031860352,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.5608325004577637,
+ "learning_rate": 0.0006,
+ "loss": 4.295414924621582,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.6955265402793884,
+ "learning_rate": 0.0006,
+ "loss": 4.218759536743164,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.868670642375946,
+ "learning_rate": 0.0006,
+ "loss": 4.220717430114746,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 1.0042238235473633,
+ "learning_rate": 0.0006,
+ "loss": 4.290093421936035,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.9413097500801086,
+ "learning_rate": 0.0006,
+ "loss": 4.324940204620361,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.697178304195404,
+ "learning_rate": 0.0006,
+ "loss": 4.301477909088135,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.7008699774742126,
+ "learning_rate": 0.0006,
+ "loss": 4.2905120849609375,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.6534171104431152,
+ "learning_rate": 0.0006,
+ "loss": 4.20712947845459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.6290929317474365,
+ "learning_rate": 0.0006,
+ "loss": 4.229743003845215,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.5494177341461182,
+ "learning_rate": 0.0006,
+ "loss": 4.185794353485107,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.5147525072097778,
+ "learning_rate": 0.0006,
+ "loss": 4.26673698425293,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.5048599243164062,
+ "learning_rate": 0.0006,
+ "loss": 4.210233211517334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.5414654016494751,
+ "learning_rate": 0.0006,
+ "loss": 4.333046913146973,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.47082704305648804,
+ "learning_rate": 0.0006,
+ "loss": 4.301358699798584,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.4675837755203247,
+ "learning_rate": 0.0006,
+ "loss": 4.204195022583008,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.4378611743450165,
+ "learning_rate": 0.0006,
+ "loss": 4.155127048492432,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.4415567219257355,
+ "learning_rate": 0.0006,
+ "loss": 4.2721967697143555,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.47591230273246765,
+ "learning_rate": 0.0006,
+ "loss": 4.358033180236816,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.4658828675746918,
+ "learning_rate": 0.0006,
+ "loss": 4.294735908508301,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.4501555860042572,
+ "learning_rate": 0.0006,
+ "loss": 4.263189315795898,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.46739140152931213,
+ "learning_rate": 0.0006,
+ "loss": 4.32848596572876,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.45165732502937317,
+ "learning_rate": 0.0006,
+ "loss": 4.267234802246094,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.409282922744751,
+ "learning_rate": 0.0006,
+ "loss": 4.285059928894043,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.42865875363349915,
+ "learning_rate": 0.0006,
+ "loss": 4.227115631103516,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.4552954137325287,
+ "learning_rate": 0.0006,
+ "loss": 4.325474739074707,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.42055317759513855,
+ "learning_rate": 0.0006,
+ "loss": 4.2007951736450195,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.4279162287712097,
+ "learning_rate": 0.0006,
+ "loss": 4.359176158905029,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.4455033540725708,
+ "learning_rate": 0.0006,
+ "loss": 4.275487899780273,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.43002691864967346,
+ "learning_rate": 0.0006,
+ "loss": 4.181482315063477,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.44032880663871765,
+ "learning_rate": 0.0006,
+ "loss": 4.36613655090332,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.4100615680217743,
+ "learning_rate": 0.0006,
+ "loss": 4.265050411224365,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.39392155408859253,
+ "learning_rate": 0.0006,
+ "loss": 4.325000762939453,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.4347812533378601,
+ "learning_rate": 0.0006,
+ "loss": 4.307058334350586,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.42177414894104004,
+ "learning_rate": 0.0006,
+ "loss": 4.270357131958008,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.431207537651062,
+ "learning_rate": 0.0006,
+ "loss": 4.414610862731934,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.4254903495311737,
+ "learning_rate": 0.0006,
+ "loss": 4.285326957702637,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.4089864194393158,
+ "learning_rate": 0.0006,
+ "loss": 4.275937080383301,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.4102814197540283,
+ "learning_rate": 0.0006,
+ "loss": 4.303900718688965,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.3859243094921112,
+ "learning_rate": 0.0006,
+ "loss": 4.215274333953857,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.4012472331523895,
+ "learning_rate": 0.0006,
+ "loss": 4.328278541564941,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.4047054648399353,
+ "learning_rate": 0.0006,
+ "loss": 4.276683807373047,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.4050472676753998,
+ "learning_rate": 0.0006,
+ "loss": 4.302199363708496,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.40645819902420044,
+ "learning_rate": 0.0006,
+ "loss": 4.401165008544922,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.3888589143753052,
+ "learning_rate": 0.0006,
+ "loss": 4.258542060852051,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.3865634500980377,
+ "learning_rate": 0.0006,
+ "loss": 4.224770545959473,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.40157631039619446,
+ "learning_rate": 0.0006,
+ "loss": 4.321439743041992,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.4097841680049896,
+ "learning_rate": 0.0006,
+ "loss": 4.436502456665039,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.4125346541404724,
+ "learning_rate": 0.0006,
+ "loss": 4.3067522048950195,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.39692872762680054,
+ "learning_rate": 0.0006,
+ "loss": 4.338959693908691,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.3942561149597168,
+ "learning_rate": 0.0006,
+ "loss": 4.29915714263916,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.3940109610557556,
+ "learning_rate": 0.0006,
+ "loss": 4.343454360961914,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.39725086092948914,
+ "learning_rate": 0.0006,
+ "loss": 4.294066429138184,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.3779081702232361,
+ "learning_rate": 0.0006,
+ "loss": 4.2644758224487305,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.37665313482284546,
+ "learning_rate": 0.0006,
+ "loss": 4.3241119384765625,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.394426167011261,
+ "learning_rate": 0.0006,
+ "loss": 4.391383647918701,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.3948868215084076,
+ "learning_rate": 0.0006,
+ "loss": 4.336596965789795,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.4218588173389435,
+ "learning_rate": 0.0006,
+ "loss": 4.268021583557129,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.3900219202041626,
+ "learning_rate": 0.0006,
+ "loss": 4.323431015014648,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.3683486580848694,
+ "learning_rate": 0.0006,
+ "loss": 4.283624649047852,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.3842235803604126,
+ "learning_rate": 0.0006,
+ "loss": 4.302942752838135,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.40175142884254456,
+ "learning_rate": 0.0006,
+ "loss": 4.394964218139648,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.4041447639465332,
+ "learning_rate": 0.0006,
+ "loss": 4.355955600738525,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.38710159063339233,
+ "learning_rate": 0.0006,
+ "loss": 4.340442180633545,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.38841989636421204,
+ "learning_rate": 0.0006,
+ "loss": 4.380399703979492,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.41300448775291443,
+ "learning_rate": 0.0006,
+ "loss": 4.321839332580566,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.49495911598205566,
+ "learning_rate": 0.0006,
+ "loss": 4.293513774871826,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 6.327922344207764,
+ "eval_runtime": 43.7769,
+ "eval_samples_per_second": 55.783,
+ "eval_steps_per_second": 3.495,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.4602355659008026,
+ "learning_rate": 0.0006,
+ "loss": 4.2585554122924805,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.4733062982559204,
+ "learning_rate": 0.0006,
+ "loss": 4.237922191619873,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.4390600025653839,
+ "learning_rate": 0.0006,
+ "loss": 4.159769058227539,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.44887402653694153,
+ "learning_rate": 0.0006,
+ "loss": 4.2117743492126465,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.4746656119823456,
+ "learning_rate": 0.0006,
+ "loss": 4.22344446182251,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.4502047598361969,
+ "learning_rate": 0.0006,
+ "loss": 4.179043769836426,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.4669528603553772,
+ "learning_rate": 0.0006,
+ "loss": 4.242807388305664,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.48304441571235657,
+ "learning_rate": 0.0006,
+ "loss": 4.243523597717285,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.4745117425918579,
+ "learning_rate": 0.0006,
+ "loss": 4.271031856536865,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.42403295636177063,
+ "learning_rate": 0.0006,
+ "loss": 4.231593132019043,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.4177025556564331,
+ "learning_rate": 0.0006,
+ "loss": 4.1239848136901855,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.44315826892852783,
+ "learning_rate": 0.0006,
+ "loss": 4.293359279632568,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.4518056809902191,
+ "learning_rate": 0.0006,
+ "loss": 4.238755226135254,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.4481995701789856,
+ "learning_rate": 0.0006,
+ "loss": 4.10948371887207,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.4367348253726959,
+ "learning_rate": 0.0006,
+ "loss": 4.289554595947266,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.41825398802757263,
+ "learning_rate": 0.0006,
+ "loss": 4.201297760009766,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.4390457570552826,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.4219510853290558,
+ "learning_rate": 0.0006,
+ "loss": 4.234352111816406,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.4195581078529358,
+ "learning_rate": 0.0006,
+ "loss": 4.213441371917725,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.4425918459892273,
+ "learning_rate": 0.0006,
+ "loss": 4.268826007843018,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.4734676778316498,
+ "learning_rate": 0.0006,
+ "loss": 4.266847610473633,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.48404407501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.241931915283203,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.4946669936180115,
+ "learning_rate": 0.0006,
+ "loss": 4.250909805297852,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.47972625494003296,
+ "learning_rate": 0.0006,
+ "loss": 4.195961952209473,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.4569213390350342,
+ "learning_rate": 0.0006,
+ "loss": 4.296036720275879,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.4644681215286255,
+ "learning_rate": 0.0006,
+ "loss": 4.216559410095215,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.48317641019821167,
+ "learning_rate": 0.0006,
+ "loss": 4.3226318359375,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.5122473835945129,
+ "learning_rate": 0.0006,
+ "loss": 4.366876602172852,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.5485180020332336,
+ "learning_rate": 0.0006,
+ "loss": 4.2639265060424805,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.5493056774139404,
+ "learning_rate": 0.0006,
+ "loss": 4.315012454986572,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.5442193150520325,
+ "learning_rate": 0.0006,
+ "loss": 4.293516159057617,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.5160698294639587,
+ "learning_rate": 0.0006,
+ "loss": 4.203614234924316,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.4583905041217804,
+ "learning_rate": 0.0006,
+ "loss": 4.204253673553467,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.47937676310539246,
+ "learning_rate": 0.0006,
+ "loss": 4.225821495056152,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.4585326611995697,
+ "learning_rate": 0.0006,
+ "loss": 4.27936315536499,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.4224967658519745,
+ "learning_rate": 0.0006,
+ "loss": 4.396998405456543,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.43489396572113037,
+ "learning_rate": 0.0006,
+ "loss": 4.321684837341309,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.43469369411468506,
+ "learning_rate": 0.0006,
+ "loss": 4.333868980407715,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.4171457588672638,
+ "learning_rate": 0.0006,
+ "loss": 4.212692737579346,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.40925848484039307,
+ "learning_rate": 0.0006,
+ "loss": 4.354894638061523,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.42900922894477844,
+ "learning_rate": 0.0006,
+ "loss": 4.309920310974121,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.42338159680366516,
+ "learning_rate": 0.0006,
+ "loss": 4.2942705154418945,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.4057067930698395,
+ "learning_rate": 0.0006,
+ "loss": 4.214710235595703,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.4072226583957672,
+ "learning_rate": 0.0006,
+ "loss": 4.312472343444824,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.3916485905647278,
+ "learning_rate": 0.0006,
+ "loss": 4.237615585327148,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.42151209712028503,
+ "learning_rate": 0.0006,
+ "loss": 4.377703666687012,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.44910693168640137,
+ "learning_rate": 0.0006,
+ "loss": 4.425722122192383,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.46527767181396484,
+ "learning_rate": 0.0006,
+ "loss": 4.26363468170166,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.45423775911331177,
+ "learning_rate": 0.0006,
+ "loss": 4.219768047332764,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.4229055345058441,
+ "learning_rate": 0.0006,
+ "loss": 4.2751007080078125,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.4136784076690674,
+ "learning_rate": 0.0006,
+ "loss": 4.256582736968994,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.42408230900764465,
+ "learning_rate": 0.0006,
+ "loss": 4.341879844665527,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.4360068142414093,
+ "learning_rate": 0.0006,
+ "loss": 4.2564802169799805,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.4251601994037628,
+ "learning_rate": 0.0006,
+ "loss": 4.370902061462402,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.4240182936191559,
+ "learning_rate": 0.0006,
+ "loss": 4.357310771942139,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.40821802616119385,
+ "learning_rate": 0.0006,
+ "loss": 4.299274444580078,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.42971381545066833,
+ "learning_rate": 0.0006,
+ "loss": 4.339339256286621,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.4170750677585602,
+ "learning_rate": 0.0006,
+ "loss": 4.295743942260742,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.4416576027870178,
+ "learning_rate": 0.0006,
+ "loss": 4.31326961517334,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.43994101881980896,
+ "learning_rate": 0.0006,
+ "loss": 4.286459922790527,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.43738171458244324,
+ "learning_rate": 0.0006,
+ "loss": 4.3276166915893555,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.42107513546943665,
+ "learning_rate": 0.0006,
+ "loss": 4.276320457458496,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.4138924479484558,
+ "learning_rate": 0.0006,
+ "loss": 4.263800621032715,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.4136491119861603,
+ "learning_rate": 0.0006,
+ "loss": 4.3641462326049805,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.4299047291278839,
+ "learning_rate": 0.0006,
+ "loss": 4.395074844360352,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.4680858552455902,
+ "learning_rate": 0.0006,
+ "loss": 4.29918098449707,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.5115722417831421,
+ "learning_rate": 0.0006,
+ "loss": 4.317390441894531,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.49535948038101196,
+ "learning_rate": 0.0006,
+ "loss": 4.311214447021484,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.44336947798728943,
+ "learning_rate": 0.0006,
+ "loss": 4.410158157348633,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.41606271266937256,
+ "learning_rate": 0.0006,
+ "loss": 4.303007125854492,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.3919375538825989,
+ "learning_rate": 0.0006,
+ "loss": 4.271506309509277,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.4847380518913269,
+ "learning_rate": 0.0006,
+ "loss": 4.368446350097656,
+ "step": 5760
+ },
+ {
+ "epoch": 80.0,
+ "eval_loss": 6.289350509643555,
+ "eval_runtime": 43.7865,
+ "eval_samples_per_second": 55.771,
+ "eval_steps_per_second": 3.494,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.4189201593399048,
+ "learning_rate": 0.0006,
+ "loss": 4.182366847991943,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.4759898781776428,
+ "learning_rate": 0.0006,
+ "loss": 4.19309139251709,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.527441680431366,
+ "learning_rate": 0.0006,
+ "loss": 4.219327926635742,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.519743025302887,
+ "learning_rate": 0.0006,
+ "loss": 4.141674995422363,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.4941118657588959,
+ "learning_rate": 0.0006,
+ "loss": 4.151315212249756,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.5262619256973267,
+ "learning_rate": 0.0006,
+ "loss": 4.181960105895996,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.6155849099159241,
+ "learning_rate": 0.0006,
+ "loss": 4.21251106262207,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.7172285914421082,
+ "learning_rate": 0.0006,
+ "loss": 4.233085632324219,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.7969664931297302,
+ "learning_rate": 0.0006,
+ "loss": 4.231586933135986,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.7671365141868591,
+ "learning_rate": 0.0006,
+ "loss": 4.288948059082031,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.6886342167854309,
+ "learning_rate": 0.0006,
+ "loss": 4.186882495880127,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.613745927810669,
+ "learning_rate": 0.0006,
+ "loss": 4.22116756439209,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.6049351096153259,
+ "learning_rate": 0.0006,
+ "loss": 4.247993469238281,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.5160547494888306,
+ "learning_rate": 0.0006,
+ "loss": 4.230243682861328,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.5072378516197205,
+ "learning_rate": 0.0006,
+ "loss": 4.1789140701293945,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.5201945304870605,
+ "learning_rate": 0.0006,
+ "loss": 4.2888031005859375,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.5084741711616516,
+ "learning_rate": 0.0006,
+ "loss": 4.204905986785889,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.45192697644233704,
+ "learning_rate": 0.0006,
+ "loss": 4.273176193237305,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.4638829827308655,
+ "learning_rate": 0.0006,
+ "loss": 4.276776313781738,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.5091138482093811,
+ "learning_rate": 0.0006,
+ "loss": 4.20111083984375,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.5181353092193604,
+ "learning_rate": 0.0006,
+ "loss": 4.270737648010254,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.4666393995285034,
+ "learning_rate": 0.0006,
+ "loss": 4.220527648925781,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.4459801912307739,
+ "learning_rate": 0.0006,
+ "loss": 4.246898651123047,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.44209161400794983,
+ "learning_rate": 0.0006,
+ "loss": 4.2897796630859375,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.44252556562423706,
+ "learning_rate": 0.0006,
+ "loss": 4.31494665145874,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.43231600522994995,
+ "learning_rate": 0.0006,
+ "loss": 4.341650009155273,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.4496018886566162,
+ "learning_rate": 0.0006,
+ "loss": 4.222264766693115,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.41425642371177673,
+ "learning_rate": 0.0006,
+ "loss": 4.258854866027832,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.4198642671108246,
+ "learning_rate": 0.0006,
+ "loss": 4.286402225494385,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.4175935387611389,
+ "learning_rate": 0.0006,
+ "loss": 4.329756736755371,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.42901840806007385,
+ "learning_rate": 0.0006,
+ "loss": 4.2249555587768555,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.41729676723480225,
+ "learning_rate": 0.0006,
+ "loss": 4.25307559967041,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.44785404205322266,
+ "learning_rate": 0.0006,
+ "loss": 4.279146194458008,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.45788508653640747,
+ "learning_rate": 0.0006,
+ "loss": 4.185768127441406,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.4351639747619629,
+ "learning_rate": 0.0006,
+ "loss": 4.20334529876709,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.41771501302719116,
+ "learning_rate": 0.0006,
+ "loss": 4.2551493644714355,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.41627222299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.277044296264648,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.44212380051612854,
+ "learning_rate": 0.0006,
+ "loss": 4.225511074066162,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.38782668113708496,
+ "learning_rate": 0.0006,
+ "loss": 4.245084762573242,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.3984670341014862,
+ "learning_rate": 0.0006,
+ "loss": 4.318271160125732,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.3934188783168793,
+ "learning_rate": 0.0006,
+ "loss": 4.2478485107421875,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.38275960087776184,
+ "learning_rate": 0.0006,
+ "loss": 4.166913032531738,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.4073631465435028,
+ "learning_rate": 0.0006,
+ "loss": 4.325770378112793,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.40767619013786316,
+ "learning_rate": 0.0006,
+ "loss": 4.337563514709473,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.4344850778579712,
+ "learning_rate": 0.0006,
+ "loss": 4.339216709136963,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.4321129024028778,
+ "learning_rate": 0.0006,
+ "loss": 4.251045227050781,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.42891228199005127,
+ "learning_rate": 0.0006,
+ "loss": 4.339747428894043,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.430338054895401,
+ "learning_rate": 0.0006,
+ "loss": 4.290801525115967,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.44881945848464966,
+ "learning_rate": 0.0006,
+ "loss": 4.290616989135742,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.41193726658821106,
+ "learning_rate": 0.0006,
+ "loss": 4.178008079528809,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.3986659348011017,
+ "learning_rate": 0.0006,
+ "loss": 4.24334716796875,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.4000692665576935,
+ "learning_rate": 0.0006,
+ "loss": 4.273529052734375,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.4126340448856354,
+ "learning_rate": 0.0006,
+ "loss": 4.316381454467773,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.3987399935722351,
+ "learning_rate": 0.0006,
+ "loss": 4.253186225891113,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.3934975564479828,
+ "learning_rate": 0.0006,
+ "loss": 4.316921234130859,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.39915889501571655,
+ "learning_rate": 0.0006,
+ "loss": 4.304752349853516,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.4130222499370575,
+ "learning_rate": 0.0006,
+ "loss": 4.325786590576172,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.42784422636032104,
+ "learning_rate": 0.0006,
+ "loss": 4.316120624542236,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.4270218312740326,
+ "learning_rate": 0.0006,
+ "loss": 4.3773698806762695,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.4531627297401428,
+ "learning_rate": 0.0006,
+ "loss": 4.291565418243408,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.43761077523231506,
+ "learning_rate": 0.0006,
+ "loss": 4.318550109863281,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.43666771054267883,
+ "learning_rate": 0.0006,
+ "loss": 4.310146331787109,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.41557514667510986,
+ "learning_rate": 0.0006,
+ "loss": 4.278397083282471,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.3992885649204254,
+ "learning_rate": 0.0006,
+ "loss": 4.330907821655273,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.41442859172821045,
+ "learning_rate": 0.0006,
+ "loss": 4.380483627319336,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.42367640137672424,
+ "learning_rate": 0.0006,
+ "loss": 4.370355129241943,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.4104510247707367,
+ "learning_rate": 0.0006,
+ "loss": 4.243627548217773,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.4377829134464264,
+ "learning_rate": 0.0006,
+ "loss": 4.434067726135254,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.44119682908058167,
+ "learning_rate": 0.0006,
+ "loss": 4.379904747009277,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.4018053114414215,
+ "learning_rate": 0.0006,
+ "loss": 4.286595344543457,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.4040871560573578,
+ "learning_rate": 0.0006,
+ "loss": 4.337483882904053,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.4790824055671692,
+ "learning_rate": 0.0006,
+ "loss": 4.364114761352539,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 6.3435444831848145,
+ "eval_runtime": 43.8507,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.447443425655365,
+ "learning_rate": 0.0006,
+ "loss": 4.273200988769531,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.4924955368041992,
+ "learning_rate": 0.0006,
+ "loss": 4.222320079803467,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.6066558957099915,
+ "learning_rate": 0.0006,
+ "loss": 4.145882606506348,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.7758402824401855,
+ "learning_rate": 0.0006,
+ "loss": 4.182838439941406,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 1.005454659461975,
+ "learning_rate": 0.0006,
+ "loss": 4.156442642211914,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 1.1113026142120361,
+ "learning_rate": 0.0006,
+ "loss": 4.239047050476074,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.7954476475715637,
+ "learning_rate": 0.0006,
+ "loss": 4.231141090393066,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.7038424611091614,
+ "learning_rate": 0.0006,
+ "loss": 4.308542728424072,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.6864593029022217,
+ "learning_rate": 0.0006,
+ "loss": 4.214676380157471,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.6193567514419556,
+ "learning_rate": 0.0006,
+ "loss": 4.243054389953613,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.6326499581336975,
+ "learning_rate": 0.0006,
+ "loss": 4.307093143463135,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.633601725101471,
+ "learning_rate": 0.0006,
+ "loss": 4.28586483001709,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.5711596012115479,
+ "learning_rate": 0.0006,
+ "loss": 4.190366744995117,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.582478404045105,
+ "learning_rate": 0.0006,
+ "loss": 4.243340492248535,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.5870423316955566,
+ "learning_rate": 0.0006,
+ "loss": 4.330052852630615,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.5572404265403748,
+ "learning_rate": 0.0006,
+ "loss": 4.221210956573486,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.48703816533088684,
+ "learning_rate": 0.0006,
+ "loss": 4.246015548706055,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.4946155548095703,
+ "learning_rate": 0.0006,
+ "loss": 4.203368186950684,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.48104000091552734,
+ "learning_rate": 0.0006,
+ "loss": 4.195788383483887,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.4884639382362366,
+ "learning_rate": 0.0006,
+ "loss": 4.246498107910156,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.46171557903289795,
+ "learning_rate": 0.0006,
+ "loss": 4.271712779998779,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.4299808740615845,
+ "learning_rate": 0.0006,
+ "loss": 4.2654619216918945,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.4515123963356018,
+ "learning_rate": 0.0006,
+ "loss": 4.270195960998535,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.4448329210281372,
+ "learning_rate": 0.0006,
+ "loss": 4.295469284057617,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.43523281812667847,
+ "learning_rate": 0.0006,
+ "loss": 4.234511375427246,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.4352431893348694,
+ "learning_rate": 0.0006,
+ "loss": 4.27800178527832,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.43417713046073914,
+ "learning_rate": 0.0006,
+ "loss": 4.291177749633789,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.4469117224216461,
+ "learning_rate": 0.0006,
+ "loss": 4.273797512054443,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.40459394454956055,
+ "learning_rate": 0.0006,
+ "loss": 4.160533428192139,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.37974515557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.165892124176025,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.4303241968154907,
+ "learning_rate": 0.0006,
+ "loss": 4.261228561401367,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.4212931990623474,
+ "learning_rate": 0.0006,
+ "loss": 4.186488628387451,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.39888855814933777,
+ "learning_rate": 0.0006,
+ "loss": 4.256392955780029,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.4147864282131195,
+ "learning_rate": 0.0006,
+ "loss": 4.285519599914551,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.4054912328720093,
+ "learning_rate": 0.0006,
+ "loss": 4.235527038574219,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.3942243158817291,
+ "learning_rate": 0.0006,
+ "loss": 4.235358715057373,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.3859952390193939,
+ "learning_rate": 0.0006,
+ "loss": 4.178792476654053,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.3996407389640808,
+ "learning_rate": 0.0006,
+ "loss": 4.332685470581055,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.3997543156147003,
+ "learning_rate": 0.0006,
+ "loss": 4.172628879547119,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.40761199593544006,
+ "learning_rate": 0.0006,
+ "loss": 4.25240421295166,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.4187498986721039,
+ "learning_rate": 0.0006,
+ "loss": 4.23222541809082,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.39432984590530396,
+ "learning_rate": 0.0006,
+ "loss": 4.1483025550842285,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.4413979947566986,
+ "learning_rate": 0.0006,
+ "loss": 4.262289524078369,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.4385976791381836,
+ "learning_rate": 0.0006,
+ "loss": 4.160347938537598,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.4254113733768463,
+ "learning_rate": 0.0006,
+ "loss": 4.235913276672363,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.40139102935791016,
+ "learning_rate": 0.0006,
+ "loss": 4.338469505310059,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.41311147809028625,
+ "learning_rate": 0.0006,
+ "loss": 4.259404182434082,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.41248565912246704,
+ "learning_rate": 0.0006,
+ "loss": 4.311250686645508,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.43279120326042175,
+ "learning_rate": 0.0006,
+ "loss": 4.352819919586182,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.4341239035129547,
+ "learning_rate": 0.0006,
+ "loss": 4.201631546020508,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.42909830808639526,
+ "learning_rate": 0.0006,
+ "loss": 4.250114440917969,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.4029415249824524,
+ "learning_rate": 0.0006,
+ "loss": 4.280141830444336,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.4094693660736084,
+ "learning_rate": 0.0006,
+ "loss": 4.245151519775391,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.4380780756473541,
+ "learning_rate": 0.0006,
+ "loss": 4.369032859802246,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.46046847105026245,
+ "learning_rate": 0.0006,
+ "loss": 4.357504844665527,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.47439682483673096,
+ "learning_rate": 0.0006,
+ "loss": 4.28305721282959,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.44236937165260315,
+ "learning_rate": 0.0006,
+ "loss": 4.242401599884033,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.4143677353858948,
+ "learning_rate": 0.0006,
+ "loss": 4.362359046936035,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.4057272970676422,
+ "learning_rate": 0.0006,
+ "loss": 4.30042028427124,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.4250582456588745,
+ "learning_rate": 0.0006,
+ "loss": 4.2771711349487305,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.426998108625412,
+ "learning_rate": 0.0006,
+ "loss": 4.280099391937256,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.4197818636894226,
+ "learning_rate": 0.0006,
+ "loss": 4.342541694641113,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.412741094827652,
+ "learning_rate": 0.0006,
+ "loss": 4.25786828994751,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.4071856737136841,
+ "learning_rate": 0.0006,
+ "loss": 4.214151382446289,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.41681522130966187,
+ "learning_rate": 0.0006,
+ "loss": 4.318428039550781,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.4144262373447418,
+ "learning_rate": 0.0006,
+ "loss": 4.37365198135376,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.3930285573005676,
+ "learning_rate": 0.0006,
+ "loss": 4.281595230102539,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.40847325325012207,
+ "learning_rate": 0.0006,
+ "loss": 4.326107978820801,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.4196723997592926,
+ "learning_rate": 0.0006,
+ "loss": 4.267861366271973,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.4259124994277954,
+ "learning_rate": 0.0006,
+ "loss": 4.370932579040527,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.3915783166885376,
+ "learning_rate": 0.0006,
+ "loss": 4.19312047958374,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.45746830105781555,
+ "learning_rate": 0.0006,
+ "loss": 4.177214622497559,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 6.357029914855957,
+ "eval_runtime": 43.7795,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.41968968510627747,
+ "learning_rate": 0.0006,
+ "loss": 4.200979709625244,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.4584674537181854,
+ "learning_rate": 0.0006,
+ "loss": 4.1334381103515625,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.4660768508911133,
+ "learning_rate": 0.0006,
+ "loss": 4.200084686279297,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.4789487421512604,
+ "learning_rate": 0.0006,
+ "loss": 4.172554016113281,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.49461299180984497,
+ "learning_rate": 0.0006,
+ "loss": 4.285592079162598,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.5337462425231934,
+ "learning_rate": 0.0006,
+ "loss": 4.229425430297852,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.5576419234275818,
+ "learning_rate": 0.0006,
+ "loss": 4.233409881591797,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.5294531583786011,
+ "learning_rate": 0.0006,
+ "loss": 4.19575309753418,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.5647598505020142,
+ "learning_rate": 0.0006,
+ "loss": 4.213438510894775,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.6300318241119385,
+ "learning_rate": 0.0006,
+ "loss": 4.2297210693359375,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.7726603746414185,
+ "learning_rate": 0.0006,
+ "loss": 4.2555036544799805,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 1.0104360580444336,
+ "learning_rate": 0.0006,
+ "loss": 4.271825790405273,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 1.1859381198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.233576774597168,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.7926550507545471,
+ "learning_rate": 0.0006,
+ "loss": 4.237586498260498,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.6820129156112671,
+ "learning_rate": 0.0006,
+ "loss": 4.299962043762207,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.7082132697105408,
+ "learning_rate": 0.0006,
+ "loss": 4.243724822998047,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.7050187587738037,
+ "learning_rate": 0.0006,
+ "loss": 4.152876853942871,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.6219658255577087,
+ "learning_rate": 0.0006,
+ "loss": 4.254920959472656,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.5747959017753601,
+ "learning_rate": 0.0006,
+ "loss": 4.228151798248291,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.5477624535560608,
+ "learning_rate": 0.0006,
+ "loss": 4.211681842803955,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.5370446443557739,
+ "learning_rate": 0.0006,
+ "loss": 4.241825580596924,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.4855964779853821,
+ "learning_rate": 0.0006,
+ "loss": 4.195348739624023,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.4688033163547516,
+ "learning_rate": 0.0006,
+ "loss": 4.21632194519043,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.4556921124458313,
+ "learning_rate": 0.0006,
+ "loss": 4.177244186401367,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.4724311828613281,
+ "learning_rate": 0.0006,
+ "loss": 4.188458442687988,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.48350122570991516,
+ "learning_rate": 0.0006,
+ "loss": 4.269173622131348,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.47434476017951965,
+ "learning_rate": 0.0006,
+ "loss": 4.210025787353516,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.44016721844673157,
+ "learning_rate": 0.0006,
+ "loss": 4.200996398925781,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.43595024943351746,
+ "learning_rate": 0.0006,
+ "loss": 4.280470848083496,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.43968138098716736,
+ "learning_rate": 0.0006,
+ "loss": 4.12271785736084,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.4622724950313568,
+ "learning_rate": 0.0006,
+ "loss": 4.2784013748168945,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.42840784788131714,
+ "learning_rate": 0.0006,
+ "loss": 4.205509185791016,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.42756643891334534,
+ "learning_rate": 0.0006,
+ "loss": 4.240240573883057,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.4455983340740204,
+ "learning_rate": 0.0006,
+ "loss": 4.170627593994141,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.47522759437561035,
+ "learning_rate": 0.0006,
+ "loss": 4.216513633728027,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.46860823035240173,
+ "learning_rate": 0.0006,
+ "loss": 4.224852561950684,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.45451217889785767,
+ "learning_rate": 0.0006,
+ "loss": 4.320342063903809,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.4033358097076416,
+ "learning_rate": 0.0006,
+ "loss": 4.174200057983398,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.4156914949417114,
+ "learning_rate": 0.0006,
+ "loss": 4.112459659576416,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.4248296618461609,
+ "learning_rate": 0.0006,
+ "loss": 4.203481674194336,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.44323766231536865,
+ "learning_rate": 0.0006,
+ "loss": 4.23320198059082,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.4104357659816742,
+ "learning_rate": 0.0006,
+ "loss": 4.248687744140625,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.4133552610874176,
+ "learning_rate": 0.0006,
+ "loss": 4.261547088623047,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.46102720499038696,
+ "learning_rate": 0.0006,
+ "loss": 4.248725414276123,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.46091315150260925,
+ "learning_rate": 0.0006,
+ "loss": 4.278741836547852,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.4718199670314789,
+ "learning_rate": 0.0006,
+ "loss": 4.287023544311523,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.4677143394947052,
+ "learning_rate": 0.0006,
+ "loss": 4.2407073974609375,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.4627108871936798,
+ "learning_rate": 0.0006,
+ "loss": 4.288060188293457,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.48298877477645874,
+ "learning_rate": 0.0006,
+ "loss": 4.3333258628845215,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.4674181342124939,
+ "learning_rate": 0.0006,
+ "loss": 4.29932165145874,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.4250151216983795,
+ "learning_rate": 0.0006,
+ "loss": 4.271842002868652,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.4271775484085083,
+ "learning_rate": 0.0006,
+ "loss": 4.230886459350586,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.4614356756210327,
+ "learning_rate": 0.0006,
+ "loss": 4.291038513183594,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.4506745934486389,
+ "learning_rate": 0.0006,
+ "loss": 4.2282562255859375,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.43020278215408325,
+ "learning_rate": 0.0006,
+ "loss": 4.255861282348633,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.4066062271595001,
+ "learning_rate": 0.0006,
+ "loss": 4.360322952270508,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.4263683557510376,
+ "learning_rate": 0.0006,
+ "loss": 4.27037239074707,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.39514079689979553,
+ "learning_rate": 0.0006,
+ "loss": 4.258206367492676,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.41911759972572327,
+ "learning_rate": 0.0006,
+ "loss": 4.279756546020508,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.41042575240135193,
+ "learning_rate": 0.0006,
+ "loss": 4.343293190002441,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.40530115365982056,
+ "learning_rate": 0.0006,
+ "loss": 4.30220890045166,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.41333019733428955,
+ "learning_rate": 0.0006,
+ "loss": 4.293051719665527,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.4278717041015625,
+ "learning_rate": 0.0006,
+ "loss": 4.200895309448242,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.38954365253448486,
+ "learning_rate": 0.0006,
+ "loss": 4.349408149719238,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.39665845036506653,
+ "learning_rate": 0.0006,
+ "loss": 4.278497219085693,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.4175996780395508,
+ "learning_rate": 0.0006,
+ "loss": 4.348122596740723,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.3897883892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.327902317047119,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.39896222949028015,
+ "learning_rate": 0.0006,
+ "loss": 4.2651143074035645,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.39377546310424805,
+ "learning_rate": 0.0006,
+ "loss": 4.351605415344238,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.39766061305999756,
+ "learning_rate": 0.0006,
+ "loss": 4.243964195251465,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.3842772841453552,
+ "learning_rate": 0.0006,
+ "loss": 4.267043590545654,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.49257901310920715,
+ "learning_rate": 0.0006,
+ "loss": 4.390436172485352,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 6.3845720291137695,
+ "eval_runtime": 43.659,
+ "eval_samples_per_second": 55.933,
+ "eval_steps_per_second": 3.504,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.4391154944896698,
+ "learning_rate": 0.0006,
+ "loss": 4.111626148223877,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.5148889422416687,
+ "learning_rate": 0.0006,
+ "loss": 4.127384662628174,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.5173138976097107,
+ "learning_rate": 0.0006,
+ "loss": 4.204227447509766,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.4456957280635834,
+ "learning_rate": 0.0006,
+ "loss": 4.200007438659668,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.44515037536621094,
+ "learning_rate": 0.0006,
+ "loss": 4.125116348266602,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.44603443145751953,
+ "learning_rate": 0.0006,
+ "loss": 4.114563465118408,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.43450453877449036,
+ "learning_rate": 0.0006,
+ "loss": 4.147992134094238,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.432449609041214,
+ "learning_rate": 0.0006,
+ "loss": 4.1462626457214355,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.45551928877830505,
+ "learning_rate": 0.0006,
+ "loss": 4.160435676574707,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.472989946603775,
+ "learning_rate": 0.0006,
+ "loss": 4.168758392333984,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.4804964065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.29326057434082,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.5023837685585022,
+ "learning_rate": 0.0006,
+ "loss": 4.129997730255127,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.554080605506897,
+ "learning_rate": 0.0006,
+ "loss": 4.210216999053955,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.6329277753829956,
+ "learning_rate": 0.0006,
+ "loss": 4.239630699157715,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.6927154064178467,
+ "learning_rate": 0.0006,
+ "loss": 4.205781936645508,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.6770079731941223,
+ "learning_rate": 0.0006,
+ "loss": 4.175786018371582,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.5854576230049133,
+ "learning_rate": 0.0006,
+ "loss": 4.234147071838379,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.529286801815033,
+ "learning_rate": 0.0006,
+ "loss": 4.11967134475708,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.5517066717147827,
+ "learning_rate": 0.0006,
+ "loss": 4.235705375671387,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.5938349366188049,
+ "learning_rate": 0.0006,
+ "loss": 4.2656755447387695,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.6056738495826721,
+ "learning_rate": 0.0006,
+ "loss": 4.246652126312256,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.5960127711296082,
+ "learning_rate": 0.0006,
+ "loss": 4.150732517242432,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.5769783854484558,
+ "learning_rate": 0.0006,
+ "loss": 4.2447919845581055,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.5047983527183533,
+ "learning_rate": 0.0006,
+ "loss": 4.215879440307617,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.5035821199417114,
+ "learning_rate": 0.0006,
+ "loss": 4.265319347381592,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.4539526402950287,
+ "learning_rate": 0.0006,
+ "loss": 4.2058539390563965,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.4950912594795227,
+ "learning_rate": 0.0006,
+ "loss": 4.384343147277832,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.4687364101409912,
+ "learning_rate": 0.0006,
+ "loss": 4.220507621765137,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.46328020095825195,
+ "learning_rate": 0.0006,
+ "loss": 4.193594455718994,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.48333385586738586,
+ "learning_rate": 0.0006,
+ "loss": 4.288180351257324,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.4870767593383789,
+ "learning_rate": 0.0006,
+ "loss": 4.270781517028809,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.48339006304740906,
+ "learning_rate": 0.0006,
+ "loss": 4.165823936462402,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.46628767251968384,
+ "learning_rate": 0.0006,
+ "loss": 4.272879600524902,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.43664637207984924,
+ "learning_rate": 0.0006,
+ "loss": 4.170869827270508,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.4373452365398407,
+ "learning_rate": 0.0006,
+ "loss": 4.2506489753723145,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.47709426283836365,
+ "learning_rate": 0.0006,
+ "loss": 4.297833442687988,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.49829018115997314,
+ "learning_rate": 0.0006,
+ "loss": 4.171062469482422,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.487209290266037,
+ "learning_rate": 0.0006,
+ "loss": 4.236351013183594,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.4661620557308197,
+ "learning_rate": 0.0006,
+ "loss": 4.193465232849121,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.4790615439414978,
+ "learning_rate": 0.0006,
+ "loss": 4.238525390625,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.4469921290874481,
+ "learning_rate": 0.0006,
+ "loss": 4.239880084991455,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.4821740984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.237403392791748,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.48282673954963684,
+ "learning_rate": 0.0006,
+ "loss": 4.1664228439331055,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.41682642698287964,
+ "learning_rate": 0.0006,
+ "loss": 4.216082572937012,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.41478675603866577,
+ "learning_rate": 0.0006,
+ "loss": 4.309684753417969,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.4269796311855316,
+ "learning_rate": 0.0006,
+ "loss": 4.2372541427612305,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.4389215409755707,
+ "learning_rate": 0.0006,
+ "loss": 4.2590179443359375,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.458717942237854,
+ "learning_rate": 0.0006,
+ "loss": 4.313959121704102,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.47272592782974243,
+ "learning_rate": 0.0006,
+ "loss": 4.3018903732299805,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.46145138144493103,
+ "learning_rate": 0.0006,
+ "loss": 4.287712097167969,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.45914238691329956,
+ "learning_rate": 0.0006,
+ "loss": 4.287365913391113,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.45007017254829407,
+ "learning_rate": 0.0006,
+ "loss": 4.207084655761719,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.4381447434425354,
+ "learning_rate": 0.0006,
+ "loss": 4.311388969421387,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.44748032093048096,
+ "learning_rate": 0.0006,
+ "loss": 4.346423625946045,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.45367518067359924,
+ "learning_rate": 0.0006,
+ "loss": 4.300904273986816,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.407585084438324,
+ "learning_rate": 0.0006,
+ "loss": 4.271082401275635,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.4048030972480774,
+ "learning_rate": 0.0006,
+ "loss": 4.239479064941406,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.4034517705440521,
+ "learning_rate": 0.0006,
+ "loss": 4.2660675048828125,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.4124349057674408,
+ "learning_rate": 0.0006,
+ "loss": 4.311362266540527,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.424675315618515,
+ "learning_rate": 0.0006,
+ "loss": 4.300950527191162,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.4398607313632965,
+ "learning_rate": 0.0006,
+ "loss": 4.274449348449707,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.4407024383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.314581871032715,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.44054970145225525,
+ "learning_rate": 0.0006,
+ "loss": 4.274312973022461,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.4406360685825348,
+ "learning_rate": 0.0006,
+ "loss": 4.349391460418701,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.4325377941131592,
+ "learning_rate": 0.0006,
+ "loss": 4.235274314880371,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.4063146114349365,
+ "learning_rate": 0.0006,
+ "loss": 4.224005699157715,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.40214279294013977,
+ "learning_rate": 0.0006,
+ "loss": 4.304279327392578,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.413821816444397,
+ "learning_rate": 0.0006,
+ "loss": 4.2585906982421875,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.4437064230442047,
+ "learning_rate": 0.0006,
+ "loss": 4.387950897216797,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.44573846459388733,
+ "learning_rate": 0.0006,
+ "loss": 4.2619805335998535,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.46081477403640747,
+ "learning_rate": 0.0006,
+ "loss": 4.32242488861084,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.5210936069488525,
+ "learning_rate": 0.0006,
+ "loss": 4.432188034057617,
+ "step": 6048
+ },
+ {
+ "epoch": 84.0,
+ "eval_loss": 6.362637519836426,
+ "eval_runtime": 43.7803,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 6048
+ },
+ {
+ "epoch": 84.01397990388816,
+ "grad_norm": 0.47436055541038513,
+ "learning_rate": 0.0006,
+ "loss": 4.191722869873047,
+ "step": 6049
+ },
+ {
+ "epoch": 84.02795980777633,
+ "grad_norm": 0.49965932965278625,
+ "learning_rate": 0.0006,
+ "loss": 4.258981227874756,
+ "step": 6050
+ },
+ {
+ "epoch": 84.04193971166448,
+ "grad_norm": 0.534188449382782,
+ "learning_rate": 0.0006,
+ "loss": 4.140765190124512,
+ "step": 6051
+ },
+ {
+ "epoch": 84.05591961555264,
+ "grad_norm": 0.5774598717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.202078819274902,
+ "step": 6052
+ },
+ {
+ "epoch": 84.06989951944081,
+ "grad_norm": 0.5815461277961731,
+ "learning_rate": 0.0006,
+ "loss": 4.146556377410889,
+ "step": 6053
+ },
+ {
+ "epoch": 84.08387942332897,
+ "grad_norm": 0.5998873710632324,
+ "learning_rate": 0.0006,
+ "loss": 4.162553787231445,
+ "step": 6054
+ },
+ {
+ "epoch": 84.09785932721712,
+ "grad_norm": 0.6092634797096252,
+ "learning_rate": 0.0006,
+ "loss": 4.187989234924316,
+ "step": 6055
+ },
+ {
+ "epoch": 84.1118392311053,
+ "grad_norm": 0.6370293498039246,
+ "learning_rate": 0.0006,
+ "loss": 4.2049880027771,
+ "step": 6056
+ },
+ {
+ "epoch": 84.12581913499345,
+ "grad_norm": 0.6683672070503235,
+ "learning_rate": 0.0006,
+ "loss": 4.2524003982543945,
+ "step": 6057
+ },
+ {
+ "epoch": 84.1397990388816,
+ "grad_norm": 0.7103533744812012,
+ "learning_rate": 0.0006,
+ "loss": 4.236176490783691,
+ "step": 6058
+ },
+ {
+ "epoch": 84.15377894276976,
+ "grad_norm": 0.6803413033485413,
+ "learning_rate": 0.0006,
+ "loss": 4.137399673461914,
+ "step": 6059
+ },
+ {
+ "epoch": 84.16775884665793,
+ "grad_norm": 0.6188878417015076,
+ "learning_rate": 0.0006,
+ "loss": 4.167574882507324,
+ "step": 6060
+ },
+ {
+ "epoch": 84.18173875054609,
+ "grad_norm": 0.5730593204498291,
+ "learning_rate": 0.0006,
+ "loss": 4.25192403793335,
+ "step": 6061
+ },
+ {
+ "epoch": 84.19571865443424,
+ "grad_norm": 0.5957173705101013,
+ "learning_rate": 0.0006,
+ "loss": 4.219425201416016,
+ "step": 6062
+ },
+ {
+ "epoch": 84.20969855832242,
+ "grad_norm": 0.5630517601966858,
+ "learning_rate": 0.0006,
+ "loss": 4.206212043762207,
+ "step": 6063
+ },
+ {
+ "epoch": 84.22367846221057,
+ "grad_norm": 0.5968215465545654,
+ "learning_rate": 0.0006,
+ "loss": 4.267094612121582,
+ "step": 6064
+ },
+ {
+ "epoch": 84.23765836609873,
+ "grad_norm": 0.5848506093025208,
+ "learning_rate": 0.0006,
+ "loss": 4.219100475311279,
+ "step": 6065
+ },
+ {
+ "epoch": 84.2516382699869,
+ "grad_norm": 0.5439348220825195,
+ "learning_rate": 0.0006,
+ "loss": 4.194691181182861,
+ "step": 6066
+ },
+ {
+ "epoch": 84.26561817387505,
+ "grad_norm": 0.5145100951194763,
+ "learning_rate": 0.0006,
+ "loss": 4.154284477233887,
+ "step": 6067
+ },
+ {
+ "epoch": 84.27959807776321,
+ "grad_norm": 0.5202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 4.247485160827637,
+ "step": 6068
+ },
+ {
+ "epoch": 84.29357798165138,
+ "grad_norm": 0.5043543577194214,
+ "learning_rate": 0.0006,
+ "loss": 4.236316680908203,
+ "step": 6069
+ },
+ {
+ "epoch": 84.30755788553954,
+ "grad_norm": 0.46285054087638855,
+ "learning_rate": 0.0006,
+ "loss": 4.203764915466309,
+ "step": 6070
+ },
+ {
+ "epoch": 84.3215377894277,
+ "grad_norm": 0.4265335202217102,
+ "learning_rate": 0.0006,
+ "loss": 4.233004570007324,
+ "step": 6071
+ },
+ {
+ "epoch": 84.33551769331586,
+ "grad_norm": 0.4409696161746979,
+ "learning_rate": 0.0006,
+ "loss": 4.184818267822266,
+ "step": 6072
+ },
+ {
+ "epoch": 84.34949759720402,
+ "grad_norm": 0.44777947664260864,
+ "learning_rate": 0.0006,
+ "loss": 4.244442939758301,
+ "step": 6073
+ },
+ {
+ "epoch": 84.36347750109218,
+ "grad_norm": 0.4520278573036194,
+ "learning_rate": 0.0006,
+ "loss": 4.195928573608398,
+ "step": 6074
+ },
+ {
+ "epoch": 84.37745740498035,
+ "grad_norm": 0.42898136377334595,
+ "learning_rate": 0.0006,
+ "loss": 4.206586837768555,
+ "step": 6075
+ },
+ {
+ "epoch": 84.3914373088685,
+ "grad_norm": 0.4295867085456848,
+ "learning_rate": 0.0006,
+ "loss": 4.165602684020996,
+ "step": 6076
+ },
+ {
+ "epoch": 84.40541721275666,
+ "grad_norm": 0.43354693055152893,
+ "learning_rate": 0.0006,
+ "loss": 4.229294776916504,
+ "step": 6077
+ },
+ {
+ "epoch": 84.41939711664482,
+ "grad_norm": 0.43806344270706177,
+ "learning_rate": 0.0006,
+ "loss": 4.263678550720215,
+ "step": 6078
+ },
+ {
+ "epoch": 84.43337702053299,
+ "grad_norm": 0.4122515320777893,
+ "learning_rate": 0.0006,
+ "loss": 4.132500171661377,
+ "step": 6079
+ },
+ {
+ "epoch": 84.44735692442114,
+ "grad_norm": 0.4411999583244324,
+ "learning_rate": 0.0006,
+ "loss": 4.20449161529541,
+ "step": 6080
+ },
+ {
+ "epoch": 84.4613368283093,
+ "grad_norm": 0.42754557728767395,
+ "learning_rate": 0.0006,
+ "loss": 4.135894775390625,
+ "step": 6081
+ },
+ {
+ "epoch": 84.47531673219747,
+ "grad_norm": 0.4322991967201233,
+ "learning_rate": 0.0006,
+ "loss": 4.150014877319336,
+ "step": 6082
+ },
+ {
+ "epoch": 84.48929663608563,
+ "grad_norm": 0.45169857144355774,
+ "learning_rate": 0.0006,
+ "loss": 4.192213535308838,
+ "step": 6083
+ },
+ {
+ "epoch": 84.50327653997378,
+ "grad_norm": 0.4425649344921112,
+ "learning_rate": 0.0006,
+ "loss": 4.222028732299805,
+ "step": 6084
+ },
+ {
+ "epoch": 84.51725644386195,
+ "grad_norm": 0.4355604350566864,
+ "learning_rate": 0.0006,
+ "loss": 4.195630073547363,
+ "step": 6085
+ },
+ {
+ "epoch": 84.53123634775011,
+ "grad_norm": 0.44341176748275757,
+ "learning_rate": 0.0006,
+ "loss": 4.327449798583984,
+ "step": 6086
+ },
+ {
+ "epoch": 84.54521625163827,
+ "grad_norm": 0.4357825815677643,
+ "learning_rate": 0.0006,
+ "loss": 4.27389669418335,
+ "step": 6087
+ },
+ {
+ "epoch": 84.55919615552644,
+ "grad_norm": 0.4642813801765442,
+ "learning_rate": 0.0006,
+ "loss": 4.179567337036133,
+ "step": 6088
+ },
+ {
+ "epoch": 84.57317605941459,
+ "grad_norm": 0.5092143416404724,
+ "learning_rate": 0.0006,
+ "loss": 4.15549373626709,
+ "step": 6089
+ },
+ {
+ "epoch": 84.58715596330275,
+ "grad_norm": 0.5048913359642029,
+ "learning_rate": 0.0006,
+ "loss": 4.268869400024414,
+ "step": 6090
+ },
+ {
+ "epoch": 84.60113586719092,
+ "grad_norm": 0.49465590715408325,
+ "learning_rate": 0.0006,
+ "loss": 4.218505859375,
+ "step": 6091
+ },
+ {
+ "epoch": 84.61511577107908,
+ "grad_norm": 0.4515545666217804,
+ "learning_rate": 0.0006,
+ "loss": 4.2692365646362305,
+ "step": 6092
+ },
+ {
+ "epoch": 84.62909567496723,
+ "grad_norm": 0.42119187116622925,
+ "learning_rate": 0.0006,
+ "loss": 4.112425804138184,
+ "step": 6093
+ },
+ {
+ "epoch": 84.6430755788554,
+ "grad_norm": 0.461478590965271,
+ "learning_rate": 0.0006,
+ "loss": 4.311590194702148,
+ "step": 6094
+ },
+ {
+ "epoch": 84.65705548274356,
+ "grad_norm": 0.4738669991493225,
+ "learning_rate": 0.0006,
+ "loss": 4.274797439575195,
+ "step": 6095
+ },
+ {
+ "epoch": 84.67103538663171,
+ "grad_norm": 0.4834710359573364,
+ "learning_rate": 0.0006,
+ "loss": 4.230281829833984,
+ "step": 6096
+ },
+ {
+ "epoch": 84.68501529051987,
+ "grad_norm": 0.5070720911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.2454118728637695,
+ "step": 6097
+ },
+ {
+ "epoch": 84.69899519440804,
+ "grad_norm": 0.5197553038597107,
+ "learning_rate": 0.0006,
+ "loss": 4.230489730834961,
+ "step": 6098
+ },
+ {
+ "epoch": 84.7129750982962,
+ "grad_norm": 0.5083942413330078,
+ "learning_rate": 0.0006,
+ "loss": 4.299528121948242,
+ "step": 6099
+ },
+ {
+ "epoch": 84.72695500218435,
+ "grad_norm": 0.44557300209999084,
+ "learning_rate": 0.0006,
+ "loss": 4.175854206085205,
+ "step": 6100
+ },
+ {
+ "epoch": 84.74093490607252,
+ "grad_norm": 0.41695916652679443,
+ "learning_rate": 0.0006,
+ "loss": 4.159942626953125,
+ "step": 6101
+ },
+ {
+ "epoch": 84.75491480996068,
+ "grad_norm": 0.4457457959651947,
+ "learning_rate": 0.0006,
+ "loss": 4.2789459228515625,
+ "step": 6102
+ },
+ {
+ "epoch": 84.76889471384884,
+ "grad_norm": 0.426814466714859,
+ "learning_rate": 0.0006,
+ "loss": 4.266576766967773,
+ "step": 6103
+ },
+ {
+ "epoch": 84.78287461773701,
+ "grad_norm": 0.43556660413742065,
+ "learning_rate": 0.0006,
+ "loss": 4.205744743347168,
+ "step": 6104
+ },
+ {
+ "epoch": 84.79685452162516,
+ "grad_norm": 0.4368990361690521,
+ "learning_rate": 0.0006,
+ "loss": 4.273787498474121,
+ "step": 6105
+ },
+ {
+ "epoch": 84.81083442551332,
+ "grad_norm": 0.41615745425224304,
+ "learning_rate": 0.0006,
+ "loss": 4.296933174133301,
+ "step": 6106
+ },
+ {
+ "epoch": 84.82481432940149,
+ "grad_norm": 0.4203803241252899,
+ "learning_rate": 0.0006,
+ "loss": 4.254091262817383,
+ "step": 6107
+ },
+ {
+ "epoch": 84.83879423328965,
+ "grad_norm": 0.41405585408210754,
+ "learning_rate": 0.0006,
+ "loss": 4.178038597106934,
+ "step": 6108
+ },
+ {
+ "epoch": 84.8527741371778,
+ "grad_norm": 0.41433432698249817,
+ "learning_rate": 0.0006,
+ "loss": 4.208859920501709,
+ "step": 6109
+ },
+ {
+ "epoch": 84.86675404106597,
+ "grad_norm": 0.395998477935791,
+ "learning_rate": 0.0006,
+ "loss": 4.216287612915039,
+ "step": 6110
+ },
+ {
+ "epoch": 84.88073394495413,
+ "grad_norm": 0.40618404746055603,
+ "learning_rate": 0.0006,
+ "loss": 4.279260635375977,
+ "step": 6111
+ },
+ {
+ "epoch": 84.89471384884229,
+ "grad_norm": 0.4085141718387604,
+ "learning_rate": 0.0006,
+ "loss": 4.35117244720459,
+ "step": 6112
+ },
+ {
+ "epoch": 84.90869375273044,
+ "grad_norm": 0.42112982273101807,
+ "learning_rate": 0.0006,
+ "loss": 4.22624397277832,
+ "step": 6113
+ },
+ {
+ "epoch": 84.92267365661861,
+ "grad_norm": 0.4306959807872772,
+ "learning_rate": 0.0006,
+ "loss": 4.310124397277832,
+ "step": 6114
+ },
+ {
+ "epoch": 84.93665356050677,
+ "grad_norm": 0.4376320540904999,
+ "learning_rate": 0.0006,
+ "loss": 4.299549102783203,
+ "step": 6115
+ },
+ {
+ "epoch": 84.95063346439493,
+ "grad_norm": 0.4436059594154358,
+ "learning_rate": 0.0006,
+ "loss": 4.222458362579346,
+ "step": 6116
+ },
+ {
+ "epoch": 84.9646133682831,
+ "grad_norm": 0.4348333477973938,
+ "learning_rate": 0.0006,
+ "loss": 4.243000030517578,
+ "step": 6117
+ },
+ {
+ "epoch": 84.97859327217125,
+ "grad_norm": 0.40557757019996643,
+ "learning_rate": 0.0006,
+ "loss": 4.312551498413086,
+ "step": 6118
+ },
+ {
+ "epoch": 84.99257317605941,
+ "grad_norm": 0.3925289511680603,
+ "learning_rate": 0.0006,
+ "loss": 4.23169469833374,
+ "step": 6119
+ },
+ {
+ "epoch": 85.0,
+ "grad_norm": 0.4687667787075043,
+ "learning_rate": 0.0006,
+ "loss": 4.250479698181152,
+ "step": 6120
+ },
+ {
+ "epoch": 85.0,
+ "eval_loss": 6.4236650466918945,
+ "eval_runtime": 44.0012,
+ "eval_samples_per_second": 55.499,
+ "eval_steps_per_second": 3.477,
+ "step": 6120
+ },
+ {
+ "epoch": 85.01397990388816,
+ "grad_norm": 0.4212416410446167,
+ "learning_rate": 0.0006,
+ "loss": 4.1090850830078125,
+ "step": 6121
+ },
+ {
+ "epoch": 85.02795980777633,
+ "grad_norm": 0.494233638048172,
+ "learning_rate": 0.0006,
+ "loss": 4.180233478546143,
+ "step": 6122
+ },
+ {
+ "epoch": 85.04193971166448,
+ "grad_norm": 0.5173123478889465,
+ "learning_rate": 0.0006,
+ "loss": 4.185733795166016,
+ "step": 6123
+ },
+ {
+ "epoch": 85.05591961555264,
+ "grad_norm": 0.5681236982345581,
+ "learning_rate": 0.0006,
+ "loss": 4.138709545135498,
+ "step": 6124
+ },
+ {
+ "epoch": 85.06989951944081,
+ "grad_norm": 0.6410647034645081,
+ "learning_rate": 0.0006,
+ "loss": 4.139544486999512,
+ "step": 6125
+ },
+ {
+ "epoch": 85.08387942332897,
+ "grad_norm": 0.7401921153068542,
+ "learning_rate": 0.0006,
+ "loss": 4.198850154876709,
+ "step": 6126
+ },
+ {
+ "epoch": 85.09785932721712,
+ "grad_norm": 0.8305296301841736,
+ "learning_rate": 0.0006,
+ "loss": 4.1585693359375,
+ "step": 6127
+ },
+ {
+ "epoch": 85.1118392311053,
+ "grad_norm": 0.9176523685455322,
+ "learning_rate": 0.0006,
+ "loss": 4.242802619934082,
+ "step": 6128
+ },
+ {
+ "epoch": 85.12581913499345,
+ "grad_norm": 0.9265726804733276,
+ "learning_rate": 0.0006,
+ "loss": 4.219632625579834,
+ "step": 6129
+ },
+ {
+ "epoch": 85.1397990388816,
+ "grad_norm": 0.8400911092758179,
+ "learning_rate": 0.0006,
+ "loss": 4.268982887268066,
+ "step": 6130
+ },
+ {
+ "epoch": 85.15377894276976,
+ "grad_norm": 0.744905948638916,
+ "learning_rate": 0.0006,
+ "loss": 4.30452823638916,
+ "step": 6131
+ },
+ {
+ "epoch": 85.16775884665793,
+ "grad_norm": 0.6953766942024231,
+ "learning_rate": 0.0006,
+ "loss": 4.189999580383301,
+ "step": 6132
+ },
+ {
+ "epoch": 85.18173875054609,
+ "grad_norm": 0.577387809753418,
+ "learning_rate": 0.0006,
+ "loss": 4.227351188659668,
+ "step": 6133
+ },
+ {
+ "epoch": 85.19571865443424,
+ "grad_norm": 0.5925359129905701,
+ "learning_rate": 0.0006,
+ "loss": 4.1808977127075195,
+ "step": 6134
+ },
+ {
+ "epoch": 85.20969855832242,
+ "grad_norm": 0.6056010723114014,
+ "learning_rate": 0.0006,
+ "loss": 4.145054340362549,
+ "step": 6135
+ },
+ {
+ "epoch": 85.22367846221057,
+ "grad_norm": 0.604918360710144,
+ "learning_rate": 0.0006,
+ "loss": 4.266521453857422,
+ "step": 6136
+ },
+ {
+ "epoch": 85.23765836609873,
+ "grad_norm": 0.6269238591194153,
+ "learning_rate": 0.0006,
+ "loss": 4.196112632751465,
+ "step": 6137
+ },
+ {
+ "epoch": 85.2516382699869,
+ "grad_norm": 0.5958989858627319,
+ "learning_rate": 0.0006,
+ "loss": 4.176703453063965,
+ "step": 6138
+ },
+ {
+ "epoch": 85.26561817387505,
+ "grad_norm": 0.5563721656799316,
+ "learning_rate": 0.0006,
+ "loss": 4.214921951293945,
+ "step": 6139
+ },
+ {
+ "epoch": 85.27959807776321,
+ "grad_norm": 0.5104738473892212,
+ "learning_rate": 0.0006,
+ "loss": 4.1572747230529785,
+ "step": 6140
+ },
+ {
+ "epoch": 85.29357798165138,
+ "grad_norm": 0.5091421008110046,
+ "learning_rate": 0.0006,
+ "loss": 4.207575798034668,
+ "step": 6141
+ },
+ {
+ "epoch": 85.30755788553954,
+ "grad_norm": 0.4957296848297119,
+ "learning_rate": 0.0006,
+ "loss": 4.191003322601318,
+ "step": 6142
+ },
+ {
+ "epoch": 85.3215377894277,
+ "grad_norm": 0.5249730348587036,
+ "learning_rate": 0.0006,
+ "loss": 4.190788269042969,
+ "step": 6143
+ },
+ {
+ "epoch": 85.33551769331586,
+ "grad_norm": 0.5330517888069153,
+ "learning_rate": 0.0006,
+ "loss": 4.2532501220703125,
+ "step": 6144
+ },
+ {
+ "epoch": 85.34949759720402,
+ "grad_norm": 0.5122325420379639,
+ "learning_rate": 0.0006,
+ "loss": 4.24505090713501,
+ "step": 6145
+ },
+ {
+ "epoch": 85.36347750109218,
+ "grad_norm": 0.48302626609802246,
+ "learning_rate": 0.0006,
+ "loss": 4.276553153991699,
+ "step": 6146
+ },
+ {
+ "epoch": 85.37745740498035,
+ "grad_norm": 0.45876380801200867,
+ "learning_rate": 0.0006,
+ "loss": 4.232707977294922,
+ "step": 6147
+ },
+ {
+ "epoch": 85.3914373088685,
+ "grad_norm": 0.43201959133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.227077484130859,
+ "step": 6148
+ },
+ {
+ "epoch": 85.40541721275666,
+ "grad_norm": 0.43973541259765625,
+ "learning_rate": 0.0006,
+ "loss": 4.1685590744018555,
+ "step": 6149
+ },
+ {
+ "epoch": 85.41939711664482,
+ "grad_norm": 0.4517432153224945,
+ "learning_rate": 0.0006,
+ "loss": 4.207458972930908,
+ "step": 6150
+ },
+ {
+ "epoch": 85.43337702053299,
+ "grad_norm": 0.4610045850276947,
+ "learning_rate": 0.0006,
+ "loss": 4.132458686828613,
+ "step": 6151
+ },
+ {
+ "epoch": 85.44735692442114,
+ "grad_norm": 0.4478553533554077,
+ "learning_rate": 0.0006,
+ "loss": 4.164486885070801,
+ "step": 6152
+ },
+ {
+ "epoch": 85.4613368283093,
+ "grad_norm": 0.4325296878814697,
+ "learning_rate": 0.0006,
+ "loss": 4.238661766052246,
+ "step": 6153
+ },
+ {
+ "epoch": 85.47531673219747,
+ "grad_norm": 0.4336618185043335,
+ "learning_rate": 0.0006,
+ "loss": 4.2476348876953125,
+ "step": 6154
+ },
+ {
+ "epoch": 85.48929663608563,
+ "grad_norm": 0.44246068596839905,
+ "learning_rate": 0.0006,
+ "loss": 4.112232685089111,
+ "step": 6155
+ },
+ {
+ "epoch": 85.50327653997378,
+ "grad_norm": 0.44979506731033325,
+ "learning_rate": 0.0006,
+ "loss": 4.227209091186523,
+ "step": 6156
+ },
+ {
+ "epoch": 85.51725644386195,
+ "grad_norm": 0.41781380772590637,
+ "learning_rate": 0.0006,
+ "loss": 4.170072555541992,
+ "step": 6157
+ },
+ {
+ "epoch": 85.53123634775011,
+ "grad_norm": 0.4316149353981018,
+ "learning_rate": 0.0006,
+ "loss": 4.145702362060547,
+ "step": 6158
+ },
+ {
+ "epoch": 85.54521625163827,
+ "grad_norm": 0.4433120787143707,
+ "learning_rate": 0.0006,
+ "loss": 4.26444673538208,
+ "step": 6159
+ },
+ {
+ "epoch": 85.55919615552644,
+ "grad_norm": 0.42795389890670776,
+ "learning_rate": 0.0006,
+ "loss": 4.2480621337890625,
+ "step": 6160
+ },
+ {
+ "epoch": 85.57317605941459,
+ "grad_norm": 0.44557079672813416,
+ "learning_rate": 0.0006,
+ "loss": 4.24589729309082,
+ "step": 6161
+ },
+ {
+ "epoch": 85.58715596330275,
+ "grad_norm": 0.4265936017036438,
+ "learning_rate": 0.0006,
+ "loss": 4.178960800170898,
+ "step": 6162
+ },
+ {
+ "epoch": 85.60113586719092,
+ "grad_norm": 0.4352312982082367,
+ "learning_rate": 0.0006,
+ "loss": 4.226616382598877,
+ "step": 6163
+ },
+ {
+ "epoch": 85.61511577107908,
+ "grad_norm": 0.4641511142253876,
+ "learning_rate": 0.0006,
+ "loss": 4.176436424255371,
+ "step": 6164
+ },
+ {
+ "epoch": 85.62909567496723,
+ "grad_norm": 0.41917547583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.22402286529541,
+ "step": 6165
+ },
+ {
+ "epoch": 85.6430755788554,
+ "grad_norm": 0.4128566086292267,
+ "learning_rate": 0.0006,
+ "loss": 4.208065032958984,
+ "step": 6166
+ },
+ {
+ "epoch": 85.65705548274356,
+ "grad_norm": 0.41222256422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.3075361251831055,
+ "step": 6167
+ },
+ {
+ "epoch": 85.67103538663171,
+ "grad_norm": 0.41198086738586426,
+ "learning_rate": 0.0006,
+ "loss": 4.290134906768799,
+ "step": 6168
+ },
+ {
+ "epoch": 85.68501529051987,
+ "grad_norm": 0.4154035747051239,
+ "learning_rate": 0.0006,
+ "loss": 4.278663635253906,
+ "step": 6169
+ },
+ {
+ "epoch": 85.69899519440804,
+ "grad_norm": 0.4130622446537018,
+ "learning_rate": 0.0006,
+ "loss": 4.243109703063965,
+ "step": 6170
+ },
+ {
+ "epoch": 85.7129750982962,
+ "grad_norm": 0.4077015221118927,
+ "learning_rate": 0.0006,
+ "loss": 4.228545665740967,
+ "step": 6171
+ },
+ {
+ "epoch": 85.72695500218435,
+ "grad_norm": 0.3907303810119629,
+ "learning_rate": 0.0006,
+ "loss": 4.3075995445251465,
+ "step": 6172
+ },
+ {
+ "epoch": 85.74093490607252,
+ "grad_norm": 0.4037119746208191,
+ "learning_rate": 0.0006,
+ "loss": 4.246337413787842,
+ "step": 6173
+ },
+ {
+ "epoch": 85.75491480996068,
+ "grad_norm": 0.41759130358695984,
+ "learning_rate": 0.0006,
+ "loss": 4.308913707733154,
+ "step": 6174
+ },
+ {
+ "epoch": 85.76889471384884,
+ "grad_norm": 0.41771626472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.311037063598633,
+ "step": 6175
+ },
+ {
+ "epoch": 85.78287461773701,
+ "grad_norm": 0.4321439862251282,
+ "learning_rate": 0.0006,
+ "loss": 4.350762367248535,
+ "step": 6176
+ },
+ {
+ "epoch": 85.79685452162516,
+ "grad_norm": 0.3975702226161957,
+ "learning_rate": 0.0006,
+ "loss": 4.182483673095703,
+ "step": 6177
+ },
+ {
+ "epoch": 85.81083442551332,
+ "grad_norm": 0.4001428782939911,
+ "learning_rate": 0.0006,
+ "loss": 4.2482194900512695,
+ "step": 6178
+ },
+ {
+ "epoch": 85.82481432940149,
+ "grad_norm": 0.4038706421852112,
+ "learning_rate": 0.0006,
+ "loss": 4.252450466156006,
+ "step": 6179
+ },
+ {
+ "epoch": 85.83879423328965,
+ "grad_norm": 0.413814902305603,
+ "learning_rate": 0.0006,
+ "loss": 4.278610706329346,
+ "step": 6180
+ },
+ {
+ "epoch": 85.8527741371778,
+ "grad_norm": 0.4370289444923401,
+ "learning_rate": 0.0006,
+ "loss": 4.209270000457764,
+ "step": 6181
+ },
+ {
+ "epoch": 85.86675404106597,
+ "grad_norm": 0.4093279242515564,
+ "learning_rate": 0.0006,
+ "loss": 4.339448928833008,
+ "step": 6182
+ },
+ {
+ "epoch": 85.88073394495413,
+ "grad_norm": 0.4336872398853302,
+ "learning_rate": 0.0006,
+ "loss": 4.248476028442383,
+ "step": 6183
+ },
+ {
+ "epoch": 85.89471384884229,
+ "grad_norm": 0.42384231090545654,
+ "learning_rate": 0.0006,
+ "loss": 4.1973652839660645,
+ "step": 6184
+ },
+ {
+ "epoch": 85.90869375273044,
+ "grad_norm": 0.4119747579097748,
+ "learning_rate": 0.0006,
+ "loss": 4.2321271896362305,
+ "step": 6185
+ },
+ {
+ "epoch": 85.92267365661861,
+ "grad_norm": 0.42178797721862793,
+ "learning_rate": 0.0006,
+ "loss": 4.238823890686035,
+ "step": 6186
+ },
+ {
+ "epoch": 85.93665356050677,
+ "grad_norm": 0.4252033233642578,
+ "learning_rate": 0.0006,
+ "loss": 4.216999053955078,
+ "step": 6187
+ },
+ {
+ "epoch": 85.95063346439493,
+ "grad_norm": 0.4080226719379425,
+ "learning_rate": 0.0006,
+ "loss": 4.165124416351318,
+ "step": 6188
+ },
+ {
+ "epoch": 85.9646133682831,
+ "grad_norm": 0.41687312722206116,
+ "learning_rate": 0.0006,
+ "loss": 4.267208576202393,
+ "step": 6189
+ },
+ {
+ "epoch": 85.97859327217125,
+ "grad_norm": 0.4602084159851074,
+ "learning_rate": 0.0006,
+ "loss": 4.275501251220703,
+ "step": 6190
+ },
+ {
+ "epoch": 85.99257317605941,
+ "grad_norm": 0.4058094620704651,
+ "learning_rate": 0.0006,
+ "loss": 4.245742321014404,
+ "step": 6191
+ },
+ {
+ "epoch": 86.0,
+ "grad_norm": 0.47458478808403015,
+ "learning_rate": 0.0006,
+ "loss": 4.287442207336426,
+ "step": 6192
+ },
+ {
+ "epoch": 86.0,
+ "eval_loss": 6.403047561645508,
+ "eval_runtime": 43.8214,
+ "eval_samples_per_second": 55.726,
+ "eval_steps_per_second": 3.491,
+ "step": 6192
+ },
+ {
+ "epoch": 86.01397990388816,
+ "grad_norm": 0.4514295756816864,
+ "learning_rate": 0.0006,
+ "loss": 4.168883323669434,
+ "step": 6193
+ },
+ {
+ "epoch": 86.02795980777633,
+ "grad_norm": 0.4945322573184967,
+ "learning_rate": 0.0006,
+ "loss": 4.184109687805176,
+ "step": 6194
+ },
+ {
+ "epoch": 86.04193971166448,
+ "grad_norm": 0.4829343557357788,
+ "learning_rate": 0.0006,
+ "loss": 4.196836471557617,
+ "step": 6195
+ },
+ {
+ "epoch": 86.05591961555264,
+ "grad_norm": 0.46961912512779236,
+ "learning_rate": 0.0006,
+ "loss": 4.142866134643555,
+ "step": 6196
+ },
+ {
+ "epoch": 86.06989951944081,
+ "grad_norm": 0.4949210584163666,
+ "learning_rate": 0.0006,
+ "loss": 4.211699485778809,
+ "step": 6197
+ },
+ {
+ "epoch": 86.08387942332897,
+ "grad_norm": 0.46593594551086426,
+ "learning_rate": 0.0006,
+ "loss": 4.1134490966796875,
+ "step": 6198
+ },
+ {
+ "epoch": 86.09785932721712,
+ "grad_norm": 0.4728434681892395,
+ "learning_rate": 0.0006,
+ "loss": 4.068804740905762,
+ "step": 6199
+ },
+ {
+ "epoch": 86.1118392311053,
+ "grad_norm": 0.47897961735725403,
+ "learning_rate": 0.0006,
+ "loss": 4.116288185119629,
+ "step": 6200
+ },
+ {
+ "epoch": 86.12581913499345,
+ "grad_norm": 0.4988885819911957,
+ "learning_rate": 0.0006,
+ "loss": 4.195610523223877,
+ "step": 6201
+ },
+ {
+ "epoch": 86.1397990388816,
+ "grad_norm": 0.5539481043815613,
+ "learning_rate": 0.0006,
+ "loss": 4.1776204109191895,
+ "step": 6202
+ },
+ {
+ "epoch": 86.15377894276976,
+ "grad_norm": 0.668317973613739,
+ "learning_rate": 0.0006,
+ "loss": 4.1369171142578125,
+ "step": 6203
+ },
+ {
+ "epoch": 86.16775884665793,
+ "grad_norm": 0.7647491693496704,
+ "learning_rate": 0.0006,
+ "loss": 4.20838737487793,
+ "step": 6204
+ },
+ {
+ "epoch": 86.18173875054609,
+ "grad_norm": 0.9673570394515991,
+ "learning_rate": 0.0006,
+ "loss": 4.215792655944824,
+ "step": 6205
+ },
+ {
+ "epoch": 86.19571865443424,
+ "grad_norm": 1.124152660369873,
+ "learning_rate": 0.0006,
+ "loss": 4.2046709060668945,
+ "step": 6206
+ },
+ {
+ "epoch": 86.20969855832242,
+ "grad_norm": 0.795403778553009,
+ "learning_rate": 0.0006,
+ "loss": 4.212424278259277,
+ "step": 6207
+ },
+ {
+ "epoch": 86.22367846221057,
+ "grad_norm": 0.639197826385498,
+ "learning_rate": 0.0006,
+ "loss": 4.090766429901123,
+ "step": 6208
+ },
+ {
+ "epoch": 86.23765836609873,
+ "grad_norm": 0.662894606590271,
+ "learning_rate": 0.0006,
+ "loss": 4.1571221351623535,
+ "step": 6209
+ },
+ {
+ "epoch": 86.2516382699869,
+ "grad_norm": 0.6552493572235107,
+ "learning_rate": 0.0006,
+ "loss": 4.231173515319824,
+ "step": 6210
+ },
+ {
+ "epoch": 86.26561817387505,
+ "grad_norm": 0.5748463869094849,
+ "learning_rate": 0.0006,
+ "loss": 4.172743797302246,
+ "step": 6211
+ },
+ {
+ "epoch": 86.27959807776321,
+ "grad_norm": 0.5272432565689087,
+ "learning_rate": 0.0006,
+ "loss": 4.193683624267578,
+ "step": 6212
+ },
+ {
+ "epoch": 86.29357798165138,
+ "grad_norm": 0.49313828349113464,
+ "learning_rate": 0.0006,
+ "loss": 4.221615791320801,
+ "step": 6213
+ },
+ {
+ "epoch": 86.30755788553954,
+ "grad_norm": 0.494914710521698,
+ "learning_rate": 0.0006,
+ "loss": 4.255671501159668,
+ "step": 6214
+ },
+ {
+ "epoch": 86.3215377894277,
+ "grad_norm": 0.47431471943855286,
+ "learning_rate": 0.0006,
+ "loss": 4.181219100952148,
+ "step": 6215
+ },
+ {
+ "epoch": 86.33551769331586,
+ "grad_norm": 0.4649604260921478,
+ "learning_rate": 0.0006,
+ "loss": 4.191998481750488,
+ "step": 6216
+ },
+ {
+ "epoch": 86.34949759720402,
+ "grad_norm": 0.4728623628616333,
+ "learning_rate": 0.0006,
+ "loss": 4.2238264083862305,
+ "step": 6217
+ },
+ {
+ "epoch": 86.36347750109218,
+ "grad_norm": 0.4535118043422699,
+ "learning_rate": 0.0006,
+ "loss": 4.17877197265625,
+ "step": 6218
+ },
+ {
+ "epoch": 86.37745740498035,
+ "grad_norm": 0.46630820631980896,
+ "learning_rate": 0.0006,
+ "loss": 4.268709182739258,
+ "step": 6219
+ },
+ {
+ "epoch": 86.3914373088685,
+ "grad_norm": 0.44170552492141724,
+ "learning_rate": 0.0006,
+ "loss": 4.156832695007324,
+ "step": 6220
+ },
+ {
+ "epoch": 86.40541721275666,
+ "grad_norm": 0.4569980800151825,
+ "learning_rate": 0.0006,
+ "loss": 4.231564521789551,
+ "step": 6221
+ },
+ {
+ "epoch": 86.41939711664482,
+ "grad_norm": 0.46918782591819763,
+ "learning_rate": 0.0006,
+ "loss": 4.249637603759766,
+ "step": 6222
+ },
+ {
+ "epoch": 86.43337702053299,
+ "grad_norm": 0.4581753611564636,
+ "learning_rate": 0.0006,
+ "loss": 4.179978370666504,
+ "step": 6223
+ },
+ {
+ "epoch": 86.44735692442114,
+ "grad_norm": 0.4316704571247101,
+ "learning_rate": 0.0006,
+ "loss": 4.146752834320068,
+ "step": 6224
+ },
+ {
+ "epoch": 86.4613368283093,
+ "grad_norm": 0.4482209384441376,
+ "learning_rate": 0.0006,
+ "loss": 4.244694232940674,
+ "step": 6225
+ },
+ {
+ "epoch": 86.47531673219747,
+ "grad_norm": 0.4843580424785614,
+ "learning_rate": 0.0006,
+ "loss": 4.17778205871582,
+ "step": 6226
+ },
+ {
+ "epoch": 86.48929663608563,
+ "grad_norm": 0.4709290862083435,
+ "learning_rate": 0.0006,
+ "loss": 4.285809516906738,
+ "step": 6227
+ },
+ {
+ "epoch": 86.50327653997378,
+ "grad_norm": 0.46813929080963135,
+ "learning_rate": 0.0006,
+ "loss": 4.231365203857422,
+ "step": 6228
+ },
+ {
+ "epoch": 86.51725644386195,
+ "grad_norm": 0.4462358355522156,
+ "learning_rate": 0.0006,
+ "loss": 4.105094909667969,
+ "step": 6229
+ },
+ {
+ "epoch": 86.53123634775011,
+ "grad_norm": 0.4453467130661011,
+ "learning_rate": 0.0006,
+ "loss": 4.299243927001953,
+ "step": 6230
+ },
+ {
+ "epoch": 86.54521625163827,
+ "grad_norm": 0.40684959292411804,
+ "learning_rate": 0.0006,
+ "loss": 4.130344867706299,
+ "step": 6231
+ },
+ {
+ "epoch": 86.55919615552644,
+ "grad_norm": 0.4367261230945587,
+ "learning_rate": 0.0006,
+ "loss": 4.32288932800293,
+ "step": 6232
+ },
+ {
+ "epoch": 86.57317605941459,
+ "grad_norm": 0.4543338418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.20067024230957,
+ "step": 6233
+ },
+ {
+ "epoch": 86.58715596330275,
+ "grad_norm": 0.4356217384338379,
+ "learning_rate": 0.0006,
+ "loss": 4.203358173370361,
+ "step": 6234
+ },
+ {
+ "epoch": 86.60113586719092,
+ "grad_norm": 0.430902361869812,
+ "learning_rate": 0.0006,
+ "loss": 4.259663105010986,
+ "step": 6235
+ },
+ {
+ "epoch": 86.61511577107908,
+ "grad_norm": 0.4439174234867096,
+ "learning_rate": 0.0006,
+ "loss": 4.223544120788574,
+ "step": 6236
+ },
+ {
+ "epoch": 86.62909567496723,
+ "grad_norm": 0.4226101338863373,
+ "learning_rate": 0.0006,
+ "loss": 4.189355373382568,
+ "step": 6237
+ },
+ {
+ "epoch": 86.6430755788554,
+ "grad_norm": 0.40921148657798767,
+ "learning_rate": 0.0006,
+ "loss": 4.117485523223877,
+ "step": 6238
+ },
+ {
+ "epoch": 86.65705548274356,
+ "grad_norm": 0.4049853980541229,
+ "learning_rate": 0.0006,
+ "loss": 4.194711685180664,
+ "step": 6239
+ },
+ {
+ "epoch": 86.67103538663171,
+ "grad_norm": 0.43752163648605347,
+ "learning_rate": 0.0006,
+ "loss": 4.296228885650635,
+ "step": 6240
+ },
+ {
+ "epoch": 86.68501529051987,
+ "grad_norm": 0.4285348653793335,
+ "learning_rate": 0.0006,
+ "loss": 4.224569797515869,
+ "step": 6241
+ },
+ {
+ "epoch": 86.69899519440804,
+ "grad_norm": 0.42145198583602905,
+ "learning_rate": 0.0006,
+ "loss": 4.17451286315918,
+ "step": 6242
+ },
+ {
+ "epoch": 86.7129750982962,
+ "grad_norm": 0.43004974722862244,
+ "learning_rate": 0.0006,
+ "loss": 4.327383995056152,
+ "step": 6243
+ },
+ {
+ "epoch": 86.72695500218435,
+ "grad_norm": 0.4132508635520935,
+ "learning_rate": 0.0006,
+ "loss": 4.254952430725098,
+ "step": 6244
+ },
+ {
+ "epoch": 86.74093490607252,
+ "grad_norm": 0.4263715445995331,
+ "learning_rate": 0.0006,
+ "loss": 4.291565895080566,
+ "step": 6245
+ },
+ {
+ "epoch": 86.75491480996068,
+ "grad_norm": 0.4107324779033661,
+ "learning_rate": 0.0006,
+ "loss": 4.175364971160889,
+ "step": 6246
+ },
+ {
+ "epoch": 86.76889471384884,
+ "grad_norm": 0.4208371937274933,
+ "learning_rate": 0.0006,
+ "loss": 4.30789852142334,
+ "step": 6247
+ },
+ {
+ "epoch": 86.78287461773701,
+ "grad_norm": 0.40826472640037537,
+ "learning_rate": 0.0006,
+ "loss": 4.258838176727295,
+ "step": 6248
+ },
+ {
+ "epoch": 86.79685452162516,
+ "grad_norm": 0.4199276268482208,
+ "learning_rate": 0.0006,
+ "loss": 4.267247200012207,
+ "step": 6249
+ },
+ {
+ "epoch": 86.81083442551332,
+ "grad_norm": 0.41855406761169434,
+ "learning_rate": 0.0006,
+ "loss": 4.23055362701416,
+ "step": 6250
+ },
+ {
+ "epoch": 86.82481432940149,
+ "grad_norm": 0.4074585735797882,
+ "learning_rate": 0.0006,
+ "loss": 4.30836296081543,
+ "step": 6251
+ },
+ {
+ "epoch": 86.83879423328965,
+ "grad_norm": 0.41543063521385193,
+ "learning_rate": 0.0006,
+ "loss": 4.240653991699219,
+ "step": 6252
+ },
+ {
+ "epoch": 86.8527741371778,
+ "grad_norm": 0.43938663601875305,
+ "learning_rate": 0.0006,
+ "loss": 4.202419757843018,
+ "step": 6253
+ },
+ {
+ "epoch": 86.86675404106597,
+ "grad_norm": 0.40917736291885376,
+ "learning_rate": 0.0006,
+ "loss": 4.230096817016602,
+ "step": 6254
+ },
+ {
+ "epoch": 86.88073394495413,
+ "grad_norm": 0.39287346601486206,
+ "learning_rate": 0.0006,
+ "loss": 4.266208648681641,
+ "step": 6255
+ },
+ {
+ "epoch": 86.89471384884229,
+ "grad_norm": 0.42201662063598633,
+ "learning_rate": 0.0006,
+ "loss": 4.266336441040039,
+ "step": 6256
+ },
+ {
+ "epoch": 86.90869375273044,
+ "grad_norm": 0.41840073466300964,
+ "learning_rate": 0.0006,
+ "loss": 4.2372283935546875,
+ "step": 6257
+ },
+ {
+ "epoch": 86.92267365661861,
+ "grad_norm": 0.41545310616493225,
+ "learning_rate": 0.0006,
+ "loss": 4.228784084320068,
+ "step": 6258
+ },
+ {
+ "epoch": 86.93665356050677,
+ "grad_norm": 0.4000638723373413,
+ "learning_rate": 0.0006,
+ "loss": 4.217623233795166,
+ "step": 6259
+ },
+ {
+ "epoch": 86.95063346439493,
+ "grad_norm": 0.40059611201286316,
+ "learning_rate": 0.0006,
+ "loss": 4.219632148742676,
+ "step": 6260
+ },
+ {
+ "epoch": 86.9646133682831,
+ "grad_norm": 0.40537703037261963,
+ "learning_rate": 0.0006,
+ "loss": 4.325621604919434,
+ "step": 6261
+ },
+ {
+ "epoch": 86.97859327217125,
+ "grad_norm": 0.4128882884979248,
+ "learning_rate": 0.0006,
+ "loss": 4.3072710037231445,
+ "step": 6262
+ },
+ {
+ "epoch": 86.99257317605941,
+ "grad_norm": 0.4379993677139282,
+ "learning_rate": 0.0006,
+ "loss": 4.363463401794434,
+ "step": 6263
+ },
+ {
+ "epoch": 87.0,
+ "grad_norm": 0.547332763671875,
+ "learning_rate": 0.0006,
+ "loss": 4.2679829597473145,
+ "step": 6264
+ },
+ {
+ "epoch": 87.0,
+ "eval_loss": 6.392307758331299,
+ "eval_runtime": 43.7891,
+ "eval_samples_per_second": 55.767,
+ "eval_steps_per_second": 3.494,
+ "step": 6264
+ },
+ {
+ "epoch": 87.01397990388816,
+ "grad_norm": 0.45948871970176697,
+ "learning_rate": 0.0006,
+ "loss": 4.031222343444824,
+ "step": 6265
+ },
+ {
+ "epoch": 87.02795980777633,
+ "grad_norm": 0.4914006292819977,
+ "learning_rate": 0.0006,
+ "loss": 4.156842231750488,
+ "step": 6266
+ },
+ {
+ "epoch": 87.04193971166448,
+ "grad_norm": 0.5071610808372498,
+ "learning_rate": 0.0006,
+ "loss": 4.1074676513671875,
+ "step": 6267
+ },
+ {
+ "epoch": 87.05591961555264,
+ "grad_norm": 0.4955688416957855,
+ "learning_rate": 0.0006,
+ "loss": 4.216960430145264,
+ "step": 6268
+ },
+ {
+ "epoch": 87.06989951944081,
+ "grad_norm": 0.4986410140991211,
+ "learning_rate": 0.0006,
+ "loss": 4.154225826263428,
+ "step": 6269
+ },
+ {
+ "epoch": 87.08387942332897,
+ "grad_norm": 0.5057981014251709,
+ "learning_rate": 0.0006,
+ "loss": 4.1951904296875,
+ "step": 6270
+ },
+ {
+ "epoch": 87.09785932721712,
+ "grad_norm": 0.4882241189479828,
+ "learning_rate": 0.0006,
+ "loss": 4.126533508300781,
+ "step": 6271
+ },
+ {
+ "epoch": 87.1118392311053,
+ "grad_norm": 0.4709639549255371,
+ "learning_rate": 0.0006,
+ "loss": 4.058790683746338,
+ "step": 6272
+ },
+ {
+ "epoch": 87.12581913499345,
+ "grad_norm": 0.5342675447463989,
+ "learning_rate": 0.0006,
+ "loss": 4.214875221252441,
+ "step": 6273
+ },
+ {
+ "epoch": 87.1397990388816,
+ "grad_norm": 0.6006143689155579,
+ "learning_rate": 0.0006,
+ "loss": 4.160619735717773,
+ "step": 6274
+ },
+ {
+ "epoch": 87.15377894276976,
+ "grad_norm": 0.6728277802467346,
+ "learning_rate": 0.0006,
+ "loss": 4.1538848876953125,
+ "step": 6275
+ },
+ {
+ "epoch": 87.16775884665793,
+ "grad_norm": 0.7239725589752197,
+ "learning_rate": 0.0006,
+ "loss": 4.1733808517456055,
+ "step": 6276
+ },
+ {
+ "epoch": 87.18173875054609,
+ "grad_norm": 0.7556143403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.219337463378906,
+ "step": 6277
+ },
+ {
+ "epoch": 87.19571865443424,
+ "grad_norm": 0.7680774927139282,
+ "learning_rate": 0.0006,
+ "loss": 4.188779354095459,
+ "step": 6278
+ },
+ {
+ "epoch": 87.20969855832242,
+ "grad_norm": 0.6739238500595093,
+ "learning_rate": 0.0006,
+ "loss": 4.140239715576172,
+ "step": 6279
+ },
+ {
+ "epoch": 87.22367846221057,
+ "grad_norm": 0.5501153469085693,
+ "learning_rate": 0.0006,
+ "loss": 4.183748245239258,
+ "step": 6280
+ },
+ {
+ "epoch": 87.23765836609873,
+ "grad_norm": 0.5142590403556824,
+ "learning_rate": 0.0006,
+ "loss": 4.183562278747559,
+ "step": 6281
+ },
+ {
+ "epoch": 87.2516382699869,
+ "grad_norm": 0.5068333148956299,
+ "learning_rate": 0.0006,
+ "loss": 4.15458869934082,
+ "step": 6282
+ },
+ {
+ "epoch": 87.26561817387505,
+ "grad_norm": 0.49197667837142944,
+ "learning_rate": 0.0006,
+ "loss": 4.183134078979492,
+ "step": 6283
+ },
+ {
+ "epoch": 87.27959807776321,
+ "grad_norm": 0.474367618560791,
+ "learning_rate": 0.0006,
+ "loss": 4.166842460632324,
+ "step": 6284
+ },
+ {
+ "epoch": 87.29357798165138,
+ "grad_norm": 0.487605482339859,
+ "learning_rate": 0.0006,
+ "loss": 4.14278507232666,
+ "step": 6285
+ },
+ {
+ "epoch": 87.30755788553954,
+ "grad_norm": 0.5414341688156128,
+ "learning_rate": 0.0006,
+ "loss": 4.185382843017578,
+ "step": 6286
+ },
+ {
+ "epoch": 87.3215377894277,
+ "grad_norm": 0.5583488345146179,
+ "learning_rate": 0.0006,
+ "loss": 4.194276809692383,
+ "step": 6287
+ },
+ {
+ "epoch": 87.33551769331586,
+ "grad_norm": 0.5409402847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.194012641906738,
+ "step": 6288
+ },
+ {
+ "epoch": 87.34949759720402,
+ "grad_norm": 0.48561549186706543,
+ "learning_rate": 0.0006,
+ "loss": 4.114370346069336,
+ "step": 6289
+ },
+ {
+ "epoch": 87.36347750109218,
+ "grad_norm": 0.4989895224571228,
+ "learning_rate": 0.0006,
+ "loss": 4.2538604736328125,
+ "step": 6290
+ },
+ {
+ "epoch": 87.37745740498035,
+ "grad_norm": 0.48488590121269226,
+ "learning_rate": 0.0006,
+ "loss": 4.191547870635986,
+ "step": 6291
+ },
+ {
+ "epoch": 87.3914373088685,
+ "grad_norm": 0.4702613353729248,
+ "learning_rate": 0.0006,
+ "loss": 4.240187644958496,
+ "step": 6292
+ },
+ {
+ "epoch": 87.40541721275666,
+ "grad_norm": 0.4687752425670624,
+ "learning_rate": 0.0006,
+ "loss": 4.121512413024902,
+ "step": 6293
+ },
+ {
+ "epoch": 87.41939711664482,
+ "grad_norm": 0.48676159977912903,
+ "learning_rate": 0.0006,
+ "loss": 4.289400100708008,
+ "step": 6294
+ },
+ {
+ "epoch": 87.43337702053299,
+ "grad_norm": 0.4835919439792633,
+ "learning_rate": 0.0006,
+ "loss": 4.250560760498047,
+ "step": 6295
+ },
+ {
+ "epoch": 87.44735692442114,
+ "grad_norm": 0.4874095916748047,
+ "learning_rate": 0.0006,
+ "loss": 4.225663185119629,
+ "step": 6296
+ },
+ {
+ "epoch": 87.4613368283093,
+ "grad_norm": 0.488853394985199,
+ "learning_rate": 0.0006,
+ "loss": 4.23991584777832,
+ "step": 6297
+ },
+ {
+ "epoch": 87.47531673219747,
+ "grad_norm": 0.44397449493408203,
+ "learning_rate": 0.0006,
+ "loss": 4.123526096343994,
+ "step": 6298
+ },
+ {
+ "epoch": 87.48929663608563,
+ "grad_norm": 0.4251089096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.166404724121094,
+ "step": 6299
+ },
+ {
+ "epoch": 87.50327653997378,
+ "grad_norm": 0.4290788769721985,
+ "learning_rate": 0.0006,
+ "loss": 4.228366851806641,
+ "step": 6300
+ },
+ {
+ "epoch": 87.51725644386195,
+ "grad_norm": 0.42660924792289734,
+ "learning_rate": 0.0006,
+ "loss": 4.225200653076172,
+ "step": 6301
+ },
+ {
+ "epoch": 87.53123634775011,
+ "grad_norm": 0.43401870131492615,
+ "learning_rate": 0.0006,
+ "loss": 4.27695894241333,
+ "step": 6302
+ },
+ {
+ "epoch": 87.54521625163827,
+ "grad_norm": 0.41544046998023987,
+ "learning_rate": 0.0006,
+ "loss": 4.177009582519531,
+ "step": 6303
+ },
+ {
+ "epoch": 87.55919615552644,
+ "grad_norm": 0.44220849871635437,
+ "learning_rate": 0.0006,
+ "loss": 4.2085065841674805,
+ "step": 6304
+ },
+ {
+ "epoch": 87.57317605941459,
+ "grad_norm": 0.42026737332344055,
+ "learning_rate": 0.0006,
+ "loss": 4.185011863708496,
+ "step": 6305
+ },
+ {
+ "epoch": 87.58715596330275,
+ "grad_norm": 0.44712957739830017,
+ "learning_rate": 0.0006,
+ "loss": 4.245328903198242,
+ "step": 6306
+ },
+ {
+ "epoch": 87.60113586719092,
+ "grad_norm": 0.44793379306793213,
+ "learning_rate": 0.0006,
+ "loss": 4.212185382843018,
+ "step": 6307
+ },
+ {
+ "epoch": 87.61511577107908,
+ "grad_norm": 0.4273943305015564,
+ "learning_rate": 0.0006,
+ "loss": 4.197522163391113,
+ "step": 6308
+ },
+ {
+ "epoch": 87.62909567496723,
+ "grad_norm": 0.42533764243125916,
+ "learning_rate": 0.0006,
+ "loss": 4.172801971435547,
+ "step": 6309
+ },
+ {
+ "epoch": 87.6430755788554,
+ "grad_norm": 0.43188905715942383,
+ "learning_rate": 0.0006,
+ "loss": 4.165098190307617,
+ "step": 6310
+ },
+ {
+ "epoch": 87.65705548274356,
+ "grad_norm": 0.44534748792648315,
+ "learning_rate": 0.0006,
+ "loss": 4.229440212249756,
+ "step": 6311
+ },
+ {
+ "epoch": 87.67103538663171,
+ "grad_norm": 0.45937788486480713,
+ "learning_rate": 0.0006,
+ "loss": 4.20249080657959,
+ "step": 6312
+ },
+ {
+ "epoch": 87.68501529051987,
+ "grad_norm": 0.4640798568725586,
+ "learning_rate": 0.0006,
+ "loss": 4.2877068519592285,
+ "step": 6313
+ },
+ {
+ "epoch": 87.69899519440804,
+ "grad_norm": 0.4504205882549286,
+ "learning_rate": 0.0006,
+ "loss": 4.308557510375977,
+ "step": 6314
+ },
+ {
+ "epoch": 87.7129750982962,
+ "grad_norm": 0.4654962122440338,
+ "learning_rate": 0.0006,
+ "loss": 4.335789203643799,
+ "step": 6315
+ },
+ {
+ "epoch": 87.72695500218435,
+ "grad_norm": 0.44867751002311707,
+ "learning_rate": 0.0006,
+ "loss": 4.255827903747559,
+ "step": 6316
+ },
+ {
+ "epoch": 87.74093490607252,
+ "grad_norm": 0.42953476309776306,
+ "learning_rate": 0.0006,
+ "loss": 4.224635124206543,
+ "step": 6317
+ },
+ {
+ "epoch": 87.75491480996068,
+ "grad_norm": 0.4550751745700836,
+ "learning_rate": 0.0006,
+ "loss": 4.280992031097412,
+ "step": 6318
+ },
+ {
+ "epoch": 87.76889471384884,
+ "grad_norm": 0.455138236284256,
+ "learning_rate": 0.0006,
+ "loss": 4.20681095123291,
+ "step": 6319
+ },
+ {
+ "epoch": 87.78287461773701,
+ "grad_norm": 0.4809635579586029,
+ "learning_rate": 0.0006,
+ "loss": 4.307140350341797,
+ "step": 6320
+ },
+ {
+ "epoch": 87.79685452162516,
+ "grad_norm": 0.4570373594760895,
+ "learning_rate": 0.0006,
+ "loss": 4.204259395599365,
+ "step": 6321
+ },
+ {
+ "epoch": 87.81083442551332,
+ "grad_norm": 0.4444306194782257,
+ "learning_rate": 0.0006,
+ "loss": 4.341936111450195,
+ "step": 6322
+ },
+ {
+ "epoch": 87.82481432940149,
+ "grad_norm": 0.42678138613700867,
+ "learning_rate": 0.0006,
+ "loss": 4.294060230255127,
+ "step": 6323
+ },
+ {
+ "epoch": 87.83879423328965,
+ "grad_norm": 0.43476608395576477,
+ "learning_rate": 0.0006,
+ "loss": 4.215855598449707,
+ "step": 6324
+ },
+ {
+ "epoch": 87.8527741371778,
+ "grad_norm": 0.42589980363845825,
+ "learning_rate": 0.0006,
+ "loss": 4.274613380432129,
+ "step": 6325
+ },
+ {
+ "epoch": 87.86675404106597,
+ "grad_norm": 0.4429503083229065,
+ "learning_rate": 0.0006,
+ "loss": 4.283843994140625,
+ "step": 6326
+ },
+ {
+ "epoch": 87.88073394495413,
+ "grad_norm": 0.4391273558139801,
+ "learning_rate": 0.0006,
+ "loss": 4.207469463348389,
+ "step": 6327
+ },
+ {
+ "epoch": 87.89471384884229,
+ "grad_norm": 0.4276169538497925,
+ "learning_rate": 0.0006,
+ "loss": 4.249349594116211,
+ "step": 6328
+ },
+ {
+ "epoch": 87.90869375273044,
+ "grad_norm": 0.40960410237312317,
+ "learning_rate": 0.0006,
+ "loss": 4.273435592651367,
+ "step": 6329
+ },
+ {
+ "epoch": 87.92267365661861,
+ "grad_norm": 0.4168111979961395,
+ "learning_rate": 0.0006,
+ "loss": 4.251261234283447,
+ "step": 6330
+ },
+ {
+ "epoch": 87.93665356050677,
+ "grad_norm": 0.41783952713012695,
+ "learning_rate": 0.0006,
+ "loss": 4.247318267822266,
+ "step": 6331
+ },
+ {
+ "epoch": 87.95063346439493,
+ "grad_norm": 0.4538755416870117,
+ "learning_rate": 0.0006,
+ "loss": 4.262417793273926,
+ "step": 6332
+ },
+ {
+ "epoch": 87.9646133682831,
+ "grad_norm": 0.46401816606521606,
+ "learning_rate": 0.0006,
+ "loss": 4.208325386047363,
+ "step": 6333
+ },
+ {
+ "epoch": 87.97859327217125,
+ "grad_norm": 0.4470364451408386,
+ "learning_rate": 0.0006,
+ "loss": 4.340447902679443,
+ "step": 6334
+ },
+ {
+ "epoch": 87.99257317605941,
+ "grad_norm": 0.42655766010284424,
+ "learning_rate": 0.0006,
+ "loss": 4.263899326324463,
+ "step": 6335
+ },
+ {
+ "epoch": 88.0,
+ "grad_norm": 0.509168803691864,
+ "learning_rate": 0.0006,
+ "loss": 4.314913272857666,
+ "step": 6336
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.7000801685583954e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6336/training_args.bin b/runs/i5-fulle-lm/checkpoint-6336/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6336/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-6624/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-6624/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/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/i5-fulle-lm/checkpoint-6624/config.json b/runs/i5-fulle-lm/checkpoint-6624/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6624/generation_config.json b/runs/i5-fulle-lm/checkpoint-6624/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6624/model.safetensors b/runs/i5-fulle-lm/checkpoint-6624/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..ecbbd151c48cdf65c71282439a50bcabaaa0243e
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:eaf16a53a2dfc16303d68ef482c2d0ebe630d63be5b1b9ec47ea5fe072394496
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-6624/optimizer.pt b/runs/i5-fulle-lm/checkpoint-6624/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..17d948483f5ab9fa47817725a12fe79a95b589e9
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fa6da04fc9bb56bc56bcddfa4b80997492b8360420dca679b52e0d1531b6e962
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-6624/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-6624/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..15b091cc289f1cc17444bed0001b411357a6f98d
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6253781d40931f6c2698f536d6240b123d8dd707d29c900af69a38c191411bfe
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-6624/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-6624/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..9ea1bfb3e9a10b4ddf85b4732b39a08f63d14cac
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:793835678b20da9c670c41487cafff93a9f971f9e4434ab38f0008b9fe3e517a
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-6624/scheduler.pt b/runs/i5-fulle-lm/checkpoint-6624/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..1fb4fbb9cb8eafb61c9d89947d329fb67f4dd4e6
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:aeab2b26cd983e17d83b05e83f37ef1706928049bbb8ff0e989945b479e25df2
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-6624/tokenizer.json b/runs/i5-fulle-lm/checkpoint-6624/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-6624/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-6624/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6624/trainer_state.json b/runs/i5-fulle-lm/checkpoint-6624/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..1ac2525fe0bbfc7ec07eb21082dd8d8aed1a6199
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/trainer_state.json
@@ -0,0 +1,47122 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 92.0,
+ "eval_steps": 500,
+ "global_step": 6624,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 6.10045862197876,
+ "eval_runtime": 43.881,
+ "eval_samples_per_second": 55.651,
+ "eval_steps_per_second": 3.487,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.3880091607570648,
+ "learning_rate": 0.0006,
+ "loss": 4.2891340255737305,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.46462568640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.368136882781982,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.46417036652565,
+ "learning_rate": 0.0006,
+ "loss": 4.290570259094238,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.42546287178993225,
+ "learning_rate": 0.0006,
+ "loss": 4.275969505310059,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.42158621549606323,
+ "learning_rate": 0.0006,
+ "loss": 4.3133697509765625,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.41421398520469666,
+ "learning_rate": 0.0006,
+ "loss": 4.318943977355957,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.4261677861213684,
+ "learning_rate": 0.0006,
+ "loss": 4.386415481567383,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.4547804594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.200797080993652,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.5152761340141296,
+ "learning_rate": 0.0006,
+ "loss": 4.392667770385742,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.6397215127944946,
+ "learning_rate": 0.0006,
+ "loss": 4.365647315979004,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.867751955986023,
+ "learning_rate": 0.0006,
+ "loss": 4.404231071472168,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 1.113226056098938,
+ "learning_rate": 0.0006,
+ "loss": 4.4237775802612305,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.9725164771080017,
+ "learning_rate": 0.0006,
+ "loss": 4.353878021240234,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.8986128568649292,
+ "learning_rate": 0.0006,
+ "loss": 4.404200553894043,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.644611656665802,
+ "learning_rate": 0.0006,
+ "loss": 4.314446449279785,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.5430455803871155,
+ "learning_rate": 0.0006,
+ "loss": 4.404072284698486,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.5315895080566406,
+ "learning_rate": 0.0006,
+ "loss": 4.339350700378418,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.4984396696090698,
+ "learning_rate": 0.0006,
+ "loss": 4.418368339538574,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.4928722679615021,
+ "learning_rate": 0.0006,
+ "loss": 4.351061820983887,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.4810708463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.32480525970459,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.4846661388874054,
+ "learning_rate": 0.0006,
+ "loss": 4.410396099090576,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.45098942518234253,
+ "learning_rate": 0.0006,
+ "loss": 4.434419631958008,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.4603881239891052,
+ "learning_rate": 0.0006,
+ "loss": 4.374553680419922,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.47921186685562134,
+ "learning_rate": 0.0006,
+ "loss": 4.43428373336792,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.458781361579895,
+ "learning_rate": 0.0006,
+ "loss": 4.345955848693848,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.43630266189575195,
+ "learning_rate": 0.0006,
+ "loss": 4.396679401397705,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.4061865210533142,
+ "learning_rate": 0.0006,
+ "loss": 4.3547186851501465,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.3998570740222931,
+ "learning_rate": 0.0006,
+ "loss": 4.42930793762207,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.43052756786346436,
+ "learning_rate": 0.0006,
+ "loss": 4.483987808227539,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.40878528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.4177021980285645,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.41628801822662354,
+ "learning_rate": 0.0006,
+ "loss": 4.383821487426758,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.39991578459739685,
+ "learning_rate": 0.0006,
+ "loss": 4.403266429901123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.3781890571117401,
+ "learning_rate": 0.0006,
+ "loss": 4.361995220184326,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.38037991523742676,
+ "learning_rate": 0.0006,
+ "loss": 4.520498275756836,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.3687450587749481,
+ "learning_rate": 0.0006,
+ "loss": 4.34592342376709,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.3800104558467865,
+ "learning_rate": 0.0006,
+ "loss": 4.395520210266113,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.38416075706481934,
+ "learning_rate": 0.0006,
+ "loss": 4.432024002075195,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.38714301586151123,
+ "learning_rate": 0.0006,
+ "loss": 4.371710300445557,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.3560386002063751,
+ "learning_rate": 0.0006,
+ "loss": 4.389065265655518,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.3583020269870758,
+ "learning_rate": 0.0006,
+ "loss": 4.294467926025391,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.3507572412490845,
+ "learning_rate": 0.0006,
+ "loss": 4.335668563842773,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.3481273353099823,
+ "learning_rate": 0.0006,
+ "loss": 4.355007171630859,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.3648652732372284,
+ "learning_rate": 0.0006,
+ "loss": 4.458398818969727,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.3315402865409851,
+ "learning_rate": 0.0006,
+ "loss": 4.415014266967773,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.34356269240379333,
+ "learning_rate": 0.0006,
+ "loss": 4.3891496658325195,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.3475818932056427,
+ "learning_rate": 0.0006,
+ "loss": 4.403259754180908,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.3756524622440338,
+ "learning_rate": 0.0006,
+ "loss": 4.396340370178223,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.38063693046569824,
+ "learning_rate": 0.0006,
+ "loss": 4.390671253204346,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.3574332594871521,
+ "learning_rate": 0.0006,
+ "loss": 4.342291831970215,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.35717374086380005,
+ "learning_rate": 0.0006,
+ "loss": 4.389538764953613,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.34184643626213074,
+ "learning_rate": 0.0006,
+ "loss": 4.407958030700684,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.3665345013141632,
+ "learning_rate": 0.0006,
+ "loss": 4.407729148864746,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.3752829432487488,
+ "learning_rate": 0.0006,
+ "loss": 4.406526565551758,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.3690424859523773,
+ "learning_rate": 0.0006,
+ "loss": 4.444920063018799,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.35570403933525085,
+ "learning_rate": 0.0006,
+ "loss": 4.41465950012207,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.3422539532184601,
+ "learning_rate": 0.0006,
+ "loss": 4.341947078704834,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.34019631147384644,
+ "learning_rate": 0.0006,
+ "loss": 4.383486747741699,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.35433074831962585,
+ "learning_rate": 0.0006,
+ "loss": 4.43992280960083,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.3690914809703827,
+ "learning_rate": 0.0006,
+ "loss": 4.396021842956543,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.35793814063072205,
+ "learning_rate": 0.0006,
+ "loss": 4.389019012451172,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.34700852632522583,
+ "learning_rate": 0.0006,
+ "loss": 4.476073265075684,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.3613256514072418,
+ "learning_rate": 0.0006,
+ "loss": 4.43828010559082,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.3444153070449829,
+ "learning_rate": 0.0006,
+ "loss": 4.470188140869141,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.3383917510509491,
+ "learning_rate": 0.0006,
+ "loss": 4.381032943725586,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.3648519217967987,
+ "learning_rate": 0.0006,
+ "loss": 4.399723052978516,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.34983959794044495,
+ "learning_rate": 0.0006,
+ "loss": 4.43270206451416,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.33937394618988037,
+ "learning_rate": 0.0006,
+ "loss": 4.4052228927612305,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.34935757517814636,
+ "learning_rate": 0.0006,
+ "loss": 4.38171911239624,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.3566495180130005,
+ "learning_rate": 0.0006,
+ "loss": 4.495579242706299,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.3702648878097534,
+ "learning_rate": 0.0006,
+ "loss": 4.452796936035156,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.3714422583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.404526710510254,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.42734357714653015,
+ "learning_rate": 0.0006,
+ "loss": 4.511031150817871,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 6.156860828399658,
+ "eval_runtime": 44.07,
+ "eval_samples_per_second": 55.412,
+ "eval_steps_per_second": 3.472,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.381186306476593,
+ "learning_rate": 0.0006,
+ "loss": 4.39985466003418,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.4057665169239044,
+ "learning_rate": 0.0006,
+ "loss": 4.338055610656738,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.4002494513988495,
+ "learning_rate": 0.0006,
+ "loss": 4.331958770751953,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.4294043183326721,
+ "learning_rate": 0.0006,
+ "loss": 4.339388370513916,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.45085105299949646,
+ "learning_rate": 0.0006,
+ "loss": 4.334287643432617,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.5061688423156738,
+ "learning_rate": 0.0006,
+ "loss": 4.2327470779418945,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.5022581219673157,
+ "learning_rate": 0.0006,
+ "loss": 4.291156768798828,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.5529219508171082,
+ "learning_rate": 0.0006,
+ "loss": 4.4021406173706055,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.5945294499397278,
+ "learning_rate": 0.0006,
+ "loss": 4.3400092124938965,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.5755016803741455,
+ "learning_rate": 0.0006,
+ "loss": 4.2676286697387695,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.5352432131767273,
+ "learning_rate": 0.0006,
+ "loss": 4.322068214416504,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.5563830137252808,
+ "learning_rate": 0.0006,
+ "loss": 4.401552200317383,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.5542744994163513,
+ "learning_rate": 0.0006,
+ "loss": 4.361536026000977,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.5109394788742065,
+ "learning_rate": 0.0006,
+ "loss": 4.333110809326172,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.48128604888916016,
+ "learning_rate": 0.0006,
+ "loss": 4.311734199523926,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.48069921135902405,
+ "learning_rate": 0.0006,
+ "loss": 4.400852203369141,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.45155879855155945,
+ "learning_rate": 0.0006,
+ "loss": 4.257515907287598,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.44431430101394653,
+ "learning_rate": 0.0006,
+ "loss": 4.397309303283691,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.43975624442100525,
+ "learning_rate": 0.0006,
+ "loss": 4.392481803894043,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.43021512031555176,
+ "learning_rate": 0.0006,
+ "loss": 4.323525428771973,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.4590098559856415,
+ "learning_rate": 0.0006,
+ "loss": 4.334511756896973,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.42400652170181274,
+ "learning_rate": 0.0006,
+ "loss": 4.33546257019043,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.41162917017936707,
+ "learning_rate": 0.0006,
+ "loss": 4.348457336425781,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.44991976022720337,
+ "learning_rate": 0.0006,
+ "loss": 4.3486785888671875,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.41424447298049927,
+ "learning_rate": 0.0006,
+ "loss": 4.396841049194336,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.4157496690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.386002540588379,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.43610864877700806,
+ "learning_rate": 0.0006,
+ "loss": 4.355074882507324,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.43452468514442444,
+ "learning_rate": 0.0006,
+ "loss": 4.327574729919434,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.42757663130760193,
+ "learning_rate": 0.0006,
+ "loss": 4.289640426635742,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.38811302185058594,
+ "learning_rate": 0.0006,
+ "loss": 4.297506809234619,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.3866890072822571,
+ "learning_rate": 0.0006,
+ "loss": 4.4301838874816895,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.43073758482933044,
+ "learning_rate": 0.0006,
+ "loss": 4.365545749664307,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.4058871865272522,
+ "learning_rate": 0.0006,
+ "loss": 4.294832229614258,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.41439321637153625,
+ "learning_rate": 0.0006,
+ "loss": 4.374986171722412,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.39280998706817627,
+ "learning_rate": 0.0006,
+ "loss": 4.472156524658203,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.380862832069397,
+ "learning_rate": 0.0006,
+ "loss": 4.3376359939575195,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.3880598843097687,
+ "learning_rate": 0.0006,
+ "loss": 4.399764537811279,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.4056805372238159,
+ "learning_rate": 0.0006,
+ "loss": 4.3839263916015625,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.43928271532058716,
+ "learning_rate": 0.0006,
+ "loss": 4.387872695922852,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.4157223701477051,
+ "learning_rate": 0.0006,
+ "loss": 4.491827011108398,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.38938942551612854,
+ "learning_rate": 0.0006,
+ "loss": 4.369803428649902,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.39400580525398254,
+ "learning_rate": 0.0006,
+ "loss": 4.4603800773620605,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.3747307062149048,
+ "learning_rate": 0.0006,
+ "loss": 4.366776466369629,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.4072708785533905,
+ "learning_rate": 0.0006,
+ "loss": 4.3782854080200195,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.4091123342514038,
+ "learning_rate": 0.0006,
+ "loss": 4.4356689453125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.40395987033843994,
+ "learning_rate": 0.0006,
+ "loss": 4.413468360900879,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.39857032895088196,
+ "learning_rate": 0.0006,
+ "loss": 4.450807571411133,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.4158494174480438,
+ "learning_rate": 0.0006,
+ "loss": 4.381142616271973,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.4082915484905243,
+ "learning_rate": 0.0006,
+ "loss": 4.496438980102539,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.37405046820640564,
+ "learning_rate": 0.0006,
+ "loss": 4.345484256744385,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.359416127204895,
+ "learning_rate": 0.0006,
+ "loss": 4.26982307434082,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.3519706726074219,
+ "learning_rate": 0.0006,
+ "loss": 4.397839546203613,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.3789094388484955,
+ "learning_rate": 0.0006,
+ "loss": 4.415822982788086,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.3676875829696655,
+ "learning_rate": 0.0006,
+ "loss": 4.396381855010986,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.3599476218223572,
+ "learning_rate": 0.0006,
+ "loss": 4.4171977043151855,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.3843400180339813,
+ "learning_rate": 0.0006,
+ "loss": 4.47220516204834,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.3702511191368103,
+ "learning_rate": 0.0006,
+ "loss": 4.500491619110107,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.3719273805618286,
+ "learning_rate": 0.0006,
+ "loss": 4.352668762207031,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.3619741201400757,
+ "learning_rate": 0.0006,
+ "loss": 4.3586931228637695,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.3766055703163147,
+ "learning_rate": 0.0006,
+ "loss": 4.408159255981445,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.3580402433872223,
+ "learning_rate": 0.0006,
+ "loss": 4.355810165405273,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.3602997958660126,
+ "learning_rate": 0.0006,
+ "loss": 4.357786178588867,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.35930490493774414,
+ "learning_rate": 0.0006,
+ "loss": 4.353297233581543,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.3693123161792755,
+ "learning_rate": 0.0006,
+ "loss": 4.391401290893555,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.36045047640800476,
+ "learning_rate": 0.0006,
+ "loss": 4.447843551635742,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.38618308305740356,
+ "learning_rate": 0.0006,
+ "loss": 4.465207099914551,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.38916000723838806,
+ "learning_rate": 0.0006,
+ "loss": 4.4063239097595215,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.3937848210334778,
+ "learning_rate": 0.0006,
+ "loss": 4.438618183135986,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.3975565731525421,
+ "learning_rate": 0.0006,
+ "loss": 4.376347541809082,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.383375883102417,
+ "learning_rate": 0.0006,
+ "loss": 4.376345634460449,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.38982275128364563,
+ "learning_rate": 0.0006,
+ "loss": 4.477313041687012,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.44567444920539856,
+ "learning_rate": 0.0006,
+ "loss": 4.4622087478637695,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 6.127683162689209,
+ "eval_runtime": 43.8712,
+ "eval_samples_per_second": 55.663,
+ "eval_steps_per_second": 3.487,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.38945627212524414,
+ "learning_rate": 0.0006,
+ "loss": 4.225332736968994,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.48500800132751465,
+ "learning_rate": 0.0006,
+ "loss": 4.303142547607422,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.4945746660232544,
+ "learning_rate": 0.0006,
+ "loss": 4.252800464630127,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.4860735237598419,
+ "learning_rate": 0.0006,
+ "loss": 4.3632307052612305,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.5717944502830505,
+ "learning_rate": 0.0006,
+ "loss": 4.2910966873168945,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.6825600862503052,
+ "learning_rate": 0.0006,
+ "loss": 4.446534633636475,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.7507191300392151,
+ "learning_rate": 0.0006,
+ "loss": 4.3218584060668945,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.8143581748008728,
+ "learning_rate": 0.0006,
+ "loss": 4.291619777679443,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.8164665699005127,
+ "learning_rate": 0.0006,
+ "loss": 4.314390182495117,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.8027179837226868,
+ "learning_rate": 0.0006,
+ "loss": 4.347686767578125,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.7046833038330078,
+ "learning_rate": 0.0006,
+ "loss": 4.382390975952148,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.6704773902893066,
+ "learning_rate": 0.0006,
+ "loss": 4.368736267089844,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.5986452698707581,
+ "learning_rate": 0.0006,
+ "loss": 4.3586106300354,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.5452585816383362,
+ "learning_rate": 0.0006,
+ "loss": 4.215537071228027,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.5050400495529175,
+ "learning_rate": 0.0006,
+ "loss": 4.345709800720215,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.4811224639415741,
+ "learning_rate": 0.0006,
+ "loss": 4.229983329772949,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.47257834672927856,
+ "learning_rate": 0.0006,
+ "loss": 4.401679039001465,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.46806448698043823,
+ "learning_rate": 0.0006,
+ "loss": 4.345294952392578,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.47019970417022705,
+ "learning_rate": 0.0006,
+ "loss": 4.3366899490356445,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.4618140459060669,
+ "learning_rate": 0.0006,
+ "loss": 4.423093795776367,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.45103076100349426,
+ "learning_rate": 0.0006,
+ "loss": 4.429213523864746,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.42674535512924194,
+ "learning_rate": 0.0006,
+ "loss": 4.355292320251465,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.4282950162887573,
+ "learning_rate": 0.0006,
+ "loss": 4.307826995849609,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.4120710790157318,
+ "learning_rate": 0.0006,
+ "loss": 4.322912216186523,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.4138009548187256,
+ "learning_rate": 0.0006,
+ "loss": 4.328085899353027,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.41546961665153503,
+ "learning_rate": 0.0006,
+ "loss": 4.4070940017700195,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.44050562381744385,
+ "learning_rate": 0.0006,
+ "loss": 4.419538497924805,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.41043856739997864,
+ "learning_rate": 0.0006,
+ "loss": 4.404756546020508,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.42796140909194946,
+ "learning_rate": 0.0006,
+ "loss": 4.3040008544921875,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.38510003685951233,
+ "learning_rate": 0.0006,
+ "loss": 4.353320598602295,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.3788503110408783,
+ "learning_rate": 0.0006,
+ "loss": 4.300704479217529,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.3905165493488312,
+ "learning_rate": 0.0006,
+ "loss": 4.343006610870361,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.3838869333267212,
+ "learning_rate": 0.0006,
+ "loss": 4.308780670166016,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.38746532797813416,
+ "learning_rate": 0.0006,
+ "loss": 4.335064888000488,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.37491124868392944,
+ "learning_rate": 0.0006,
+ "loss": 4.32066535949707,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.36987295746803284,
+ "learning_rate": 0.0006,
+ "loss": 4.317310333251953,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.38870200514793396,
+ "learning_rate": 0.0006,
+ "loss": 4.354729652404785,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.37225764989852905,
+ "learning_rate": 0.0006,
+ "loss": 4.29198694229126,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.3612116873264313,
+ "learning_rate": 0.0006,
+ "loss": 4.3979315757751465,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.40117356181144714,
+ "learning_rate": 0.0006,
+ "loss": 4.429460048675537,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.3933751881122589,
+ "learning_rate": 0.0006,
+ "loss": 4.348066329956055,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.38921254873275757,
+ "learning_rate": 0.0006,
+ "loss": 4.405765056610107,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.3987453579902649,
+ "learning_rate": 0.0006,
+ "loss": 4.350672721862793,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.43417951464653015,
+ "learning_rate": 0.0006,
+ "loss": 4.463413238525391,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.41297927498817444,
+ "learning_rate": 0.0006,
+ "loss": 4.309045791625977,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.38461950421333313,
+ "learning_rate": 0.0006,
+ "loss": 4.318929672241211,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.3841524124145508,
+ "learning_rate": 0.0006,
+ "loss": 4.379926681518555,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.39013510942459106,
+ "learning_rate": 0.0006,
+ "loss": 4.3409342765808105,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.3847009539604187,
+ "learning_rate": 0.0006,
+ "loss": 4.467362880706787,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.3979317247867584,
+ "learning_rate": 0.0006,
+ "loss": 4.333352088928223,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.4019637107849121,
+ "learning_rate": 0.0006,
+ "loss": 4.32415246963501,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.38000333309173584,
+ "learning_rate": 0.0006,
+ "loss": 4.318780899047852,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.3957592248916626,
+ "learning_rate": 0.0006,
+ "loss": 4.301888942718506,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.380258709192276,
+ "learning_rate": 0.0006,
+ "loss": 4.362771987915039,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.37715500593185425,
+ "learning_rate": 0.0006,
+ "loss": 4.455068588256836,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.37162303924560547,
+ "learning_rate": 0.0006,
+ "loss": 4.453987121582031,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.36303192377090454,
+ "learning_rate": 0.0006,
+ "loss": 4.400303363800049,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.34762880206108093,
+ "learning_rate": 0.0006,
+ "loss": 4.3961381912231445,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.34881117939949036,
+ "learning_rate": 0.0006,
+ "loss": 4.419530868530273,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.36440593004226685,
+ "learning_rate": 0.0006,
+ "loss": 4.4832868576049805,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.3671160638332367,
+ "learning_rate": 0.0006,
+ "loss": 4.389676094055176,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.3860883116722107,
+ "learning_rate": 0.0006,
+ "loss": 4.383245468139648,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.38325265049934387,
+ "learning_rate": 0.0006,
+ "loss": 4.3348388671875,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.3778875470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.362031936645508,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.3768773674964905,
+ "learning_rate": 0.0006,
+ "loss": 4.33457088470459,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.39139771461486816,
+ "learning_rate": 0.0006,
+ "loss": 4.455694198608398,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.38553205132484436,
+ "learning_rate": 0.0006,
+ "loss": 4.347469329833984,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.3916657567024231,
+ "learning_rate": 0.0006,
+ "loss": 4.394040107727051,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.3568893373012543,
+ "learning_rate": 0.0006,
+ "loss": 4.3976874351501465,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.3758280277252197,
+ "learning_rate": 0.0006,
+ "loss": 4.401939392089844,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.3833237588405609,
+ "learning_rate": 0.0006,
+ "loss": 4.339327812194824,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.4451141357421875,
+ "learning_rate": 0.0006,
+ "loss": 4.452360153198242,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 6.193995952606201,
+ "eval_runtime": 43.9228,
+ "eval_samples_per_second": 55.598,
+ "eval_steps_per_second": 3.483,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.4081752598285675,
+ "learning_rate": 0.0006,
+ "loss": 4.2674560546875,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.46005865931510925,
+ "learning_rate": 0.0006,
+ "loss": 4.2233099937438965,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.4297347962856293,
+ "learning_rate": 0.0006,
+ "loss": 4.269168376922607,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.427181601524353,
+ "learning_rate": 0.0006,
+ "loss": 4.304473876953125,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.4240623712539673,
+ "learning_rate": 0.0006,
+ "loss": 4.358336448669434,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.461392879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.351563930511475,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.4573875665664673,
+ "learning_rate": 0.0006,
+ "loss": 4.233829021453857,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.5236565470695496,
+ "learning_rate": 0.0006,
+ "loss": 4.313651084899902,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.6449952125549316,
+ "learning_rate": 0.0006,
+ "loss": 4.2785491943359375,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.76405930519104,
+ "learning_rate": 0.0006,
+ "loss": 4.333526611328125,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.8181349635124207,
+ "learning_rate": 0.0006,
+ "loss": 4.3336896896362305,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.7717618942260742,
+ "learning_rate": 0.0006,
+ "loss": 4.314065933227539,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.6831390857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.378012657165527,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.5755302906036377,
+ "learning_rate": 0.0006,
+ "loss": 4.331476211547852,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.5297263860702515,
+ "learning_rate": 0.0006,
+ "loss": 4.337549209594727,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.5538325309753418,
+ "learning_rate": 0.0006,
+ "loss": 4.395265102386475,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.4868195652961731,
+ "learning_rate": 0.0006,
+ "loss": 4.313584327697754,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.4794177711009979,
+ "learning_rate": 0.0006,
+ "loss": 4.413606643676758,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.4221785366535187,
+ "learning_rate": 0.0006,
+ "loss": 4.255707740783691,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.4288736879825592,
+ "learning_rate": 0.0006,
+ "loss": 4.257824897766113,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.42079946398735046,
+ "learning_rate": 0.0006,
+ "loss": 4.2655253410339355,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.4367576539516449,
+ "learning_rate": 0.0006,
+ "loss": 4.390307426452637,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.4121208190917969,
+ "learning_rate": 0.0006,
+ "loss": 4.3600006103515625,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.3934427797794342,
+ "learning_rate": 0.0006,
+ "loss": 4.276140213012695,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.3987336754798889,
+ "learning_rate": 0.0006,
+ "loss": 4.330526351928711,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.40691474080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.260777473449707,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.3869854807853699,
+ "learning_rate": 0.0006,
+ "loss": 4.3207855224609375,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.3992115259170532,
+ "learning_rate": 0.0006,
+ "loss": 4.3675432205200195,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.39756008982658386,
+ "learning_rate": 0.0006,
+ "loss": 4.359041213989258,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.37387391924858093,
+ "learning_rate": 0.0006,
+ "loss": 4.314123630523682,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.3787343502044678,
+ "learning_rate": 0.0006,
+ "loss": 4.376033782958984,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.388907253742218,
+ "learning_rate": 0.0006,
+ "loss": 4.2664690017700195,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.39261215925216675,
+ "learning_rate": 0.0006,
+ "loss": 4.335193634033203,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.385919988155365,
+ "learning_rate": 0.0006,
+ "loss": 4.329131126403809,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.39091575145721436,
+ "learning_rate": 0.0006,
+ "loss": 4.416098117828369,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.3747062683105469,
+ "learning_rate": 0.0006,
+ "loss": 4.284010887145996,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.37862640619277954,
+ "learning_rate": 0.0006,
+ "loss": 4.398101806640625,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.3797444701194763,
+ "learning_rate": 0.0006,
+ "loss": 4.433382034301758,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.3917072117328644,
+ "learning_rate": 0.0006,
+ "loss": 4.265375137329102,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.40743324160575867,
+ "learning_rate": 0.0006,
+ "loss": 4.351291656494141,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.4176776707172394,
+ "learning_rate": 0.0006,
+ "loss": 4.4158782958984375,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.4368206560611725,
+ "learning_rate": 0.0006,
+ "loss": 4.422186851501465,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.45450183749198914,
+ "learning_rate": 0.0006,
+ "loss": 4.363736629486084,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.4195234775543213,
+ "learning_rate": 0.0006,
+ "loss": 4.459656715393066,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.3838373124599457,
+ "learning_rate": 0.0006,
+ "loss": 4.338109016418457,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.37965819239616394,
+ "learning_rate": 0.0006,
+ "loss": 4.350182056427002,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.3787379264831543,
+ "learning_rate": 0.0006,
+ "loss": 4.394096851348877,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.3984084129333496,
+ "learning_rate": 0.0006,
+ "loss": 4.381903171539307,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.3826642334461212,
+ "learning_rate": 0.0006,
+ "loss": 4.269111156463623,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.3738428056240082,
+ "learning_rate": 0.0006,
+ "loss": 4.29117488861084,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.3769048750400543,
+ "learning_rate": 0.0006,
+ "loss": 4.395892143249512,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.36490270495414734,
+ "learning_rate": 0.0006,
+ "loss": 4.356070518493652,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.38128694891929626,
+ "learning_rate": 0.0006,
+ "loss": 4.366775989532471,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.3863452672958374,
+ "learning_rate": 0.0006,
+ "loss": 4.403047561645508,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.3697649836540222,
+ "learning_rate": 0.0006,
+ "loss": 4.333529472351074,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.3666415810585022,
+ "learning_rate": 0.0006,
+ "loss": 4.421572685241699,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.3746238946914673,
+ "learning_rate": 0.0006,
+ "loss": 4.291342735290527,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.3864925503730774,
+ "learning_rate": 0.0006,
+ "loss": 4.319379806518555,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.40842366218566895,
+ "learning_rate": 0.0006,
+ "loss": 4.34860897064209,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.39575234055519104,
+ "learning_rate": 0.0006,
+ "loss": 4.389467239379883,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.3882506787776947,
+ "learning_rate": 0.0006,
+ "loss": 4.373462677001953,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.38202980160713196,
+ "learning_rate": 0.0006,
+ "loss": 4.370086669921875,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.37805864214897156,
+ "learning_rate": 0.0006,
+ "loss": 4.46006965637207,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.3739442527294159,
+ "learning_rate": 0.0006,
+ "loss": 4.36165714263916,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.3707204759120941,
+ "learning_rate": 0.0006,
+ "loss": 4.418872356414795,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.37603604793548584,
+ "learning_rate": 0.0006,
+ "loss": 4.45180606842041,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.3731978237628937,
+ "learning_rate": 0.0006,
+ "loss": 4.412590026855469,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.3871077001094818,
+ "learning_rate": 0.0006,
+ "loss": 4.4665679931640625,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.3805893659591675,
+ "learning_rate": 0.0006,
+ "loss": 4.376047134399414,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.3941190540790558,
+ "learning_rate": 0.0006,
+ "loss": 4.414681434631348,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.39961132407188416,
+ "learning_rate": 0.0006,
+ "loss": 4.40030574798584,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.45096156001091003,
+ "learning_rate": 0.0006,
+ "loss": 4.3740458488464355,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 6.164906978607178,
+ "eval_runtime": 43.7516,
+ "eval_samples_per_second": 55.815,
+ "eval_steps_per_second": 3.497,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.4227452278137207,
+ "learning_rate": 0.0006,
+ "loss": 4.3197340965271,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.4646683931350708,
+ "learning_rate": 0.0006,
+ "loss": 4.254220008850098,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.5112658739089966,
+ "learning_rate": 0.0006,
+ "loss": 4.245427131652832,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.5452179312705994,
+ "learning_rate": 0.0006,
+ "loss": 4.303033828735352,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.6151604652404785,
+ "learning_rate": 0.0006,
+ "loss": 4.3013811111450195,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.7466694712638855,
+ "learning_rate": 0.0006,
+ "loss": 4.303430080413818,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.9221336841583252,
+ "learning_rate": 0.0006,
+ "loss": 4.330693244934082,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.9571523666381836,
+ "learning_rate": 0.0006,
+ "loss": 4.283618927001953,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.8955944776535034,
+ "learning_rate": 0.0006,
+ "loss": 4.331462860107422,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.9967221021652222,
+ "learning_rate": 0.0006,
+ "loss": 4.267236709594727,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.896125853061676,
+ "learning_rate": 0.0006,
+ "loss": 4.382920265197754,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.8246790170669556,
+ "learning_rate": 0.0006,
+ "loss": 4.325201034545898,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.6651087403297424,
+ "learning_rate": 0.0006,
+ "loss": 4.389814376831055,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.5789903998374939,
+ "learning_rate": 0.0006,
+ "loss": 4.256431579589844,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.540268063545227,
+ "learning_rate": 0.0006,
+ "loss": 4.314873218536377,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.5234258770942688,
+ "learning_rate": 0.0006,
+ "loss": 4.322999954223633,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.5203981399536133,
+ "learning_rate": 0.0006,
+ "loss": 4.449131965637207,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.47833096981048584,
+ "learning_rate": 0.0006,
+ "loss": 4.370548725128174,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.45063355565071106,
+ "learning_rate": 0.0006,
+ "loss": 4.423710823059082,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.4473242163658142,
+ "learning_rate": 0.0006,
+ "loss": 4.322866439819336,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.45025673508644104,
+ "learning_rate": 0.0006,
+ "loss": 4.242474555969238,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.4419912099838257,
+ "learning_rate": 0.0006,
+ "loss": 4.3837714195251465,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.4443511664867401,
+ "learning_rate": 0.0006,
+ "loss": 4.393730163574219,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.42215496301651,
+ "learning_rate": 0.0006,
+ "loss": 4.360969066619873,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.4408218562602997,
+ "learning_rate": 0.0006,
+ "loss": 4.399507522583008,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.42309728264808655,
+ "learning_rate": 0.0006,
+ "loss": 4.34589147567749,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.3893560767173767,
+ "learning_rate": 0.0006,
+ "loss": 4.278870582580566,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.42726844549179077,
+ "learning_rate": 0.0006,
+ "loss": 4.428325653076172,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.39529383182525635,
+ "learning_rate": 0.0006,
+ "loss": 4.3687872886657715,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.39174285531044006,
+ "learning_rate": 0.0006,
+ "loss": 4.367023468017578,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.39338526129722595,
+ "learning_rate": 0.0006,
+ "loss": 4.372482776641846,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.396528959274292,
+ "learning_rate": 0.0006,
+ "loss": 4.325854778289795,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.4031950533390045,
+ "learning_rate": 0.0006,
+ "loss": 4.387483596801758,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.3867308795452118,
+ "learning_rate": 0.0006,
+ "loss": 4.337440490722656,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.3758327066898346,
+ "learning_rate": 0.0006,
+ "loss": 4.332152366638184,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.3789239823818207,
+ "learning_rate": 0.0006,
+ "loss": 4.234537124633789,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.36792582273483276,
+ "learning_rate": 0.0006,
+ "loss": 4.3876800537109375,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.3689296245574951,
+ "learning_rate": 0.0006,
+ "loss": 4.311098098754883,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.3556303083896637,
+ "learning_rate": 0.0006,
+ "loss": 4.348201274871826,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.38501277565956116,
+ "learning_rate": 0.0006,
+ "loss": 4.391176700592041,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.3857221305370331,
+ "learning_rate": 0.0006,
+ "loss": 4.377525329589844,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.37236976623535156,
+ "learning_rate": 0.0006,
+ "loss": 4.25323486328125,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.37982237339019775,
+ "learning_rate": 0.0006,
+ "loss": 4.326591491699219,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.3887641131877899,
+ "learning_rate": 0.0006,
+ "loss": 4.32540225982666,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.3766990900039673,
+ "learning_rate": 0.0006,
+ "loss": 4.320146560668945,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.3827766478061676,
+ "learning_rate": 0.0006,
+ "loss": 4.344974517822266,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.3892960846424103,
+ "learning_rate": 0.0006,
+ "loss": 4.37299108505249,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.39927658438682556,
+ "learning_rate": 0.0006,
+ "loss": 4.346755504608154,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.3751842975616455,
+ "learning_rate": 0.0006,
+ "loss": 4.390047073364258,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.3758105933666229,
+ "learning_rate": 0.0006,
+ "loss": 4.392386436462402,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.3755977153778076,
+ "learning_rate": 0.0006,
+ "loss": 4.389333724975586,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.38697585463523865,
+ "learning_rate": 0.0006,
+ "loss": 4.363922119140625,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.37856224179267883,
+ "learning_rate": 0.0006,
+ "loss": 4.415143966674805,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.3853805959224701,
+ "learning_rate": 0.0006,
+ "loss": 4.332059860229492,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.3552320599555969,
+ "learning_rate": 0.0006,
+ "loss": 4.360487937927246,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.3593924641609192,
+ "learning_rate": 0.0006,
+ "loss": 4.386531829833984,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.37393584847450256,
+ "learning_rate": 0.0006,
+ "loss": 4.377449989318848,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.37289509177207947,
+ "learning_rate": 0.0006,
+ "loss": 4.381917953491211,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.3700922131538391,
+ "learning_rate": 0.0006,
+ "loss": 4.472764015197754,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.3773220181465149,
+ "learning_rate": 0.0006,
+ "loss": 4.438575744628906,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.3959292769432068,
+ "learning_rate": 0.0006,
+ "loss": 4.41773796081543,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.37098821997642517,
+ "learning_rate": 0.0006,
+ "loss": 4.3457441329956055,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.3589438199996948,
+ "learning_rate": 0.0006,
+ "loss": 4.390456676483154,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.3993541896343231,
+ "learning_rate": 0.0006,
+ "loss": 4.412688255310059,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.39771372079849243,
+ "learning_rate": 0.0006,
+ "loss": 4.37404203414917,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.37521013617515564,
+ "learning_rate": 0.0006,
+ "loss": 4.379281044006348,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.3812563717365265,
+ "learning_rate": 0.0006,
+ "loss": 4.475038528442383,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.3759402632713318,
+ "learning_rate": 0.0006,
+ "loss": 4.298859596252441,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.38831669092178345,
+ "learning_rate": 0.0006,
+ "loss": 4.335268020629883,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.3674168884754181,
+ "learning_rate": 0.0006,
+ "loss": 4.288745880126953,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.37575823068618774,
+ "learning_rate": 0.0006,
+ "loss": 4.340919494628906,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.44213995337486267,
+ "learning_rate": 0.0006,
+ "loss": 4.428310394287109,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 6.250092029571533,
+ "eval_runtime": 43.9606,
+ "eval_samples_per_second": 55.55,
+ "eval_steps_per_second": 3.48,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.40146708488464355,
+ "learning_rate": 0.0006,
+ "loss": 4.233017921447754,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.4238559305667877,
+ "learning_rate": 0.0006,
+ "loss": 4.256832122802734,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.4282098412513733,
+ "learning_rate": 0.0006,
+ "loss": 4.243378639221191,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.4408058524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.367465019226074,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.445965439081192,
+ "learning_rate": 0.0006,
+ "loss": 4.347798824310303,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.47689515352249146,
+ "learning_rate": 0.0006,
+ "loss": 4.242677211761475,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.5041401386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.354928016662598,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.5793538689613342,
+ "learning_rate": 0.0006,
+ "loss": 4.301093578338623,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.5709708333015442,
+ "learning_rate": 0.0006,
+ "loss": 4.217863082885742,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.5181067585945129,
+ "learning_rate": 0.0006,
+ "loss": 4.246687889099121,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.5148541927337646,
+ "learning_rate": 0.0006,
+ "loss": 4.285772800445557,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.5215007662773132,
+ "learning_rate": 0.0006,
+ "loss": 4.2491350173950195,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.5118919610977173,
+ "learning_rate": 0.0006,
+ "loss": 4.354918479919434,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.5332921147346497,
+ "learning_rate": 0.0006,
+ "loss": 4.294621467590332,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.5734043717384338,
+ "learning_rate": 0.0006,
+ "loss": 4.283238887786865,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.5209192037582397,
+ "learning_rate": 0.0006,
+ "loss": 4.251487731933594,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.4510970711708069,
+ "learning_rate": 0.0006,
+ "loss": 4.294740676879883,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.42409008741378784,
+ "learning_rate": 0.0006,
+ "loss": 4.267972946166992,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.45052847266197205,
+ "learning_rate": 0.0006,
+ "loss": 4.451445579528809,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.420418918132782,
+ "learning_rate": 0.0006,
+ "loss": 4.227499008178711,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.4419310390949249,
+ "learning_rate": 0.0006,
+ "loss": 4.294921875,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.41020578145980835,
+ "learning_rate": 0.0006,
+ "loss": 4.235942840576172,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.4084969162940979,
+ "learning_rate": 0.0006,
+ "loss": 4.285951614379883,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.39946338534355164,
+ "learning_rate": 0.0006,
+ "loss": 4.388570785522461,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.39431124925613403,
+ "learning_rate": 0.0006,
+ "loss": 4.329334259033203,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.41183048486709595,
+ "learning_rate": 0.0006,
+ "loss": 4.369775295257568,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.4041382968425751,
+ "learning_rate": 0.0006,
+ "loss": 4.272721290588379,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.42982324957847595,
+ "learning_rate": 0.0006,
+ "loss": 4.310064315795898,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.42579901218414307,
+ "learning_rate": 0.0006,
+ "loss": 4.284671783447266,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.41768139600753784,
+ "learning_rate": 0.0006,
+ "loss": 4.343086242675781,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.3960258960723877,
+ "learning_rate": 0.0006,
+ "loss": 4.2318806648254395,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.3981281518936157,
+ "learning_rate": 0.0006,
+ "loss": 4.2755937576293945,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.39555633068084717,
+ "learning_rate": 0.0006,
+ "loss": 4.383005142211914,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.4002246856689453,
+ "learning_rate": 0.0006,
+ "loss": 4.332754135131836,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.4106678068637848,
+ "learning_rate": 0.0006,
+ "loss": 4.391409873962402,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.3856841027736664,
+ "learning_rate": 0.0006,
+ "loss": 4.316332817077637,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.3910135328769684,
+ "learning_rate": 0.0006,
+ "loss": 4.327088356018066,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.38631075620651245,
+ "learning_rate": 0.0006,
+ "loss": 4.308974266052246,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.36760637164115906,
+ "learning_rate": 0.0006,
+ "loss": 4.396300315856934,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.39333999156951904,
+ "learning_rate": 0.0006,
+ "loss": 4.33335018157959,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.37966030836105347,
+ "learning_rate": 0.0006,
+ "loss": 4.298529148101807,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.3774148225784302,
+ "learning_rate": 0.0006,
+ "loss": 4.218472480773926,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.38100066781044006,
+ "learning_rate": 0.0006,
+ "loss": 4.337407112121582,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.3924340605735779,
+ "learning_rate": 0.0006,
+ "loss": 4.38271427154541,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.37583890557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.331287384033203,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.3993631601333618,
+ "learning_rate": 0.0006,
+ "loss": 4.297436237335205,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.41312935948371887,
+ "learning_rate": 0.0006,
+ "loss": 4.305514335632324,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.4133725166320801,
+ "learning_rate": 0.0006,
+ "loss": 4.339967727661133,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.3860441744327545,
+ "learning_rate": 0.0006,
+ "loss": 4.31814432144165,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.3891344964504242,
+ "learning_rate": 0.0006,
+ "loss": 4.346461772918701,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.3863038122653961,
+ "learning_rate": 0.0006,
+ "loss": 4.413818359375,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.37267377972602844,
+ "learning_rate": 0.0006,
+ "loss": 4.333828449249268,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.37040555477142334,
+ "learning_rate": 0.0006,
+ "loss": 4.456110000610352,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.3837447464466095,
+ "learning_rate": 0.0006,
+ "loss": 4.242850303649902,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.39074262976646423,
+ "learning_rate": 0.0006,
+ "loss": 4.3549485206604,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.38219889998435974,
+ "learning_rate": 0.0006,
+ "loss": 4.296403884887695,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.38378462195396423,
+ "learning_rate": 0.0006,
+ "loss": 4.369739532470703,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.37791451811790466,
+ "learning_rate": 0.0006,
+ "loss": 4.372786998748779,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.3720730245113373,
+ "learning_rate": 0.0006,
+ "loss": 4.292923450469971,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.3587147295475006,
+ "learning_rate": 0.0006,
+ "loss": 4.336228847503662,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.3617904782295227,
+ "learning_rate": 0.0006,
+ "loss": 4.380134582519531,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.3623189628124237,
+ "learning_rate": 0.0006,
+ "loss": 4.340606689453125,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.37112200260162354,
+ "learning_rate": 0.0006,
+ "loss": 4.310943603515625,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.3742401897907257,
+ "learning_rate": 0.0006,
+ "loss": 4.3478593826293945,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.374665230512619,
+ "learning_rate": 0.0006,
+ "loss": 4.4058637619018555,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.38624459505081177,
+ "learning_rate": 0.0006,
+ "loss": 4.348050594329834,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.40541738271713257,
+ "learning_rate": 0.0006,
+ "loss": 4.471852779388428,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.3857991695404053,
+ "learning_rate": 0.0006,
+ "loss": 4.312546253204346,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.41659343242645264,
+ "learning_rate": 0.0006,
+ "loss": 4.315553188323975,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.43697381019592285,
+ "learning_rate": 0.0006,
+ "loss": 4.333539962768555,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.45475196838378906,
+ "learning_rate": 0.0006,
+ "loss": 4.362082481384277,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.4871002733707428,
+ "learning_rate": 0.0006,
+ "loss": 4.328166484832764,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 6.260599136352539,
+ "eval_runtime": 43.7447,
+ "eval_samples_per_second": 55.824,
+ "eval_steps_per_second": 3.498,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.42134732007980347,
+ "learning_rate": 0.0006,
+ "loss": 4.200570106506348,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.44146645069122314,
+ "learning_rate": 0.0006,
+ "loss": 4.219682693481445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.4451248049736023,
+ "learning_rate": 0.0006,
+ "loss": 4.240499496459961,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.45094963908195496,
+ "learning_rate": 0.0006,
+ "loss": 4.252233505249023,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.4750693738460541,
+ "learning_rate": 0.0006,
+ "loss": 4.229597091674805,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.5211004614830017,
+ "learning_rate": 0.0006,
+ "loss": 4.3165435791015625,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.5570583343505859,
+ "learning_rate": 0.0006,
+ "loss": 4.280586242675781,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.543846845626831,
+ "learning_rate": 0.0006,
+ "loss": 4.243165493011475,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.4849488437175751,
+ "learning_rate": 0.0006,
+ "loss": 4.190418243408203,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.485515296459198,
+ "learning_rate": 0.0006,
+ "loss": 4.30844783782959,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.5233704447746277,
+ "learning_rate": 0.0006,
+ "loss": 4.229648590087891,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.5426996946334839,
+ "learning_rate": 0.0006,
+ "loss": 4.31719970703125,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.5974491238594055,
+ "learning_rate": 0.0006,
+ "loss": 4.250443458557129,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.6469011902809143,
+ "learning_rate": 0.0006,
+ "loss": 4.354139804840088,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.7294577360153198,
+ "learning_rate": 0.0006,
+ "loss": 4.3642706871032715,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.6488705277442932,
+ "learning_rate": 0.0006,
+ "loss": 4.275979995727539,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.4984777271747589,
+ "learning_rate": 0.0006,
+ "loss": 4.217861175537109,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.5109938979148865,
+ "learning_rate": 0.0006,
+ "loss": 4.286642074584961,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.49844229221343994,
+ "learning_rate": 0.0006,
+ "loss": 4.238213539123535,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.488077312707901,
+ "learning_rate": 0.0006,
+ "loss": 4.231420040130615,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.4928477704524994,
+ "learning_rate": 0.0006,
+ "loss": 4.380367279052734,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.49250566959381104,
+ "learning_rate": 0.0006,
+ "loss": 4.29306697845459,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.48340678215026855,
+ "learning_rate": 0.0006,
+ "loss": 4.2856645584106445,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.4970073401927948,
+ "learning_rate": 0.0006,
+ "loss": 4.34441614151001,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.4387594759464264,
+ "learning_rate": 0.0006,
+ "loss": 4.350798606872559,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.4448535144329071,
+ "learning_rate": 0.0006,
+ "loss": 4.350264072418213,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.4491334855556488,
+ "learning_rate": 0.0006,
+ "loss": 4.310317039489746,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.4396249055862427,
+ "learning_rate": 0.0006,
+ "loss": 4.3137288093566895,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.42331191897392273,
+ "learning_rate": 0.0006,
+ "loss": 4.283992767333984,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.42483261227607727,
+ "learning_rate": 0.0006,
+ "loss": 4.269024848937988,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.40380987524986267,
+ "learning_rate": 0.0006,
+ "loss": 4.321262836456299,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.4109397530555725,
+ "learning_rate": 0.0006,
+ "loss": 4.285927772521973,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.43696823716163635,
+ "learning_rate": 0.0006,
+ "loss": 4.303576946258545,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.379971444606781,
+ "learning_rate": 0.0006,
+ "loss": 4.388635158538818,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.4044286608695984,
+ "learning_rate": 0.0006,
+ "loss": 4.329499244689941,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.4053935706615448,
+ "learning_rate": 0.0006,
+ "loss": 4.297847747802734,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.38198018074035645,
+ "learning_rate": 0.0006,
+ "loss": 4.288124084472656,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.39832696318626404,
+ "learning_rate": 0.0006,
+ "loss": 4.380218982696533,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.40758490562438965,
+ "learning_rate": 0.0006,
+ "loss": 4.32636833190918,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.3803170621395111,
+ "learning_rate": 0.0006,
+ "loss": 4.30747127532959,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.3853742480278015,
+ "learning_rate": 0.0006,
+ "loss": 4.324460029602051,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.4050910174846649,
+ "learning_rate": 0.0006,
+ "loss": 4.306979179382324,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.4187234342098236,
+ "learning_rate": 0.0006,
+ "loss": 4.334494113922119,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.4233380854129791,
+ "learning_rate": 0.0006,
+ "loss": 4.338802814483643,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.4379981458187103,
+ "learning_rate": 0.0006,
+ "loss": 4.399646759033203,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.4394802749156952,
+ "learning_rate": 0.0006,
+ "loss": 4.33521842956543,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.415715754032135,
+ "learning_rate": 0.0006,
+ "loss": 4.3247880935668945,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.3918288052082062,
+ "learning_rate": 0.0006,
+ "loss": 4.329852104187012,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.40957361459732056,
+ "learning_rate": 0.0006,
+ "loss": 4.266562461853027,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.4475722312927246,
+ "learning_rate": 0.0006,
+ "loss": 4.513836860656738,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.44053083658218384,
+ "learning_rate": 0.0006,
+ "loss": 4.305239677429199,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.4229199290275574,
+ "learning_rate": 0.0006,
+ "loss": 4.347291946411133,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.4058760106563568,
+ "learning_rate": 0.0006,
+ "loss": 4.377959251403809,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.4245327115058899,
+ "learning_rate": 0.0006,
+ "loss": 4.363465309143066,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.4446028470993042,
+ "learning_rate": 0.0006,
+ "loss": 4.4517316818237305,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.40111324191093445,
+ "learning_rate": 0.0006,
+ "loss": 4.294158935546875,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.39330703020095825,
+ "learning_rate": 0.0006,
+ "loss": 4.329209327697754,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.4327717423439026,
+ "learning_rate": 0.0006,
+ "loss": 4.349915027618408,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.411691814661026,
+ "learning_rate": 0.0006,
+ "loss": 4.441436290740967,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.39029157161712646,
+ "learning_rate": 0.0006,
+ "loss": 4.339478492736816,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.4064500331878662,
+ "learning_rate": 0.0006,
+ "loss": 4.3008952140808105,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.40196365118026733,
+ "learning_rate": 0.0006,
+ "loss": 4.278536319732666,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.3925584554672241,
+ "learning_rate": 0.0006,
+ "loss": 4.351866722106934,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.37795954942703247,
+ "learning_rate": 0.0006,
+ "loss": 4.40715217590332,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.3920917510986328,
+ "learning_rate": 0.0006,
+ "loss": 4.303398132324219,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.3982515335083008,
+ "learning_rate": 0.0006,
+ "loss": 4.397731304168701,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.41097545623779297,
+ "learning_rate": 0.0006,
+ "loss": 4.372936248779297,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.38546738028526306,
+ "learning_rate": 0.0006,
+ "loss": 4.36802339553833,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.3931894302368164,
+ "learning_rate": 0.0006,
+ "loss": 4.397665023803711,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.37862512469291687,
+ "learning_rate": 0.0006,
+ "loss": 4.356085777282715,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.41227665543556213,
+ "learning_rate": 0.0006,
+ "loss": 4.4159650802612305,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.499416321516037,
+ "learning_rate": 0.0006,
+ "loss": 4.329807281494141,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 6.198739051818848,
+ "eval_runtime": 43.6864,
+ "eval_samples_per_second": 55.898,
+ "eval_steps_per_second": 3.502,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.4628259837627411,
+ "learning_rate": 0.0006,
+ "loss": 4.170797824859619,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.4806155860424042,
+ "learning_rate": 0.0006,
+ "loss": 4.2210259437561035,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.4822350740432739,
+ "learning_rate": 0.0006,
+ "loss": 4.23138952255249,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.286277770996094,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.5044941306114197,
+ "learning_rate": 0.0006,
+ "loss": 4.232921600341797,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.5530663132667542,
+ "learning_rate": 0.0006,
+ "loss": 4.221680641174316,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.5776026844978333,
+ "learning_rate": 0.0006,
+ "loss": 4.213212966918945,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.6634025573730469,
+ "learning_rate": 0.0006,
+ "loss": 4.319071292877197,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.76152503490448,
+ "learning_rate": 0.0006,
+ "loss": 4.214156150817871,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.8480479717254639,
+ "learning_rate": 0.0006,
+ "loss": 4.321653842926025,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.9160254001617432,
+ "learning_rate": 0.0006,
+ "loss": 4.33962869644165,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.8524528741836548,
+ "learning_rate": 0.0006,
+ "loss": 4.268365859985352,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.7075300216674805,
+ "learning_rate": 0.0006,
+ "loss": 4.306760311126709,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.6349018216133118,
+ "learning_rate": 0.0006,
+ "loss": 4.333056926727295,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.5707677006721497,
+ "learning_rate": 0.0006,
+ "loss": 4.32132625579834,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.5484790205955505,
+ "learning_rate": 0.0006,
+ "loss": 4.3016767501831055,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.5517436861991882,
+ "learning_rate": 0.0006,
+ "loss": 4.295352935791016,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.5682413578033447,
+ "learning_rate": 0.0006,
+ "loss": 4.302443504333496,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.5568698644638062,
+ "learning_rate": 0.0006,
+ "loss": 4.328906059265137,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.5146242380142212,
+ "learning_rate": 0.0006,
+ "loss": 4.314318656921387,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.4866996705532074,
+ "learning_rate": 0.0006,
+ "loss": 4.321515083312988,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.47854411602020264,
+ "learning_rate": 0.0006,
+ "loss": 4.336956977844238,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.48322951793670654,
+ "learning_rate": 0.0006,
+ "loss": 4.270317554473877,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.4432683289051056,
+ "learning_rate": 0.0006,
+ "loss": 4.3168792724609375,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.42538025975227356,
+ "learning_rate": 0.0006,
+ "loss": 4.236387729644775,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.4699258804321289,
+ "learning_rate": 0.0006,
+ "loss": 4.372434616088867,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.4574076235294342,
+ "learning_rate": 0.0006,
+ "loss": 4.347474098205566,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.42455345392227173,
+ "learning_rate": 0.0006,
+ "loss": 4.345785140991211,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.4194679260253906,
+ "learning_rate": 0.0006,
+ "loss": 4.326481819152832,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.4357808828353882,
+ "learning_rate": 0.0006,
+ "loss": 4.3457183837890625,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.4160650670528412,
+ "learning_rate": 0.0006,
+ "loss": 4.24708890914917,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.4105308949947357,
+ "learning_rate": 0.0006,
+ "loss": 4.3586530685424805,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.399740993976593,
+ "learning_rate": 0.0006,
+ "loss": 4.352291584014893,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.39557352662086487,
+ "learning_rate": 0.0006,
+ "loss": 4.284960746765137,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.4299493134021759,
+ "learning_rate": 0.0006,
+ "loss": 4.285758018493652,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.4042324721813202,
+ "learning_rate": 0.0006,
+ "loss": 4.357293605804443,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.396954745054245,
+ "learning_rate": 0.0006,
+ "loss": 4.2686262130737305,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.3821943998336792,
+ "learning_rate": 0.0006,
+ "loss": 4.357154846191406,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.3846510648727417,
+ "learning_rate": 0.0006,
+ "loss": 4.323714256286621,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.37851205468177795,
+ "learning_rate": 0.0006,
+ "loss": 4.341939926147461,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.37929001450538635,
+ "learning_rate": 0.0006,
+ "loss": 4.248264312744141,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.3882073163986206,
+ "learning_rate": 0.0006,
+ "loss": 4.307059288024902,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.38127774000167847,
+ "learning_rate": 0.0006,
+ "loss": 4.363462448120117,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.3818758726119995,
+ "learning_rate": 0.0006,
+ "loss": 4.322787284851074,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.389406681060791,
+ "learning_rate": 0.0006,
+ "loss": 4.457492828369141,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.38305217027664185,
+ "learning_rate": 0.0006,
+ "loss": 4.306647300720215,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.3900682032108307,
+ "learning_rate": 0.0006,
+ "loss": 4.331067085266113,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.38036227226257324,
+ "learning_rate": 0.0006,
+ "loss": 4.264892578125,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.39323344826698303,
+ "learning_rate": 0.0006,
+ "loss": 4.365866661071777,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.4049435257911682,
+ "learning_rate": 0.0006,
+ "loss": 4.381568908691406,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.4216940701007843,
+ "learning_rate": 0.0006,
+ "loss": 4.364271640777588,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.42422112822532654,
+ "learning_rate": 0.0006,
+ "loss": 4.400199890136719,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.3819519281387329,
+ "learning_rate": 0.0006,
+ "loss": 4.257974147796631,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.4014202654361725,
+ "learning_rate": 0.0006,
+ "loss": 4.329166889190674,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.39812493324279785,
+ "learning_rate": 0.0006,
+ "loss": 4.372607231140137,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.3916856050491333,
+ "learning_rate": 0.0006,
+ "loss": 4.385530471801758,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.4020134508609772,
+ "learning_rate": 0.0006,
+ "loss": 4.3358330726623535,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.3931422829627991,
+ "learning_rate": 0.0006,
+ "loss": 4.381669521331787,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.37799912691116333,
+ "learning_rate": 0.0006,
+ "loss": 4.392168998718262,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.39257925748825073,
+ "learning_rate": 0.0006,
+ "loss": 4.4379096031188965,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.39501482248306274,
+ "learning_rate": 0.0006,
+ "loss": 4.323174953460693,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.3914605677127838,
+ "learning_rate": 0.0006,
+ "loss": 4.365396022796631,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.3778083026409149,
+ "learning_rate": 0.0006,
+ "loss": 4.3220720291137695,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.3911595344543457,
+ "learning_rate": 0.0006,
+ "loss": 4.323670864105225,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.3692200779914856,
+ "learning_rate": 0.0006,
+ "loss": 4.341980934143066,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.3713432848453522,
+ "learning_rate": 0.0006,
+ "loss": 4.304820537567139,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.37348702549934387,
+ "learning_rate": 0.0006,
+ "loss": 4.326486587524414,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.3943784236907959,
+ "learning_rate": 0.0006,
+ "loss": 4.374529838562012,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.4153553247451782,
+ "learning_rate": 0.0006,
+ "loss": 4.392250061035156,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.3885365426540375,
+ "learning_rate": 0.0006,
+ "loss": 4.322462558746338,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.3777163326740265,
+ "learning_rate": 0.0006,
+ "loss": 4.399444103240967,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.45014286041259766,
+ "learning_rate": 0.0006,
+ "loss": 4.266523361206055,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 6.2529473304748535,
+ "eval_runtime": 43.7478,
+ "eval_samples_per_second": 55.82,
+ "eval_steps_per_second": 3.497,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.4145124852657318,
+ "learning_rate": 0.0006,
+ "loss": 4.266193389892578,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.44340333342552185,
+ "learning_rate": 0.0006,
+ "loss": 4.134491443634033,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.4580900967121124,
+ "learning_rate": 0.0006,
+ "loss": 4.287178993225098,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.47761040925979614,
+ "learning_rate": 0.0006,
+ "loss": 4.429558277130127,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.46682101488113403,
+ "learning_rate": 0.0006,
+ "loss": 4.317314147949219,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.4769667685031891,
+ "learning_rate": 0.0006,
+ "loss": 4.290413856506348,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.539111316204071,
+ "learning_rate": 0.0006,
+ "loss": 4.240926742553711,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.6831890344619751,
+ "learning_rate": 0.0006,
+ "loss": 4.204584121704102,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.749098539352417,
+ "learning_rate": 0.0006,
+ "loss": 4.25895881652832,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.7921332120895386,
+ "learning_rate": 0.0006,
+ "loss": 4.339118003845215,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.7587332725524902,
+ "learning_rate": 0.0006,
+ "loss": 4.2877516746521,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.6472265124320984,
+ "learning_rate": 0.0006,
+ "loss": 4.2839131355285645,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.5472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.346395492553711,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.6083328723907471,
+ "learning_rate": 0.0006,
+ "loss": 4.240531921386719,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.5928010940551758,
+ "learning_rate": 0.0006,
+ "loss": 4.347572326660156,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.532841145992279,
+ "learning_rate": 0.0006,
+ "loss": 4.281345844268799,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.4778757691383362,
+ "learning_rate": 0.0006,
+ "loss": 4.279055118560791,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.48648887872695923,
+ "learning_rate": 0.0006,
+ "loss": 4.198624610900879,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.43191879987716675,
+ "learning_rate": 0.0006,
+ "loss": 4.236109733581543,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.45012032985687256,
+ "learning_rate": 0.0006,
+ "loss": 4.323042869567871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.4548600912094116,
+ "learning_rate": 0.0006,
+ "loss": 4.2210235595703125,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.45999664068222046,
+ "learning_rate": 0.0006,
+ "loss": 4.2899250984191895,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.4702019691467285,
+ "learning_rate": 0.0006,
+ "loss": 4.3281145095825195,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.4921978712081909,
+ "learning_rate": 0.0006,
+ "loss": 4.310947418212891,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.4662175178527832,
+ "learning_rate": 0.0006,
+ "loss": 4.191643714904785,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.46207281947135925,
+ "learning_rate": 0.0006,
+ "loss": 4.423742771148682,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.46523746848106384,
+ "learning_rate": 0.0006,
+ "loss": 4.321560859680176,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.42817118763923645,
+ "learning_rate": 0.0006,
+ "loss": 4.275110244750977,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.4028136134147644,
+ "learning_rate": 0.0006,
+ "loss": 4.26282262802124,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.39602214097976685,
+ "learning_rate": 0.0006,
+ "loss": 4.350768089294434,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.4017263948917389,
+ "learning_rate": 0.0006,
+ "loss": 4.2504682540893555,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.4112628996372223,
+ "learning_rate": 0.0006,
+ "loss": 4.262454986572266,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.44213998317718506,
+ "learning_rate": 0.0006,
+ "loss": 4.33111572265625,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.4273027777671814,
+ "learning_rate": 0.0006,
+ "loss": 4.241754055023193,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.42171111702919006,
+ "learning_rate": 0.0006,
+ "loss": 4.3793134689331055,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.4059634506702423,
+ "learning_rate": 0.0006,
+ "loss": 4.267672538757324,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.40447160601615906,
+ "learning_rate": 0.0006,
+ "loss": 4.282671928405762,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.39427000284194946,
+ "learning_rate": 0.0006,
+ "loss": 4.286433219909668,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.3932870924472809,
+ "learning_rate": 0.0006,
+ "loss": 4.31290340423584,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.37661924958229065,
+ "learning_rate": 0.0006,
+ "loss": 4.262170791625977,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.40946775674819946,
+ "learning_rate": 0.0006,
+ "loss": 4.303168296813965,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.3941985070705414,
+ "learning_rate": 0.0006,
+ "loss": 4.310337066650391,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.40164992213249207,
+ "learning_rate": 0.0006,
+ "loss": 4.312982559204102,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.3975890874862671,
+ "learning_rate": 0.0006,
+ "loss": 4.3248701095581055,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.38574227690696716,
+ "learning_rate": 0.0006,
+ "loss": 4.38369083404541,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.3992249667644501,
+ "learning_rate": 0.0006,
+ "loss": 4.297112464904785,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.39868417382240295,
+ "learning_rate": 0.0006,
+ "loss": 4.295505046844482,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.4101839065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.3519697189331055,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.379717081785202,
+ "learning_rate": 0.0006,
+ "loss": 4.2289581298828125,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.3912242352962494,
+ "learning_rate": 0.0006,
+ "loss": 4.40312385559082,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.3885950446128845,
+ "learning_rate": 0.0006,
+ "loss": 4.286848068237305,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.3892953097820282,
+ "learning_rate": 0.0006,
+ "loss": 4.292012691497803,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.38809701800346375,
+ "learning_rate": 0.0006,
+ "loss": 4.374564170837402,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.3903641700744629,
+ "learning_rate": 0.0006,
+ "loss": 4.394603729248047,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.39104169607162476,
+ "learning_rate": 0.0006,
+ "loss": 4.35471773147583,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.3975231349468231,
+ "learning_rate": 0.0006,
+ "loss": 4.382683753967285,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.40965917706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.367456436157227,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.4243786633014679,
+ "learning_rate": 0.0006,
+ "loss": 4.367887020111084,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.40315696597099304,
+ "learning_rate": 0.0006,
+ "loss": 4.300185203552246,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.41343727707862854,
+ "learning_rate": 0.0006,
+ "loss": 4.331711292266846,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.40250977873802185,
+ "learning_rate": 0.0006,
+ "loss": 4.3398590087890625,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.38862133026123047,
+ "learning_rate": 0.0006,
+ "loss": 4.272953033447266,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.39667993783950806,
+ "learning_rate": 0.0006,
+ "loss": 4.47554874420166,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.41999825835227966,
+ "learning_rate": 0.0006,
+ "loss": 4.263052940368652,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.4195004105567932,
+ "learning_rate": 0.0006,
+ "loss": 4.330724716186523,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.3944961130619049,
+ "learning_rate": 0.0006,
+ "loss": 4.3109002113342285,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.3944008946418762,
+ "learning_rate": 0.0006,
+ "loss": 4.298914432525635,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.4016371965408325,
+ "learning_rate": 0.0006,
+ "loss": 4.346005439758301,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.38281115889549255,
+ "learning_rate": 0.0006,
+ "loss": 4.332263946533203,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.36780816316604614,
+ "learning_rate": 0.0006,
+ "loss": 4.356542587280273,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.37247809767723083,
+ "learning_rate": 0.0006,
+ "loss": 4.244487285614014,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.4414741098880768,
+ "learning_rate": 0.0006,
+ "loss": 4.326817035675049,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 6.229246616363525,
+ "eval_runtime": 43.7873,
+ "eval_samples_per_second": 55.77,
+ "eval_steps_per_second": 3.494,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.3957669138908386,
+ "learning_rate": 0.0006,
+ "loss": 4.263937950134277,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.4236466586589813,
+ "learning_rate": 0.0006,
+ "loss": 4.222219467163086,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.47564026713371277,
+ "learning_rate": 0.0006,
+ "loss": 4.266385555267334,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.5004186630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.262574195861816,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.592176616191864,
+ "learning_rate": 0.0006,
+ "loss": 4.225201606750488,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.7019115090370178,
+ "learning_rate": 0.0006,
+ "loss": 4.23977518081665,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.8254161477088928,
+ "learning_rate": 0.0006,
+ "loss": 4.227803707122803,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.8682525753974915,
+ "learning_rate": 0.0006,
+ "loss": 4.321664810180664,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.9065311551094055,
+ "learning_rate": 0.0006,
+ "loss": 4.253820419311523,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.8974156975746155,
+ "learning_rate": 0.0006,
+ "loss": 4.3650312423706055,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.7837588787078857,
+ "learning_rate": 0.0006,
+ "loss": 4.283933639526367,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.7024438381195068,
+ "learning_rate": 0.0006,
+ "loss": 4.258434772491455,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.625393271446228,
+ "learning_rate": 0.0006,
+ "loss": 4.23687744140625,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.5788878202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.234710693359375,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.5580928325653076,
+ "learning_rate": 0.0006,
+ "loss": 4.29906702041626,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.48748156428337097,
+ "learning_rate": 0.0006,
+ "loss": 4.226408958435059,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.4848710298538208,
+ "learning_rate": 0.0006,
+ "loss": 4.2123122215271,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.5063420534133911,
+ "learning_rate": 0.0006,
+ "loss": 4.255153656005859,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.5110829472541809,
+ "learning_rate": 0.0006,
+ "loss": 4.358216285705566,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.49089232087135315,
+ "learning_rate": 0.0006,
+ "loss": 4.300388813018799,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.4603854715824127,
+ "learning_rate": 0.0006,
+ "loss": 4.2832136154174805,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.4599403440952301,
+ "learning_rate": 0.0006,
+ "loss": 4.295095443725586,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.4395982623100281,
+ "learning_rate": 0.0006,
+ "loss": 4.26538610458374,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.41270455718040466,
+ "learning_rate": 0.0006,
+ "loss": 4.2344889640808105,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.42688557505607605,
+ "learning_rate": 0.0006,
+ "loss": 4.207379341125488,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.4363268315792084,
+ "learning_rate": 0.0006,
+ "loss": 4.30502462387085,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.42514753341674805,
+ "learning_rate": 0.0006,
+ "loss": 4.3195905685424805,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.3887978494167328,
+ "learning_rate": 0.0006,
+ "loss": 4.23016357421875,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.39444148540496826,
+ "learning_rate": 0.0006,
+ "loss": 4.265226364135742,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.41804856061935425,
+ "learning_rate": 0.0006,
+ "loss": 4.399003028869629,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.4026116132736206,
+ "learning_rate": 0.0006,
+ "loss": 4.356629371643066,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.4023478329181671,
+ "learning_rate": 0.0006,
+ "loss": 4.379050254821777,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.39880287647247314,
+ "learning_rate": 0.0006,
+ "loss": 4.277581214904785,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.38926973938941956,
+ "learning_rate": 0.0006,
+ "loss": 4.2318902015686035,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.3924587368965149,
+ "learning_rate": 0.0006,
+ "loss": 4.329956531524658,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.40522003173828125,
+ "learning_rate": 0.0006,
+ "loss": 4.315302848815918,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.3916785418987274,
+ "learning_rate": 0.0006,
+ "loss": 4.319087505340576,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.419207364320755,
+ "learning_rate": 0.0006,
+ "loss": 4.373052597045898,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.3973175287246704,
+ "learning_rate": 0.0006,
+ "loss": 4.323544025421143,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.37236395478248596,
+ "learning_rate": 0.0006,
+ "loss": 4.206120491027832,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.385455846786499,
+ "learning_rate": 0.0006,
+ "loss": 4.294527053833008,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.3870242238044739,
+ "learning_rate": 0.0006,
+ "loss": 4.221030235290527,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.3881280720233917,
+ "learning_rate": 0.0006,
+ "loss": 4.233551025390625,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.3722829818725586,
+ "learning_rate": 0.0006,
+ "loss": 4.257683277130127,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.375012069940567,
+ "learning_rate": 0.0006,
+ "loss": 4.350418567657471,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.38077789545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.192095756530762,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.3906152844429016,
+ "learning_rate": 0.0006,
+ "loss": 4.357870578765869,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.3887590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.318536281585693,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.3828654885292053,
+ "learning_rate": 0.0006,
+ "loss": 4.28328800201416,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.39694708585739136,
+ "learning_rate": 0.0006,
+ "loss": 4.391949653625488,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.3975147604942322,
+ "learning_rate": 0.0006,
+ "loss": 4.352961540222168,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.3841004967689514,
+ "learning_rate": 0.0006,
+ "loss": 4.228391647338867,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.3807359039783478,
+ "learning_rate": 0.0006,
+ "loss": 4.22756290435791,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.3987439274787903,
+ "learning_rate": 0.0006,
+ "loss": 4.407889366149902,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.4201034605503082,
+ "learning_rate": 0.0006,
+ "loss": 4.34971809387207,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.4346381723880768,
+ "learning_rate": 0.0006,
+ "loss": 4.293330192565918,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.44999462366104126,
+ "learning_rate": 0.0006,
+ "loss": 4.417044162750244,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.38561612367630005,
+ "learning_rate": 0.0006,
+ "loss": 4.258061408996582,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.3790895938873291,
+ "learning_rate": 0.0006,
+ "loss": 4.321300029754639,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.3984527289867401,
+ "learning_rate": 0.0006,
+ "loss": 4.247694969177246,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.42955538630485535,
+ "learning_rate": 0.0006,
+ "loss": 4.343568325042725,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.40776535868644714,
+ "learning_rate": 0.0006,
+ "loss": 4.34933614730835,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.39172181487083435,
+ "learning_rate": 0.0006,
+ "loss": 4.379310607910156,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.40323659777641296,
+ "learning_rate": 0.0006,
+ "loss": 4.268922805786133,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.4012514352798462,
+ "learning_rate": 0.0006,
+ "loss": 4.363704681396484,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.39983171224594116,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.39482736587524414,
+ "learning_rate": 0.0006,
+ "loss": 4.338078022003174,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.40444278717041016,
+ "learning_rate": 0.0006,
+ "loss": 4.373770713806152,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.3808857500553131,
+ "learning_rate": 0.0006,
+ "loss": 4.326850891113281,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.38284221291542053,
+ "learning_rate": 0.0006,
+ "loss": 4.389925956726074,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.3825092613697052,
+ "learning_rate": 0.0006,
+ "loss": 4.389588356018066,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.4557396471500397,
+ "learning_rate": 0.0006,
+ "loss": 4.302459239959717,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 6.270473480224609,
+ "eval_runtime": 43.6892,
+ "eval_samples_per_second": 55.895,
+ "eval_steps_per_second": 3.502,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.4212155044078827,
+ "learning_rate": 0.0006,
+ "loss": 4.3081440925598145,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.4590097963809967,
+ "learning_rate": 0.0006,
+ "loss": 4.150710582733154,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.4502851963043213,
+ "learning_rate": 0.0006,
+ "loss": 4.238507270812988,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.44205573201179504,
+ "learning_rate": 0.0006,
+ "loss": 4.202637672424316,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.5142990946769714,
+ "learning_rate": 0.0006,
+ "loss": 4.325977325439453,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.5224044919013977,
+ "learning_rate": 0.0006,
+ "loss": 4.265192031860352,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.5608325004577637,
+ "learning_rate": 0.0006,
+ "loss": 4.295414924621582,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.6955265402793884,
+ "learning_rate": 0.0006,
+ "loss": 4.218759536743164,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.868670642375946,
+ "learning_rate": 0.0006,
+ "loss": 4.220717430114746,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 1.0042238235473633,
+ "learning_rate": 0.0006,
+ "loss": 4.290093421936035,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.9413097500801086,
+ "learning_rate": 0.0006,
+ "loss": 4.324940204620361,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.697178304195404,
+ "learning_rate": 0.0006,
+ "loss": 4.301477909088135,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.7008699774742126,
+ "learning_rate": 0.0006,
+ "loss": 4.2905120849609375,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.6534171104431152,
+ "learning_rate": 0.0006,
+ "loss": 4.20712947845459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.6290929317474365,
+ "learning_rate": 0.0006,
+ "loss": 4.229743003845215,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.5494177341461182,
+ "learning_rate": 0.0006,
+ "loss": 4.185794353485107,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.5147525072097778,
+ "learning_rate": 0.0006,
+ "loss": 4.26673698425293,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.5048599243164062,
+ "learning_rate": 0.0006,
+ "loss": 4.210233211517334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.5414654016494751,
+ "learning_rate": 0.0006,
+ "loss": 4.333046913146973,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.47082704305648804,
+ "learning_rate": 0.0006,
+ "loss": 4.301358699798584,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.4675837755203247,
+ "learning_rate": 0.0006,
+ "loss": 4.204195022583008,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.4378611743450165,
+ "learning_rate": 0.0006,
+ "loss": 4.155127048492432,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.4415567219257355,
+ "learning_rate": 0.0006,
+ "loss": 4.2721967697143555,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.47591230273246765,
+ "learning_rate": 0.0006,
+ "loss": 4.358033180236816,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.4658828675746918,
+ "learning_rate": 0.0006,
+ "loss": 4.294735908508301,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.4501555860042572,
+ "learning_rate": 0.0006,
+ "loss": 4.263189315795898,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.46739140152931213,
+ "learning_rate": 0.0006,
+ "loss": 4.32848596572876,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.45165732502937317,
+ "learning_rate": 0.0006,
+ "loss": 4.267234802246094,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.409282922744751,
+ "learning_rate": 0.0006,
+ "loss": 4.285059928894043,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.42865875363349915,
+ "learning_rate": 0.0006,
+ "loss": 4.227115631103516,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.4552954137325287,
+ "learning_rate": 0.0006,
+ "loss": 4.325474739074707,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.42055317759513855,
+ "learning_rate": 0.0006,
+ "loss": 4.2007951736450195,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.4279162287712097,
+ "learning_rate": 0.0006,
+ "loss": 4.359176158905029,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.4455033540725708,
+ "learning_rate": 0.0006,
+ "loss": 4.275487899780273,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.43002691864967346,
+ "learning_rate": 0.0006,
+ "loss": 4.181482315063477,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.44032880663871765,
+ "learning_rate": 0.0006,
+ "loss": 4.36613655090332,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.4100615680217743,
+ "learning_rate": 0.0006,
+ "loss": 4.265050411224365,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.39392155408859253,
+ "learning_rate": 0.0006,
+ "loss": 4.325000762939453,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.4347812533378601,
+ "learning_rate": 0.0006,
+ "loss": 4.307058334350586,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.42177414894104004,
+ "learning_rate": 0.0006,
+ "loss": 4.270357131958008,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.431207537651062,
+ "learning_rate": 0.0006,
+ "loss": 4.414610862731934,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.4254903495311737,
+ "learning_rate": 0.0006,
+ "loss": 4.285326957702637,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.4089864194393158,
+ "learning_rate": 0.0006,
+ "loss": 4.275937080383301,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.4102814197540283,
+ "learning_rate": 0.0006,
+ "loss": 4.303900718688965,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.3859243094921112,
+ "learning_rate": 0.0006,
+ "loss": 4.215274333953857,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.4012472331523895,
+ "learning_rate": 0.0006,
+ "loss": 4.328278541564941,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.4047054648399353,
+ "learning_rate": 0.0006,
+ "loss": 4.276683807373047,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.4050472676753998,
+ "learning_rate": 0.0006,
+ "loss": 4.302199363708496,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.40645819902420044,
+ "learning_rate": 0.0006,
+ "loss": 4.401165008544922,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.3888589143753052,
+ "learning_rate": 0.0006,
+ "loss": 4.258542060852051,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.3865634500980377,
+ "learning_rate": 0.0006,
+ "loss": 4.224770545959473,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.40157631039619446,
+ "learning_rate": 0.0006,
+ "loss": 4.321439743041992,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.4097841680049896,
+ "learning_rate": 0.0006,
+ "loss": 4.436502456665039,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.4125346541404724,
+ "learning_rate": 0.0006,
+ "loss": 4.3067522048950195,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.39692872762680054,
+ "learning_rate": 0.0006,
+ "loss": 4.338959693908691,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.3942561149597168,
+ "learning_rate": 0.0006,
+ "loss": 4.29915714263916,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.3940109610557556,
+ "learning_rate": 0.0006,
+ "loss": 4.343454360961914,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.39725086092948914,
+ "learning_rate": 0.0006,
+ "loss": 4.294066429138184,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.3779081702232361,
+ "learning_rate": 0.0006,
+ "loss": 4.2644758224487305,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.37665313482284546,
+ "learning_rate": 0.0006,
+ "loss": 4.3241119384765625,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.394426167011261,
+ "learning_rate": 0.0006,
+ "loss": 4.391383647918701,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.3948868215084076,
+ "learning_rate": 0.0006,
+ "loss": 4.336596965789795,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.4218588173389435,
+ "learning_rate": 0.0006,
+ "loss": 4.268021583557129,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.3900219202041626,
+ "learning_rate": 0.0006,
+ "loss": 4.323431015014648,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.3683486580848694,
+ "learning_rate": 0.0006,
+ "loss": 4.283624649047852,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.3842235803604126,
+ "learning_rate": 0.0006,
+ "loss": 4.302942752838135,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.40175142884254456,
+ "learning_rate": 0.0006,
+ "loss": 4.394964218139648,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.4041447639465332,
+ "learning_rate": 0.0006,
+ "loss": 4.355955600738525,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.38710159063339233,
+ "learning_rate": 0.0006,
+ "loss": 4.340442180633545,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.38841989636421204,
+ "learning_rate": 0.0006,
+ "loss": 4.380399703979492,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.41300448775291443,
+ "learning_rate": 0.0006,
+ "loss": 4.321839332580566,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.49495911598205566,
+ "learning_rate": 0.0006,
+ "loss": 4.293513774871826,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 6.327922344207764,
+ "eval_runtime": 43.7769,
+ "eval_samples_per_second": 55.783,
+ "eval_steps_per_second": 3.495,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.4602355659008026,
+ "learning_rate": 0.0006,
+ "loss": 4.2585554122924805,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.4733062982559204,
+ "learning_rate": 0.0006,
+ "loss": 4.237922191619873,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.4390600025653839,
+ "learning_rate": 0.0006,
+ "loss": 4.159769058227539,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.44887402653694153,
+ "learning_rate": 0.0006,
+ "loss": 4.2117743492126465,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.4746656119823456,
+ "learning_rate": 0.0006,
+ "loss": 4.22344446182251,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.4502047598361969,
+ "learning_rate": 0.0006,
+ "loss": 4.179043769836426,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.4669528603553772,
+ "learning_rate": 0.0006,
+ "loss": 4.242807388305664,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.48304441571235657,
+ "learning_rate": 0.0006,
+ "loss": 4.243523597717285,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.4745117425918579,
+ "learning_rate": 0.0006,
+ "loss": 4.271031856536865,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.42403295636177063,
+ "learning_rate": 0.0006,
+ "loss": 4.231593132019043,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.4177025556564331,
+ "learning_rate": 0.0006,
+ "loss": 4.1239848136901855,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.44315826892852783,
+ "learning_rate": 0.0006,
+ "loss": 4.293359279632568,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.4518056809902191,
+ "learning_rate": 0.0006,
+ "loss": 4.238755226135254,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.4481995701789856,
+ "learning_rate": 0.0006,
+ "loss": 4.10948371887207,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.4367348253726959,
+ "learning_rate": 0.0006,
+ "loss": 4.289554595947266,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.41825398802757263,
+ "learning_rate": 0.0006,
+ "loss": 4.201297760009766,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.4390457570552826,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.4219510853290558,
+ "learning_rate": 0.0006,
+ "loss": 4.234352111816406,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.4195581078529358,
+ "learning_rate": 0.0006,
+ "loss": 4.213441371917725,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.4425918459892273,
+ "learning_rate": 0.0006,
+ "loss": 4.268826007843018,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.4734676778316498,
+ "learning_rate": 0.0006,
+ "loss": 4.266847610473633,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.48404407501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.241931915283203,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.4946669936180115,
+ "learning_rate": 0.0006,
+ "loss": 4.250909805297852,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.47972625494003296,
+ "learning_rate": 0.0006,
+ "loss": 4.195961952209473,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.4569213390350342,
+ "learning_rate": 0.0006,
+ "loss": 4.296036720275879,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.4644681215286255,
+ "learning_rate": 0.0006,
+ "loss": 4.216559410095215,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.48317641019821167,
+ "learning_rate": 0.0006,
+ "loss": 4.3226318359375,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.5122473835945129,
+ "learning_rate": 0.0006,
+ "loss": 4.366876602172852,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.5485180020332336,
+ "learning_rate": 0.0006,
+ "loss": 4.2639265060424805,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.5493056774139404,
+ "learning_rate": 0.0006,
+ "loss": 4.315012454986572,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.5442193150520325,
+ "learning_rate": 0.0006,
+ "loss": 4.293516159057617,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.5160698294639587,
+ "learning_rate": 0.0006,
+ "loss": 4.203614234924316,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.4583905041217804,
+ "learning_rate": 0.0006,
+ "loss": 4.204253673553467,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.47937676310539246,
+ "learning_rate": 0.0006,
+ "loss": 4.225821495056152,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.4585326611995697,
+ "learning_rate": 0.0006,
+ "loss": 4.27936315536499,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.4224967658519745,
+ "learning_rate": 0.0006,
+ "loss": 4.396998405456543,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.43489396572113037,
+ "learning_rate": 0.0006,
+ "loss": 4.321684837341309,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.43469369411468506,
+ "learning_rate": 0.0006,
+ "loss": 4.333868980407715,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.4171457588672638,
+ "learning_rate": 0.0006,
+ "loss": 4.212692737579346,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.40925848484039307,
+ "learning_rate": 0.0006,
+ "loss": 4.354894638061523,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.42900922894477844,
+ "learning_rate": 0.0006,
+ "loss": 4.309920310974121,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.42338159680366516,
+ "learning_rate": 0.0006,
+ "loss": 4.2942705154418945,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.4057067930698395,
+ "learning_rate": 0.0006,
+ "loss": 4.214710235595703,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.4072226583957672,
+ "learning_rate": 0.0006,
+ "loss": 4.312472343444824,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.3916485905647278,
+ "learning_rate": 0.0006,
+ "loss": 4.237615585327148,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.42151209712028503,
+ "learning_rate": 0.0006,
+ "loss": 4.377703666687012,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.44910693168640137,
+ "learning_rate": 0.0006,
+ "loss": 4.425722122192383,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.46527767181396484,
+ "learning_rate": 0.0006,
+ "loss": 4.26363468170166,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.45423775911331177,
+ "learning_rate": 0.0006,
+ "loss": 4.219768047332764,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.4229055345058441,
+ "learning_rate": 0.0006,
+ "loss": 4.2751007080078125,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.4136784076690674,
+ "learning_rate": 0.0006,
+ "loss": 4.256582736968994,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.42408230900764465,
+ "learning_rate": 0.0006,
+ "loss": 4.341879844665527,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.4360068142414093,
+ "learning_rate": 0.0006,
+ "loss": 4.2564802169799805,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.4251601994037628,
+ "learning_rate": 0.0006,
+ "loss": 4.370902061462402,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.4240182936191559,
+ "learning_rate": 0.0006,
+ "loss": 4.357310771942139,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.40821802616119385,
+ "learning_rate": 0.0006,
+ "loss": 4.299274444580078,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.42971381545066833,
+ "learning_rate": 0.0006,
+ "loss": 4.339339256286621,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.4170750677585602,
+ "learning_rate": 0.0006,
+ "loss": 4.295743942260742,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.4416576027870178,
+ "learning_rate": 0.0006,
+ "loss": 4.31326961517334,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.43994101881980896,
+ "learning_rate": 0.0006,
+ "loss": 4.286459922790527,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.43738171458244324,
+ "learning_rate": 0.0006,
+ "loss": 4.3276166915893555,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.42107513546943665,
+ "learning_rate": 0.0006,
+ "loss": 4.276320457458496,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.4138924479484558,
+ "learning_rate": 0.0006,
+ "loss": 4.263800621032715,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.4136491119861603,
+ "learning_rate": 0.0006,
+ "loss": 4.3641462326049805,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.4299047291278839,
+ "learning_rate": 0.0006,
+ "loss": 4.395074844360352,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.4680858552455902,
+ "learning_rate": 0.0006,
+ "loss": 4.29918098449707,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.5115722417831421,
+ "learning_rate": 0.0006,
+ "loss": 4.317390441894531,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.49535948038101196,
+ "learning_rate": 0.0006,
+ "loss": 4.311214447021484,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.44336947798728943,
+ "learning_rate": 0.0006,
+ "loss": 4.410158157348633,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.41606271266937256,
+ "learning_rate": 0.0006,
+ "loss": 4.303007125854492,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.3919375538825989,
+ "learning_rate": 0.0006,
+ "loss": 4.271506309509277,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.4847380518913269,
+ "learning_rate": 0.0006,
+ "loss": 4.368446350097656,
+ "step": 5760
+ },
+ {
+ "epoch": 80.0,
+ "eval_loss": 6.289350509643555,
+ "eval_runtime": 43.7865,
+ "eval_samples_per_second": 55.771,
+ "eval_steps_per_second": 3.494,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.4189201593399048,
+ "learning_rate": 0.0006,
+ "loss": 4.182366847991943,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.4759898781776428,
+ "learning_rate": 0.0006,
+ "loss": 4.19309139251709,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.527441680431366,
+ "learning_rate": 0.0006,
+ "loss": 4.219327926635742,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.519743025302887,
+ "learning_rate": 0.0006,
+ "loss": 4.141674995422363,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.4941118657588959,
+ "learning_rate": 0.0006,
+ "loss": 4.151315212249756,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.5262619256973267,
+ "learning_rate": 0.0006,
+ "loss": 4.181960105895996,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.6155849099159241,
+ "learning_rate": 0.0006,
+ "loss": 4.21251106262207,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.7172285914421082,
+ "learning_rate": 0.0006,
+ "loss": 4.233085632324219,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.7969664931297302,
+ "learning_rate": 0.0006,
+ "loss": 4.231586933135986,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.7671365141868591,
+ "learning_rate": 0.0006,
+ "loss": 4.288948059082031,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.6886342167854309,
+ "learning_rate": 0.0006,
+ "loss": 4.186882495880127,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.613745927810669,
+ "learning_rate": 0.0006,
+ "loss": 4.22116756439209,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.6049351096153259,
+ "learning_rate": 0.0006,
+ "loss": 4.247993469238281,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.5160547494888306,
+ "learning_rate": 0.0006,
+ "loss": 4.230243682861328,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.5072378516197205,
+ "learning_rate": 0.0006,
+ "loss": 4.1789140701293945,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.5201945304870605,
+ "learning_rate": 0.0006,
+ "loss": 4.2888031005859375,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.5084741711616516,
+ "learning_rate": 0.0006,
+ "loss": 4.204905986785889,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.45192697644233704,
+ "learning_rate": 0.0006,
+ "loss": 4.273176193237305,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.4638829827308655,
+ "learning_rate": 0.0006,
+ "loss": 4.276776313781738,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.5091138482093811,
+ "learning_rate": 0.0006,
+ "loss": 4.20111083984375,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.5181353092193604,
+ "learning_rate": 0.0006,
+ "loss": 4.270737648010254,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.4666393995285034,
+ "learning_rate": 0.0006,
+ "loss": 4.220527648925781,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.4459801912307739,
+ "learning_rate": 0.0006,
+ "loss": 4.246898651123047,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.44209161400794983,
+ "learning_rate": 0.0006,
+ "loss": 4.2897796630859375,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.44252556562423706,
+ "learning_rate": 0.0006,
+ "loss": 4.31494665145874,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.43231600522994995,
+ "learning_rate": 0.0006,
+ "loss": 4.341650009155273,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.4496018886566162,
+ "learning_rate": 0.0006,
+ "loss": 4.222264766693115,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.41425642371177673,
+ "learning_rate": 0.0006,
+ "loss": 4.258854866027832,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.4198642671108246,
+ "learning_rate": 0.0006,
+ "loss": 4.286402225494385,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.4175935387611389,
+ "learning_rate": 0.0006,
+ "loss": 4.329756736755371,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.42901840806007385,
+ "learning_rate": 0.0006,
+ "loss": 4.2249555587768555,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.41729676723480225,
+ "learning_rate": 0.0006,
+ "loss": 4.25307559967041,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.44785404205322266,
+ "learning_rate": 0.0006,
+ "loss": 4.279146194458008,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.45788508653640747,
+ "learning_rate": 0.0006,
+ "loss": 4.185768127441406,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.4351639747619629,
+ "learning_rate": 0.0006,
+ "loss": 4.20334529876709,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.41771501302719116,
+ "learning_rate": 0.0006,
+ "loss": 4.2551493644714355,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.41627222299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.277044296264648,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.44212380051612854,
+ "learning_rate": 0.0006,
+ "loss": 4.225511074066162,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.38782668113708496,
+ "learning_rate": 0.0006,
+ "loss": 4.245084762573242,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.3984670341014862,
+ "learning_rate": 0.0006,
+ "loss": 4.318271160125732,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.3934188783168793,
+ "learning_rate": 0.0006,
+ "loss": 4.2478485107421875,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.38275960087776184,
+ "learning_rate": 0.0006,
+ "loss": 4.166913032531738,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.4073631465435028,
+ "learning_rate": 0.0006,
+ "loss": 4.325770378112793,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.40767619013786316,
+ "learning_rate": 0.0006,
+ "loss": 4.337563514709473,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.4344850778579712,
+ "learning_rate": 0.0006,
+ "loss": 4.339216709136963,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.4321129024028778,
+ "learning_rate": 0.0006,
+ "loss": 4.251045227050781,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.42891228199005127,
+ "learning_rate": 0.0006,
+ "loss": 4.339747428894043,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.430338054895401,
+ "learning_rate": 0.0006,
+ "loss": 4.290801525115967,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.44881945848464966,
+ "learning_rate": 0.0006,
+ "loss": 4.290616989135742,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.41193726658821106,
+ "learning_rate": 0.0006,
+ "loss": 4.178008079528809,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.3986659348011017,
+ "learning_rate": 0.0006,
+ "loss": 4.24334716796875,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.4000692665576935,
+ "learning_rate": 0.0006,
+ "loss": 4.273529052734375,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.4126340448856354,
+ "learning_rate": 0.0006,
+ "loss": 4.316381454467773,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.3987399935722351,
+ "learning_rate": 0.0006,
+ "loss": 4.253186225891113,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.3934975564479828,
+ "learning_rate": 0.0006,
+ "loss": 4.316921234130859,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.39915889501571655,
+ "learning_rate": 0.0006,
+ "loss": 4.304752349853516,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.4130222499370575,
+ "learning_rate": 0.0006,
+ "loss": 4.325786590576172,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.42784422636032104,
+ "learning_rate": 0.0006,
+ "loss": 4.316120624542236,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.4270218312740326,
+ "learning_rate": 0.0006,
+ "loss": 4.3773698806762695,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.4531627297401428,
+ "learning_rate": 0.0006,
+ "loss": 4.291565418243408,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.43761077523231506,
+ "learning_rate": 0.0006,
+ "loss": 4.318550109863281,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.43666771054267883,
+ "learning_rate": 0.0006,
+ "loss": 4.310146331787109,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.41557514667510986,
+ "learning_rate": 0.0006,
+ "loss": 4.278397083282471,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.3992885649204254,
+ "learning_rate": 0.0006,
+ "loss": 4.330907821655273,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.41442859172821045,
+ "learning_rate": 0.0006,
+ "loss": 4.380483627319336,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.42367640137672424,
+ "learning_rate": 0.0006,
+ "loss": 4.370355129241943,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.4104510247707367,
+ "learning_rate": 0.0006,
+ "loss": 4.243627548217773,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.4377829134464264,
+ "learning_rate": 0.0006,
+ "loss": 4.434067726135254,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.44119682908058167,
+ "learning_rate": 0.0006,
+ "loss": 4.379904747009277,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.4018053114414215,
+ "learning_rate": 0.0006,
+ "loss": 4.286595344543457,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.4040871560573578,
+ "learning_rate": 0.0006,
+ "loss": 4.337483882904053,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.4790824055671692,
+ "learning_rate": 0.0006,
+ "loss": 4.364114761352539,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 6.3435444831848145,
+ "eval_runtime": 43.8507,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.447443425655365,
+ "learning_rate": 0.0006,
+ "loss": 4.273200988769531,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.4924955368041992,
+ "learning_rate": 0.0006,
+ "loss": 4.222320079803467,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.6066558957099915,
+ "learning_rate": 0.0006,
+ "loss": 4.145882606506348,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.7758402824401855,
+ "learning_rate": 0.0006,
+ "loss": 4.182838439941406,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 1.005454659461975,
+ "learning_rate": 0.0006,
+ "loss": 4.156442642211914,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 1.1113026142120361,
+ "learning_rate": 0.0006,
+ "loss": 4.239047050476074,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.7954476475715637,
+ "learning_rate": 0.0006,
+ "loss": 4.231141090393066,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.7038424611091614,
+ "learning_rate": 0.0006,
+ "loss": 4.308542728424072,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.6864593029022217,
+ "learning_rate": 0.0006,
+ "loss": 4.214676380157471,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.6193567514419556,
+ "learning_rate": 0.0006,
+ "loss": 4.243054389953613,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.6326499581336975,
+ "learning_rate": 0.0006,
+ "loss": 4.307093143463135,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.633601725101471,
+ "learning_rate": 0.0006,
+ "loss": 4.28586483001709,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.5711596012115479,
+ "learning_rate": 0.0006,
+ "loss": 4.190366744995117,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.582478404045105,
+ "learning_rate": 0.0006,
+ "loss": 4.243340492248535,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.5870423316955566,
+ "learning_rate": 0.0006,
+ "loss": 4.330052852630615,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.5572404265403748,
+ "learning_rate": 0.0006,
+ "loss": 4.221210956573486,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.48703816533088684,
+ "learning_rate": 0.0006,
+ "loss": 4.246015548706055,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.4946155548095703,
+ "learning_rate": 0.0006,
+ "loss": 4.203368186950684,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.48104000091552734,
+ "learning_rate": 0.0006,
+ "loss": 4.195788383483887,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.4884639382362366,
+ "learning_rate": 0.0006,
+ "loss": 4.246498107910156,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.46171557903289795,
+ "learning_rate": 0.0006,
+ "loss": 4.271712779998779,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.4299808740615845,
+ "learning_rate": 0.0006,
+ "loss": 4.2654619216918945,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.4515123963356018,
+ "learning_rate": 0.0006,
+ "loss": 4.270195960998535,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.4448329210281372,
+ "learning_rate": 0.0006,
+ "loss": 4.295469284057617,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.43523281812667847,
+ "learning_rate": 0.0006,
+ "loss": 4.234511375427246,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.4352431893348694,
+ "learning_rate": 0.0006,
+ "loss": 4.27800178527832,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.43417713046073914,
+ "learning_rate": 0.0006,
+ "loss": 4.291177749633789,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.4469117224216461,
+ "learning_rate": 0.0006,
+ "loss": 4.273797512054443,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.40459394454956055,
+ "learning_rate": 0.0006,
+ "loss": 4.160533428192139,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.37974515557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.165892124176025,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.4303241968154907,
+ "learning_rate": 0.0006,
+ "loss": 4.261228561401367,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.4212931990623474,
+ "learning_rate": 0.0006,
+ "loss": 4.186488628387451,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.39888855814933777,
+ "learning_rate": 0.0006,
+ "loss": 4.256392955780029,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.4147864282131195,
+ "learning_rate": 0.0006,
+ "loss": 4.285519599914551,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.4054912328720093,
+ "learning_rate": 0.0006,
+ "loss": 4.235527038574219,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.3942243158817291,
+ "learning_rate": 0.0006,
+ "loss": 4.235358715057373,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.3859952390193939,
+ "learning_rate": 0.0006,
+ "loss": 4.178792476654053,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.3996407389640808,
+ "learning_rate": 0.0006,
+ "loss": 4.332685470581055,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.3997543156147003,
+ "learning_rate": 0.0006,
+ "loss": 4.172628879547119,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.40761199593544006,
+ "learning_rate": 0.0006,
+ "loss": 4.25240421295166,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.4187498986721039,
+ "learning_rate": 0.0006,
+ "loss": 4.23222541809082,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.39432984590530396,
+ "learning_rate": 0.0006,
+ "loss": 4.1483025550842285,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.4413979947566986,
+ "learning_rate": 0.0006,
+ "loss": 4.262289524078369,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.4385976791381836,
+ "learning_rate": 0.0006,
+ "loss": 4.160347938537598,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.4254113733768463,
+ "learning_rate": 0.0006,
+ "loss": 4.235913276672363,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.40139102935791016,
+ "learning_rate": 0.0006,
+ "loss": 4.338469505310059,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.41311147809028625,
+ "learning_rate": 0.0006,
+ "loss": 4.259404182434082,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.41248565912246704,
+ "learning_rate": 0.0006,
+ "loss": 4.311250686645508,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.43279120326042175,
+ "learning_rate": 0.0006,
+ "loss": 4.352819919586182,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.4341239035129547,
+ "learning_rate": 0.0006,
+ "loss": 4.201631546020508,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.42909830808639526,
+ "learning_rate": 0.0006,
+ "loss": 4.250114440917969,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.4029415249824524,
+ "learning_rate": 0.0006,
+ "loss": 4.280141830444336,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.4094693660736084,
+ "learning_rate": 0.0006,
+ "loss": 4.245151519775391,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.4380780756473541,
+ "learning_rate": 0.0006,
+ "loss": 4.369032859802246,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.46046847105026245,
+ "learning_rate": 0.0006,
+ "loss": 4.357504844665527,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.47439682483673096,
+ "learning_rate": 0.0006,
+ "loss": 4.28305721282959,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.44236937165260315,
+ "learning_rate": 0.0006,
+ "loss": 4.242401599884033,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.4143677353858948,
+ "learning_rate": 0.0006,
+ "loss": 4.362359046936035,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.4057272970676422,
+ "learning_rate": 0.0006,
+ "loss": 4.30042028427124,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.4250582456588745,
+ "learning_rate": 0.0006,
+ "loss": 4.2771711349487305,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.426998108625412,
+ "learning_rate": 0.0006,
+ "loss": 4.280099391937256,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.4197818636894226,
+ "learning_rate": 0.0006,
+ "loss": 4.342541694641113,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.412741094827652,
+ "learning_rate": 0.0006,
+ "loss": 4.25786828994751,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.4071856737136841,
+ "learning_rate": 0.0006,
+ "loss": 4.214151382446289,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.41681522130966187,
+ "learning_rate": 0.0006,
+ "loss": 4.318428039550781,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.4144262373447418,
+ "learning_rate": 0.0006,
+ "loss": 4.37365198135376,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.3930285573005676,
+ "learning_rate": 0.0006,
+ "loss": 4.281595230102539,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.40847325325012207,
+ "learning_rate": 0.0006,
+ "loss": 4.326107978820801,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.4196723997592926,
+ "learning_rate": 0.0006,
+ "loss": 4.267861366271973,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.4259124994277954,
+ "learning_rate": 0.0006,
+ "loss": 4.370932579040527,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.3915783166885376,
+ "learning_rate": 0.0006,
+ "loss": 4.19312047958374,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.45746830105781555,
+ "learning_rate": 0.0006,
+ "loss": 4.177214622497559,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 6.357029914855957,
+ "eval_runtime": 43.7795,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.41968968510627747,
+ "learning_rate": 0.0006,
+ "loss": 4.200979709625244,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.4584674537181854,
+ "learning_rate": 0.0006,
+ "loss": 4.1334381103515625,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.4660768508911133,
+ "learning_rate": 0.0006,
+ "loss": 4.200084686279297,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.4789487421512604,
+ "learning_rate": 0.0006,
+ "loss": 4.172554016113281,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.49461299180984497,
+ "learning_rate": 0.0006,
+ "loss": 4.285592079162598,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.5337462425231934,
+ "learning_rate": 0.0006,
+ "loss": 4.229425430297852,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.5576419234275818,
+ "learning_rate": 0.0006,
+ "loss": 4.233409881591797,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.5294531583786011,
+ "learning_rate": 0.0006,
+ "loss": 4.19575309753418,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.5647598505020142,
+ "learning_rate": 0.0006,
+ "loss": 4.213438510894775,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.6300318241119385,
+ "learning_rate": 0.0006,
+ "loss": 4.2297210693359375,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.7726603746414185,
+ "learning_rate": 0.0006,
+ "loss": 4.2555036544799805,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 1.0104360580444336,
+ "learning_rate": 0.0006,
+ "loss": 4.271825790405273,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 1.1859381198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.233576774597168,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.7926550507545471,
+ "learning_rate": 0.0006,
+ "loss": 4.237586498260498,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.6820129156112671,
+ "learning_rate": 0.0006,
+ "loss": 4.299962043762207,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.7082132697105408,
+ "learning_rate": 0.0006,
+ "loss": 4.243724822998047,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.7050187587738037,
+ "learning_rate": 0.0006,
+ "loss": 4.152876853942871,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.6219658255577087,
+ "learning_rate": 0.0006,
+ "loss": 4.254920959472656,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.5747959017753601,
+ "learning_rate": 0.0006,
+ "loss": 4.228151798248291,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.5477624535560608,
+ "learning_rate": 0.0006,
+ "loss": 4.211681842803955,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.5370446443557739,
+ "learning_rate": 0.0006,
+ "loss": 4.241825580596924,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.4855964779853821,
+ "learning_rate": 0.0006,
+ "loss": 4.195348739624023,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.4688033163547516,
+ "learning_rate": 0.0006,
+ "loss": 4.21632194519043,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.4556921124458313,
+ "learning_rate": 0.0006,
+ "loss": 4.177244186401367,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.4724311828613281,
+ "learning_rate": 0.0006,
+ "loss": 4.188458442687988,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.48350122570991516,
+ "learning_rate": 0.0006,
+ "loss": 4.269173622131348,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.47434476017951965,
+ "learning_rate": 0.0006,
+ "loss": 4.210025787353516,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.44016721844673157,
+ "learning_rate": 0.0006,
+ "loss": 4.200996398925781,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.43595024943351746,
+ "learning_rate": 0.0006,
+ "loss": 4.280470848083496,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.43968138098716736,
+ "learning_rate": 0.0006,
+ "loss": 4.12271785736084,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.4622724950313568,
+ "learning_rate": 0.0006,
+ "loss": 4.2784013748168945,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.42840784788131714,
+ "learning_rate": 0.0006,
+ "loss": 4.205509185791016,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.42756643891334534,
+ "learning_rate": 0.0006,
+ "loss": 4.240240573883057,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.4455983340740204,
+ "learning_rate": 0.0006,
+ "loss": 4.170627593994141,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.47522759437561035,
+ "learning_rate": 0.0006,
+ "loss": 4.216513633728027,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.46860823035240173,
+ "learning_rate": 0.0006,
+ "loss": 4.224852561950684,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.45451217889785767,
+ "learning_rate": 0.0006,
+ "loss": 4.320342063903809,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.4033358097076416,
+ "learning_rate": 0.0006,
+ "loss": 4.174200057983398,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.4156914949417114,
+ "learning_rate": 0.0006,
+ "loss": 4.112459659576416,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.4248296618461609,
+ "learning_rate": 0.0006,
+ "loss": 4.203481674194336,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.44323766231536865,
+ "learning_rate": 0.0006,
+ "loss": 4.23320198059082,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.4104357659816742,
+ "learning_rate": 0.0006,
+ "loss": 4.248687744140625,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.4133552610874176,
+ "learning_rate": 0.0006,
+ "loss": 4.261547088623047,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.46102720499038696,
+ "learning_rate": 0.0006,
+ "loss": 4.248725414276123,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.46091315150260925,
+ "learning_rate": 0.0006,
+ "loss": 4.278741836547852,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.4718199670314789,
+ "learning_rate": 0.0006,
+ "loss": 4.287023544311523,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.4677143394947052,
+ "learning_rate": 0.0006,
+ "loss": 4.2407073974609375,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.4627108871936798,
+ "learning_rate": 0.0006,
+ "loss": 4.288060188293457,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.48298877477645874,
+ "learning_rate": 0.0006,
+ "loss": 4.3333258628845215,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.4674181342124939,
+ "learning_rate": 0.0006,
+ "loss": 4.29932165145874,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.4250151216983795,
+ "learning_rate": 0.0006,
+ "loss": 4.271842002868652,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.4271775484085083,
+ "learning_rate": 0.0006,
+ "loss": 4.230886459350586,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.4614356756210327,
+ "learning_rate": 0.0006,
+ "loss": 4.291038513183594,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.4506745934486389,
+ "learning_rate": 0.0006,
+ "loss": 4.2282562255859375,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.43020278215408325,
+ "learning_rate": 0.0006,
+ "loss": 4.255861282348633,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.4066062271595001,
+ "learning_rate": 0.0006,
+ "loss": 4.360322952270508,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.4263683557510376,
+ "learning_rate": 0.0006,
+ "loss": 4.27037239074707,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.39514079689979553,
+ "learning_rate": 0.0006,
+ "loss": 4.258206367492676,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.41911759972572327,
+ "learning_rate": 0.0006,
+ "loss": 4.279756546020508,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.41042575240135193,
+ "learning_rate": 0.0006,
+ "loss": 4.343293190002441,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.40530115365982056,
+ "learning_rate": 0.0006,
+ "loss": 4.30220890045166,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.41333019733428955,
+ "learning_rate": 0.0006,
+ "loss": 4.293051719665527,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.4278717041015625,
+ "learning_rate": 0.0006,
+ "loss": 4.200895309448242,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.38954365253448486,
+ "learning_rate": 0.0006,
+ "loss": 4.349408149719238,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.39665845036506653,
+ "learning_rate": 0.0006,
+ "loss": 4.278497219085693,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.4175996780395508,
+ "learning_rate": 0.0006,
+ "loss": 4.348122596740723,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.3897883892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.327902317047119,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.39896222949028015,
+ "learning_rate": 0.0006,
+ "loss": 4.2651143074035645,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.39377546310424805,
+ "learning_rate": 0.0006,
+ "loss": 4.351605415344238,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.39766061305999756,
+ "learning_rate": 0.0006,
+ "loss": 4.243964195251465,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.3842772841453552,
+ "learning_rate": 0.0006,
+ "loss": 4.267043590545654,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.49257901310920715,
+ "learning_rate": 0.0006,
+ "loss": 4.390436172485352,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 6.3845720291137695,
+ "eval_runtime": 43.659,
+ "eval_samples_per_second": 55.933,
+ "eval_steps_per_second": 3.504,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.4391154944896698,
+ "learning_rate": 0.0006,
+ "loss": 4.111626148223877,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.5148889422416687,
+ "learning_rate": 0.0006,
+ "loss": 4.127384662628174,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.5173138976097107,
+ "learning_rate": 0.0006,
+ "loss": 4.204227447509766,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.4456957280635834,
+ "learning_rate": 0.0006,
+ "loss": 4.200007438659668,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.44515037536621094,
+ "learning_rate": 0.0006,
+ "loss": 4.125116348266602,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.44603443145751953,
+ "learning_rate": 0.0006,
+ "loss": 4.114563465118408,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.43450453877449036,
+ "learning_rate": 0.0006,
+ "loss": 4.147992134094238,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.432449609041214,
+ "learning_rate": 0.0006,
+ "loss": 4.1462626457214355,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.45551928877830505,
+ "learning_rate": 0.0006,
+ "loss": 4.160435676574707,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.472989946603775,
+ "learning_rate": 0.0006,
+ "loss": 4.168758392333984,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.4804964065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.29326057434082,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.5023837685585022,
+ "learning_rate": 0.0006,
+ "loss": 4.129997730255127,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.554080605506897,
+ "learning_rate": 0.0006,
+ "loss": 4.210216999053955,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.6329277753829956,
+ "learning_rate": 0.0006,
+ "loss": 4.239630699157715,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.6927154064178467,
+ "learning_rate": 0.0006,
+ "loss": 4.205781936645508,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.6770079731941223,
+ "learning_rate": 0.0006,
+ "loss": 4.175786018371582,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.5854576230049133,
+ "learning_rate": 0.0006,
+ "loss": 4.234147071838379,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.529286801815033,
+ "learning_rate": 0.0006,
+ "loss": 4.11967134475708,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.5517066717147827,
+ "learning_rate": 0.0006,
+ "loss": 4.235705375671387,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.5938349366188049,
+ "learning_rate": 0.0006,
+ "loss": 4.2656755447387695,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.6056738495826721,
+ "learning_rate": 0.0006,
+ "loss": 4.246652126312256,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.5960127711296082,
+ "learning_rate": 0.0006,
+ "loss": 4.150732517242432,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.5769783854484558,
+ "learning_rate": 0.0006,
+ "loss": 4.2447919845581055,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.5047983527183533,
+ "learning_rate": 0.0006,
+ "loss": 4.215879440307617,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.5035821199417114,
+ "learning_rate": 0.0006,
+ "loss": 4.265319347381592,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.4539526402950287,
+ "learning_rate": 0.0006,
+ "loss": 4.2058539390563965,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.4950912594795227,
+ "learning_rate": 0.0006,
+ "loss": 4.384343147277832,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.4687364101409912,
+ "learning_rate": 0.0006,
+ "loss": 4.220507621765137,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.46328020095825195,
+ "learning_rate": 0.0006,
+ "loss": 4.193594455718994,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.48333385586738586,
+ "learning_rate": 0.0006,
+ "loss": 4.288180351257324,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.4870767593383789,
+ "learning_rate": 0.0006,
+ "loss": 4.270781517028809,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.48339006304740906,
+ "learning_rate": 0.0006,
+ "loss": 4.165823936462402,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.46628767251968384,
+ "learning_rate": 0.0006,
+ "loss": 4.272879600524902,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.43664637207984924,
+ "learning_rate": 0.0006,
+ "loss": 4.170869827270508,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.4373452365398407,
+ "learning_rate": 0.0006,
+ "loss": 4.2506489753723145,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.47709426283836365,
+ "learning_rate": 0.0006,
+ "loss": 4.297833442687988,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.49829018115997314,
+ "learning_rate": 0.0006,
+ "loss": 4.171062469482422,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.487209290266037,
+ "learning_rate": 0.0006,
+ "loss": 4.236351013183594,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.4661620557308197,
+ "learning_rate": 0.0006,
+ "loss": 4.193465232849121,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.4790615439414978,
+ "learning_rate": 0.0006,
+ "loss": 4.238525390625,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.4469921290874481,
+ "learning_rate": 0.0006,
+ "loss": 4.239880084991455,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.4821740984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.237403392791748,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.48282673954963684,
+ "learning_rate": 0.0006,
+ "loss": 4.1664228439331055,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.41682642698287964,
+ "learning_rate": 0.0006,
+ "loss": 4.216082572937012,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.41478675603866577,
+ "learning_rate": 0.0006,
+ "loss": 4.309684753417969,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.4269796311855316,
+ "learning_rate": 0.0006,
+ "loss": 4.2372541427612305,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.4389215409755707,
+ "learning_rate": 0.0006,
+ "loss": 4.2590179443359375,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.458717942237854,
+ "learning_rate": 0.0006,
+ "loss": 4.313959121704102,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.47272592782974243,
+ "learning_rate": 0.0006,
+ "loss": 4.3018903732299805,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.46145138144493103,
+ "learning_rate": 0.0006,
+ "loss": 4.287712097167969,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.45914238691329956,
+ "learning_rate": 0.0006,
+ "loss": 4.287365913391113,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.45007017254829407,
+ "learning_rate": 0.0006,
+ "loss": 4.207084655761719,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.4381447434425354,
+ "learning_rate": 0.0006,
+ "loss": 4.311388969421387,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.44748032093048096,
+ "learning_rate": 0.0006,
+ "loss": 4.346423625946045,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.45367518067359924,
+ "learning_rate": 0.0006,
+ "loss": 4.300904273986816,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.407585084438324,
+ "learning_rate": 0.0006,
+ "loss": 4.271082401275635,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.4048030972480774,
+ "learning_rate": 0.0006,
+ "loss": 4.239479064941406,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.4034517705440521,
+ "learning_rate": 0.0006,
+ "loss": 4.2660675048828125,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.4124349057674408,
+ "learning_rate": 0.0006,
+ "loss": 4.311362266540527,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.424675315618515,
+ "learning_rate": 0.0006,
+ "loss": 4.300950527191162,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.4398607313632965,
+ "learning_rate": 0.0006,
+ "loss": 4.274449348449707,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.4407024383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.314581871032715,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.44054970145225525,
+ "learning_rate": 0.0006,
+ "loss": 4.274312973022461,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.4406360685825348,
+ "learning_rate": 0.0006,
+ "loss": 4.349391460418701,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.4325377941131592,
+ "learning_rate": 0.0006,
+ "loss": 4.235274314880371,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.4063146114349365,
+ "learning_rate": 0.0006,
+ "loss": 4.224005699157715,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.40214279294013977,
+ "learning_rate": 0.0006,
+ "loss": 4.304279327392578,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.413821816444397,
+ "learning_rate": 0.0006,
+ "loss": 4.2585906982421875,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.4437064230442047,
+ "learning_rate": 0.0006,
+ "loss": 4.387950897216797,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.44573846459388733,
+ "learning_rate": 0.0006,
+ "loss": 4.2619805335998535,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.46081477403640747,
+ "learning_rate": 0.0006,
+ "loss": 4.32242488861084,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.5210936069488525,
+ "learning_rate": 0.0006,
+ "loss": 4.432188034057617,
+ "step": 6048
+ },
+ {
+ "epoch": 84.0,
+ "eval_loss": 6.362637519836426,
+ "eval_runtime": 43.7803,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 6048
+ },
+ {
+ "epoch": 84.01397990388816,
+ "grad_norm": 0.47436055541038513,
+ "learning_rate": 0.0006,
+ "loss": 4.191722869873047,
+ "step": 6049
+ },
+ {
+ "epoch": 84.02795980777633,
+ "grad_norm": 0.49965932965278625,
+ "learning_rate": 0.0006,
+ "loss": 4.258981227874756,
+ "step": 6050
+ },
+ {
+ "epoch": 84.04193971166448,
+ "grad_norm": 0.534188449382782,
+ "learning_rate": 0.0006,
+ "loss": 4.140765190124512,
+ "step": 6051
+ },
+ {
+ "epoch": 84.05591961555264,
+ "grad_norm": 0.5774598717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.202078819274902,
+ "step": 6052
+ },
+ {
+ "epoch": 84.06989951944081,
+ "grad_norm": 0.5815461277961731,
+ "learning_rate": 0.0006,
+ "loss": 4.146556377410889,
+ "step": 6053
+ },
+ {
+ "epoch": 84.08387942332897,
+ "grad_norm": 0.5998873710632324,
+ "learning_rate": 0.0006,
+ "loss": 4.162553787231445,
+ "step": 6054
+ },
+ {
+ "epoch": 84.09785932721712,
+ "grad_norm": 0.6092634797096252,
+ "learning_rate": 0.0006,
+ "loss": 4.187989234924316,
+ "step": 6055
+ },
+ {
+ "epoch": 84.1118392311053,
+ "grad_norm": 0.6370293498039246,
+ "learning_rate": 0.0006,
+ "loss": 4.2049880027771,
+ "step": 6056
+ },
+ {
+ "epoch": 84.12581913499345,
+ "grad_norm": 0.6683672070503235,
+ "learning_rate": 0.0006,
+ "loss": 4.2524003982543945,
+ "step": 6057
+ },
+ {
+ "epoch": 84.1397990388816,
+ "grad_norm": 0.7103533744812012,
+ "learning_rate": 0.0006,
+ "loss": 4.236176490783691,
+ "step": 6058
+ },
+ {
+ "epoch": 84.15377894276976,
+ "grad_norm": 0.6803413033485413,
+ "learning_rate": 0.0006,
+ "loss": 4.137399673461914,
+ "step": 6059
+ },
+ {
+ "epoch": 84.16775884665793,
+ "grad_norm": 0.6188878417015076,
+ "learning_rate": 0.0006,
+ "loss": 4.167574882507324,
+ "step": 6060
+ },
+ {
+ "epoch": 84.18173875054609,
+ "grad_norm": 0.5730593204498291,
+ "learning_rate": 0.0006,
+ "loss": 4.25192403793335,
+ "step": 6061
+ },
+ {
+ "epoch": 84.19571865443424,
+ "grad_norm": 0.5957173705101013,
+ "learning_rate": 0.0006,
+ "loss": 4.219425201416016,
+ "step": 6062
+ },
+ {
+ "epoch": 84.20969855832242,
+ "grad_norm": 0.5630517601966858,
+ "learning_rate": 0.0006,
+ "loss": 4.206212043762207,
+ "step": 6063
+ },
+ {
+ "epoch": 84.22367846221057,
+ "grad_norm": 0.5968215465545654,
+ "learning_rate": 0.0006,
+ "loss": 4.267094612121582,
+ "step": 6064
+ },
+ {
+ "epoch": 84.23765836609873,
+ "grad_norm": 0.5848506093025208,
+ "learning_rate": 0.0006,
+ "loss": 4.219100475311279,
+ "step": 6065
+ },
+ {
+ "epoch": 84.2516382699869,
+ "grad_norm": 0.5439348220825195,
+ "learning_rate": 0.0006,
+ "loss": 4.194691181182861,
+ "step": 6066
+ },
+ {
+ "epoch": 84.26561817387505,
+ "grad_norm": 0.5145100951194763,
+ "learning_rate": 0.0006,
+ "loss": 4.154284477233887,
+ "step": 6067
+ },
+ {
+ "epoch": 84.27959807776321,
+ "grad_norm": 0.5202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 4.247485160827637,
+ "step": 6068
+ },
+ {
+ "epoch": 84.29357798165138,
+ "grad_norm": 0.5043543577194214,
+ "learning_rate": 0.0006,
+ "loss": 4.236316680908203,
+ "step": 6069
+ },
+ {
+ "epoch": 84.30755788553954,
+ "grad_norm": 0.46285054087638855,
+ "learning_rate": 0.0006,
+ "loss": 4.203764915466309,
+ "step": 6070
+ },
+ {
+ "epoch": 84.3215377894277,
+ "grad_norm": 0.4265335202217102,
+ "learning_rate": 0.0006,
+ "loss": 4.233004570007324,
+ "step": 6071
+ },
+ {
+ "epoch": 84.33551769331586,
+ "grad_norm": 0.4409696161746979,
+ "learning_rate": 0.0006,
+ "loss": 4.184818267822266,
+ "step": 6072
+ },
+ {
+ "epoch": 84.34949759720402,
+ "grad_norm": 0.44777947664260864,
+ "learning_rate": 0.0006,
+ "loss": 4.244442939758301,
+ "step": 6073
+ },
+ {
+ "epoch": 84.36347750109218,
+ "grad_norm": 0.4520278573036194,
+ "learning_rate": 0.0006,
+ "loss": 4.195928573608398,
+ "step": 6074
+ },
+ {
+ "epoch": 84.37745740498035,
+ "grad_norm": 0.42898136377334595,
+ "learning_rate": 0.0006,
+ "loss": 4.206586837768555,
+ "step": 6075
+ },
+ {
+ "epoch": 84.3914373088685,
+ "grad_norm": 0.4295867085456848,
+ "learning_rate": 0.0006,
+ "loss": 4.165602684020996,
+ "step": 6076
+ },
+ {
+ "epoch": 84.40541721275666,
+ "grad_norm": 0.43354693055152893,
+ "learning_rate": 0.0006,
+ "loss": 4.229294776916504,
+ "step": 6077
+ },
+ {
+ "epoch": 84.41939711664482,
+ "grad_norm": 0.43806344270706177,
+ "learning_rate": 0.0006,
+ "loss": 4.263678550720215,
+ "step": 6078
+ },
+ {
+ "epoch": 84.43337702053299,
+ "grad_norm": 0.4122515320777893,
+ "learning_rate": 0.0006,
+ "loss": 4.132500171661377,
+ "step": 6079
+ },
+ {
+ "epoch": 84.44735692442114,
+ "grad_norm": 0.4411999583244324,
+ "learning_rate": 0.0006,
+ "loss": 4.20449161529541,
+ "step": 6080
+ },
+ {
+ "epoch": 84.4613368283093,
+ "grad_norm": 0.42754557728767395,
+ "learning_rate": 0.0006,
+ "loss": 4.135894775390625,
+ "step": 6081
+ },
+ {
+ "epoch": 84.47531673219747,
+ "grad_norm": 0.4322991967201233,
+ "learning_rate": 0.0006,
+ "loss": 4.150014877319336,
+ "step": 6082
+ },
+ {
+ "epoch": 84.48929663608563,
+ "grad_norm": 0.45169857144355774,
+ "learning_rate": 0.0006,
+ "loss": 4.192213535308838,
+ "step": 6083
+ },
+ {
+ "epoch": 84.50327653997378,
+ "grad_norm": 0.4425649344921112,
+ "learning_rate": 0.0006,
+ "loss": 4.222028732299805,
+ "step": 6084
+ },
+ {
+ "epoch": 84.51725644386195,
+ "grad_norm": 0.4355604350566864,
+ "learning_rate": 0.0006,
+ "loss": 4.195630073547363,
+ "step": 6085
+ },
+ {
+ "epoch": 84.53123634775011,
+ "grad_norm": 0.44341176748275757,
+ "learning_rate": 0.0006,
+ "loss": 4.327449798583984,
+ "step": 6086
+ },
+ {
+ "epoch": 84.54521625163827,
+ "grad_norm": 0.4357825815677643,
+ "learning_rate": 0.0006,
+ "loss": 4.27389669418335,
+ "step": 6087
+ },
+ {
+ "epoch": 84.55919615552644,
+ "grad_norm": 0.4642813801765442,
+ "learning_rate": 0.0006,
+ "loss": 4.179567337036133,
+ "step": 6088
+ },
+ {
+ "epoch": 84.57317605941459,
+ "grad_norm": 0.5092143416404724,
+ "learning_rate": 0.0006,
+ "loss": 4.15549373626709,
+ "step": 6089
+ },
+ {
+ "epoch": 84.58715596330275,
+ "grad_norm": 0.5048913359642029,
+ "learning_rate": 0.0006,
+ "loss": 4.268869400024414,
+ "step": 6090
+ },
+ {
+ "epoch": 84.60113586719092,
+ "grad_norm": 0.49465590715408325,
+ "learning_rate": 0.0006,
+ "loss": 4.218505859375,
+ "step": 6091
+ },
+ {
+ "epoch": 84.61511577107908,
+ "grad_norm": 0.4515545666217804,
+ "learning_rate": 0.0006,
+ "loss": 4.2692365646362305,
+ "step": 6092
+ },
+ {
+ "epoch": 84.62909567496723,
+ "grad_norm": 0.42119187116622925,
+ "learning_rate": 0.0006,
+ "loss": 4.112425804138184,
+ "step": 6093
+ },
+ {
+ "epoch": 84.6430755788554,
+ "grad_norm": 0.461478590965271,
+ "learning_rate": 0.0006,
+ "loss": 4.311590194702148,
+ "step": 6094
+ },
+ {
+ "epoch": 84.65705548274356,
+ "grad_norm": 0.4738669991493225,
+ "learning_rate": 0.0006,
+ "loss": 4.274797439575195,
+ "step": 6095
+ },
+ {
+ "epoch": 84.67103538663171,
+ "grad_norm": 0.4834710359573364,
+ "learning_rate": 0.0006,
+ "loss": 4.230281829833984,
+ "step": 6096
+ },
+ {
+ "epoch": 84.68501529051987,
+ "grad_norm": 0.5070720911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.2454118728637695,
+ "step": 6097
+ },
+ {
+ "epoch": 84.69899519440804,
+ "grad_norm": 0.5197553038597107,
+ "learning_rate": 0.0006,
+ "loss": 4.230489730834961,
+ "step": 6098
+ },
+ {
+ "epoch": 84.7129750982962,
+ "grad_norm": 0.5083942413330078,
+ "learning_rate": 0.0006,
+ "loss": 4.299528121948242,
+ "step": 6099
+ },
+ {
+ "epoch": 84.72695500218435,
+ "grad_norm": 0.44557300209999084,
+ "learning_rate": 0.0006,
+ "loss": 4.175854206085205,
+ "step": 6100
+ },
+ {
+ "epoch": 84.74093490607252,
+ "grad_norm": 0.41695916652679443,
+ "learning_rate": 0.0006,
+ "loss": 4.159942626953125,
+ "step": 6101
+ },
+ {
+ "epoch": 84.75491480996068,
+ "grad_norm": 0.4457457959651947,
+ "learning_rate": 0.0006,
+ "loss": 4.2789459228515625,
+ "step": 6102
+ },
+ {
+ "epoch": 84.76889471384884,
+ "grad_norm": 0.426814466714859,
+ "learning_rate": 0.0006,
+ "loss": 4.266576766967773,
+ "step": 6103
+ },
+ {
+ "epoch": 84.78287461773701,
+ "grad_norm": 0.43556660413742065,
+ "learning_rate": 0.0006,
+ "loss": 4.205744743347168,
+ "step": 6104
+ },
+ {
+ "epoch": 84.79685452162516,
+ "grad_norm": 0.4368990361690521,
+ "learning_rate": 0.0006,
+ "loss": 4.273787498474121,
+ "step": 6105
+ },
+ {
+ "epoch": 84.81083442551332,
+ "grad_norm": 0.41615745425224304,
+ "learning_rate": 0.0006,
+ "loss": 4.296933174133301,
+ "step": 6106
+ },
+ {
+ "epoch": 84.82481432940149,
+ "grad_norm": 0.4203803241252899,
+ "learning_rate": 0.0006,
+ "loss": 4.254091262817383,
+ "step": 6107
+ },
+ {
+ "epoch": 84.83879423328965,
+ "grad_norm": 0.41405585408210754,
+ "learning_rate": 0.0006,
+ "loss": 4.178038597106934,
+ "step": 6108
+ },
+ {
+ "epoch": 84.8527741371778,
+ "grad_norm": 0.41433432698249817,
+ "learning_rate": 0.0006,
+ "loss": 4.208859920501709,
+ "step": 6109
+ },
+ {
+ "epoch": 84.86675404106597,
+ "grad_norm": 0.395998477935791,
+ "learning_rate": 0.0006,
+ "loss": 4.216287612915039,
+ "step": 6110
+ },
+ {
+ "epoch": 84.88073394495413,
+ "grad_norm": 0.40618404746055603,
+ "learning_rate": 0.0006,
+ "loss": 4.279260635375977,
+ "step": 6111
+ },
+ {
+ "epoch": 84.89471384884229,
+ "grad_norm": 0.4085141718387604,
+ "learning_rate": 0.0006,
+ "loss": 4.35117244720459,
+ "step": 6112
+ },
+ {
+ "epoch": 84.90869375273044,
+ "grad_norm": 0.42112982273101807,
+ "learning_rate": 0.0006,
+ "loss": 4.22624397277832,
+ "step": 6113
+ },
+ {
+ "epoch": 84.92267365661861,
+ "grad_norm": 0.4306959807872772,
+ "learning_rate": 0.0006,
+ "loss": 4.310124397277832,
+ "step": 6114
+ },
+ {
+ "epoch": 84.93665356050677,
+ "grad_norm": 0.4376320540904999,
+ "learning_rate": 0.0006,
+ "loss": 4.299549102783203,
+ "step": 6115
+ },
+ {
+ "epoch": 84.95063346439493,
+ "grad_norm": 0.4436059594154358,
+ "learning_rate": 0.0006,
+ "loss": 4.222458362579346,
+ "step": 6116
+ },
+ {
+ "epoch": 84.9646133682831,
+ "grad_norm": 0.4348333477973938,
+ "learning_rate": 0.0006,
+ "loss": 4.243000030517578,
+ "step": 6117
+ },
+ {
+ "epoch": 84.97859327217125,
+ "grad_norm": 0.40557757019996643,
+ "learning_rate": 0.0006,
+ "loss": 4.312551498413086,
+ "step": 6118
+ },
+ {
+ "epoch": 84.99257317605941,
+ "grad_norm": 0.3925289511680603,
+ "learning_rate": 0.0006,
+ "loss": 4.23169469833374,
+ "step": 6119
+ },
+ {
+ "epoch": 85.0,
+ "grad_norm": 0.4687667787075043,
+ "learning_rate": 0.0006,
+ "loss": 4.250479698181152,
+ "step": 6120
+ },
+ {
+ "epoch": 85.0,
+ "eval_loss": 6.4236650466918945,
+ "eval_runtime": 44.0012,
+ "eval_samples_per_second": 55.499,
+ "eval_steps_per_second": 3.477,
+ "step": 6120
+ },
+ {
+ "epoch": 85.01397990388816,
+ "grad_norm": 0.4212416410446167,
+ "learning_rate": 0.0006,
+ "loss": 4.1090850830078125,
+ "step": 6121
+ },
+ {
+ "epoch": 85.02795980777633,
+ "grad_norm": 0.494233638048172,
+ "learning_rate": 0.0006,
+ "loss": 4.180233478546143,
+ "step": 6122
+ },
+ {
+ "epoch": 85.04193971166448,
+ "grad_norm": 0.5173123478889465,
+ "learning_rate": 0.0006,
+ "loss": 4.185733795166016,
+ "step": 6123
+ },
+ {
+ "epoch": 85.05591961555264,
+ "grad_norm": 0.5681236982345581,
+ "learning_rate": 0.0006,
+ "loss": 4.138709545135498,
+ "step": 6124
+ },
+ {
+ "epoch": 85.06989951944081,
+ "grad_norm": 0.6410647034645081,
+ "learning_rate": 0.0006,
+ "loss": 4.139544486999512,
+ "step": 6125
+ },
+ {
+ "epoch": 85.08387942332897,
+ "grad_norm": 0.7401921153068542,
+ "learning_rate": 0.0006,
+ "loss": 4.198850154876709,
+ "step": 6126
+ },
+ {
+ "epoch": 85.09785932721712,
+ "grad_norm": 0.8305296301841736,
+ "learning_rate": 0.0006,
+ "loss": 4.1585693359375,
+ "step": 6127
+ },
+ {
+ "epoch": 85.1118392311053,
+ "grad_norm": 0.9176523685455322,
+ "learning_rate": 0.0006,
+ "loss": 4.242802619934082,
+ "step": 6128
+ },
+ {
+ "epoch": 85.12581913499345,
+ "grad_norm": 0.9265726804733276,
+ "learning_rate": 0.0006,
+ "loss": 4.219632625579834,
+ "step": 6129
+ },
+ {
+ "epoch": 85.1397990388816,
+ "grad_norm": 0.8400911092758179,
+ "learning_rate": 0.0006,
+ "loss": 4.268982887268066,
+ "step": 6130
+ },
+ {
+ "epoch": 85.15377894276976,
+ "grad_norm": 0.744905948638916,
+ "learning_rate": 0.0006,
+ "loss": 4.30452823638916,
+ "step": 6131
+ },
+ {
+ "epoch": 85.16775884665793,
+ "grad_norm": 0.6953766942024231,
+ "learning_rate": 0.0006,
+ "loss": 4.189999580383301,
+ "step": 6132
+ },
+ {
+ "epoch": 85.18173875054609,
+ "grad_norm": 0.577387809753418,
+ "learning_rate": 0.0006,
+ "loss": 4.227351188659668,
+ "step": 6133
+ },
+ {
+ "epoch": 85.19571865443424,
+ "grad_norm": 0.5925359129905701,
+ "learning_rate": 0.0006,
+ "loss": 4.1808977127075195,
+ "step": 6134
+ },
+ {
+ "epoch": 85.20969855832242,
+ "grad_norm": 0.6056010723114014,
+ "learning_rate": 0.0006,
+ "loss": 4.145054340362549,
+ "step": 6135
+ },
+ {
+ "epoch": 85.22367846221057,
+ "grad_norm": 0.604918360710144,
+ "learning_rate": 0.0006,
+ "loss": 4.266521453857422,
+ "step": 6136
+ },
+ {
+ "epoch": 85.23765836609873,
+ "grad_norm": 0.6269238591194153,
+ "learning_rate": 0.0006,
+ "loss": 4.196112632751465,
+ "step": 6137
+ },
+ {
+ "epoch": 85.2516382699869,
+ "grad_norm": 0.5958989858627319,
+ "learning_rate": 0.0006,
+ "loss": 4.176703453063965,
+ "step": 6138
+ },
+ {
+ "epoch": 85.26561817387505,
+ "grad_norm": 0.5563721656799316,
+ "learning_rate": 0.0006,
+ "loss": 4.214921951293945,
+ "step": 6139
+ },
+ {
+ "epoch": 85.27959807776321,
+ "grad_norm": 0.5104738473892212,
+ "learning_rate": 0.0006,
+ "loss": 4.1572747230529785,
+ "step": 6140
+ },
+ {
+ "epoch": 85.29357798165138,
+ "grad_norm": 0.5091421008110046,
+ "learning_rate": 0.0006,
+ "loss": 4.207575798034668,
+ "step": 6141
+ },
+ {
+ "epoch": 85.30755788553954,
+ "grad_norm": 0.4957296848297119,
+ "learning_rate": 0.0006,
+ "loss": 4.191003322601318,
+ "step": 6142
+ },
+ {
+ "epoch": 85.3215377894277,
+ "grad_norm": 0.5249730348587036,
+ "learning_rate": 0.0006,
+ "loss": 4.190788269042969,
+ "step": 6143
+ },
+ {
+ "epoch": 85.33551769331586,
+ "grad_norm": 0.5330517888069153,
+ "learning_rate": 0.0006,
+ "loss": 4.2532501220703125,
+ "step": 6144
+ },
+ {
+ "epoch": 85.34949759720402,
+ "grad_norm": 0.5122325420379639,
+ "learning_rate": 0.0006,
+ "loss": 4.24505090713501,
+ "step": 6145
+ },
+ {
+ "epoch": 85.36347750109218,
+ "grad_norm": 0.48302626609802246,
+ "learning_rate": 0.0006,
+ "loss": 4.276553153991699,
+ "step": 6146
+ },
+ {
+ "epoch": 85.37745740498035,
+ "grad_norm": 0.45876380801200867,
+ "learning_rate": 0.0006,
+ "loss": 4.232707977294922,
+ "step": 6147
+ },
+ {
+ "epoch": 85.3914373088685,
+ "grad_norm": 0.43201959133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.227077484130859,
+ "step": 6148
+ },
+ {
+ "epoch": 85.40541721275666,
+ "grad_norm": 0.43973541259765625,
+ "learning_rate": 0.0006,
+ "loss": 4.1685590744018555,
+ "step": 6149
+ },
+ {
+ "epoch": 85.41939711664482,
+ "grad_norm": 0.4517432153224945,
+ "learning_rate": 0.0006,
+ "loss": 4.207458972930908,
+ "step": 6150
+ },
+ {
+ "epoch": 85.43337702053299,
+ "grad_norm": 0.4610045850276947,
+ "learning_rate": 0.0006,
+ "loss": 4.132458686828613,
+ "step": 6151
+ },
+ {
+ "epoch": 85.44735692442114,
+ "grad_norm": 0.4478553533554077,
+ "learning_rate": 0.0006,
+ "loss": 4.164486885070801,
+ "step": 6152
+ },
+ {
+ "epoch": 85.4613368283093,
+ "grad_norm": 0.4325296878814697,
+ "learning_rate": 0.0006,
+ "loss": 4.238661766052246,
+ "step": 6153
+ },
+ {
+ "epoch": 85.47531673219747,
+ "grad_norm": 0.4336618185043335,
+ "learning_rate": 0.0006,
+ "loss": 4.2476348876953125,
+ "step": 6154
+ },
+ {
+ "epoch": 85.48929663608563,
+ "grad_norm": 0.44246068596839905,
+ "learning_rate": 0.0006,
+ "loss": 4.112232685089111,
+ "step": 6155
+ },
+ {
+ "epoch": 85.50327653997378,
+ "grad_norm": 0.44979506731033325,
+ "learning_rate": 0.0006,
+ "loss": 4.227209091186523,
+ "step": 6156
+ },
+ {
+ "epoch": 85.51725644386195,
+ "grad_norm": 0.41781380772590637,
+ "learning_rate": 0.0006,
+ "loss": 4.170072555541992,
+ "step": 6157
+ },
+ {
+ "epoch": 85.53123634775011,
+ "grad_norm": 0.4316149353981018,
+ "learning_rate": 0.0006,
+ "loss": 4.145702362060547,
+ "step": 6158
+ },
+ {
+ "epoch": 85.54521625163827,
+ "grad_norm": 0.4433120787143707,
+ "learning_rate": 0.0006,
+ "loss": 4.26444673538208,
+ "step": 6159
+ },
+ {
+ "epoch": 85.55919615552644,
+ "grad_norm": 0.42795389890670776,
+ "learning_rate": 0.0006,
+ "loss": 4.2480621337890625,
+ "step": 6160
+ },
+ {
+ "epoch": 85.57317605941459,
+ "grad_norm": 0.44557079672813416,
+ "learning_rate": 0.0006,
+ "loss": 4.24589729309082,
+ "step": 6161
+ },
+ {
+ "epoch": 85.58715596330275,
+ "grad_norm": 0.4265936017036438,
+ "learning_rate": 0.0006,
+ "loss": 4.178960800170898,
+ "step": 6162
+ },
+ {
+ "epoch": 85.60113586719092,
+ "grad_norm": 0.4352312982082367,
+ "learning_rate": 0.0006,
+ "loss": 4.226616382598877,
+ "step": 6163
+ },
+ {
+ "epoch": 85.61511577107908,
+ "grad_norm": 0.4641511142253876,
+ "learning_rate": 0.0006,
+ "loss": 4.176436424255371,
+ "step": 6164
+ },
+ {
+ "epoch": 85.62909567496723,
+ "grad_norm": 0.41917547583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.22402286529541,
+ "step": 6165
+ },
+ {
+ "epoch": 85.6430755788554,
+ "grad_norm": 0.4128566086292267,
+ "learning_rate": 0.0006,
+ "loss": 4.208065032958984,
+ "step": 6166
+ },
+ {
+ "epoch": 85.65705548274356,
+ "grad_norm": 0.41222256422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.3075361251831055,
+ "step": 6167
+ },
+ {
+ "epoch": 85.67103538663171,
+ "grad_norm": 0.41198086738586426,
+ "learning_rate": 0.0006,
+ "loss": 4.290134906768799,
+ "step": 6168
+ },
+ {
+ "epoch": 85.68501529051987,
+ "grad_norm": 0.4154035747051239,
+ "learning_rate": 0.0006,
+ "loss": 4.278663635253906,
+ "step": 6169
+ },
+ {
+ "epoch": 85.69899519440804,
+ "grad_norm": 0.4130622446537018,
+ "learning_rate": 0.0006,
+ "loss": 4.243109703063965,
+ "step": 6170
+ },
+ {
+ "epoch": 85.7129750982962,
+ "grad_norm": 0.4077015221118927,
+ "learning_rate": 0.0006,
+ "loss": 4.228545665740967,
+ "step": 6171
+ },
+ {
+ "epoch": 85.72695500218435,
+ "grad_norm": 0.3907303810119629,
+ "learning_rate": 0.0006,
+ "loss": 4.3075995445251465,
+ "step": 6172
+ },
+ {
+ "epoch": 85.74093490607252,
+ "grad_norm": 0.4037119746208191,
+ "learning_rate": 0.0006,
+ "loss": 4.246337413787842,
+ "step": 6173
+ },
+ {
+ "epoch": 85.75491480996068,
+ "grad_norm": 0.41759130358695984,
+ "learning_rate": 0.0006,
+ "loss": 4.308913707733154,
+ "step": 6174
+ },
+ {
+ "epoch": 85.76889471384884,
+ "grad_norm": 0.41771626472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.311037063598633,
+ "step": 6175
+ },
+ {
+ "epoch": 85.78287461773701,
+ "grad_norm": 0.4321439862251282,
+ "learning_rate": 0.0006,
+ "loss": 4.350762367248535,
+ "step": 6176
+ },
+ {
+ "epoch": 85.79685452162516,
+ "grad_norm": 0.3975702226161957,
+ "learning_rate": 0.0006,
+ "loss": 4.182483673095703,
+ "step": 6177
+ },
+ {
+ "epoch": 85.81083442551332,
+ "grad_norm": 0.4001428782939911,
+ "learning_rate": 0.0006,
+ "loss": 4.2482194900512695,
+ "step": 6178
+ },
+ {
+ "epoch": 85.82481432940149,
+ "grad_norm": 0.4038706421852112,
+ "learning_rate": 0.0006,
+ "loss": 4.252450466156006,
+ "step": 6179
+ },
+ {
+ "epoch": 85.83879423328965,
+ "grad_norm": 0.413814902305603,
+ "learning_rate": 0.0006,
+ "loss": 4.278610706329346,
+ "step": 6180
+ },
+ {
+ "epoch": 85.8527741371778,
+ "grad_norm": 0.4370289444923401,
+ "learning_rate": 0.0006,
+ "loss": 4.209270000457764,
+ "step": 6181
+ },
+ {
+ "epoch": 85.86675404106597,
+ "grad_norm": 0.4093279242515564,
+ "learning_rate": 0.0006,
+ "loss": 4.339448928833008,
+ "step": 6182
+ },
+ {
+ "epoch": 85.88073394495413,
+ "grad_norm": 0.4336872398853302,
+ "learning_rate": 0.0006,
+ "loss": 4.248476028442383,
+ "step": 6183
+ },
+ {
+ "epoch": 85.89471384884229,
+ "grad_norm": 0.42384231090545654,
+ "learning_rate": 0.0006,
+ "loss": 4.1973652839660645,
+ "step": 6184
+ },
+ {
+ "epoch": 85.90869375273044,
+ "grad_norm": 0.4119747579097748,
+ "learning_rate": 0.0006,
+ "loss": 4.2321271896362305,
+ "step": 6185
+ },
+ {
+ "epoch": 85.92267365661861,
+ "grad_norm": 0.42178797721862793,
+ "learning_rate": 0.0006,
+ "loss": 4.238823890686035,
+ "step": 6186
+ },
+ {
+ "epoch": 85.93665356050677,
+ "grad_norm": 0.4252033233642578,
+ "learning_rate": 0.0006,
+ "loss": 4.216999053955078,
+ "step": 6187
+ },
+ {
+ "epoch": 85.95063346439493,
+ "grad_norm": 0.4080226719379425,
+ "learning_rate": 0.0006,
+ "loss": 4.165124416351318,
+ "step": 6188
+ },
+ {
+ "epoch": 85.9646133682831,
+ "grad_norm": 0.41687312722206116,
+ "learning_rate": 0.0006,
+ "loss": 4.267208576202393,
+ "step": 6189
+ },
+ {
+ "epoch": 85.97859327217125,
+ "grad_norm": 0.4602084159851074,
+ "learning_rate": 0.0006,
+ "loss": 4.275501251220703,
+ "step": 6190
+ },
+ {
+ "epoch": 85.99257317605941,
+ "grad_norm": 0.4058094620704651,
+ "learning_rate": 0.0006,
+ "loss": 4.245742321014404,
+ "step": 6191
+ },
+ {
+ "epoch": 86.0,
+ "grad_norm": 0.47458478808403015,
+ "learning_rate": 0.0006,
+ "loss": 4.287442207336426,
+ "step": 6192
+ },
+ {
+ "epoch": 86.0,
+ "eval_loss": 6.403047561645508,
+ "eval_runtime": 43.8214,
+ "eval_samples_per_second": 55.726,
+ "eval_steps_per_second": 3.491,
+ "step": 6192
+ },
+ {
+ "epoch": 86.01397990388816,
+ "grad_norm": 0.4514295756816864,
+ "learning_rate": 0.0006,
+ "loss": 4.168883323669434,
+ "step": 6193
+ },
+ {
+ "epoch": 86.02795980777633,
+ "grad_norm": 0.4945322573184967,
+ "learning_rate": 0.0006,
+ "loss": 4.184109687805176,
+ "step": 6194
+ },
+ {
+ "epoch": 86.04193971166448,
+ "grad_norm": 0.4829343557357788,
+ "learning_rate": 0.0006,
+ "loss": 4.196836471557617,
+ "step": 6195
+ },
+ {
+ "epoch": 86.05591961555264,
+ "grad_norm": 0.46961912512779236,
+ "learning_rate": 0.0006,
+ "loss": 4.142866134643555,
+ "step": 6196
+ },
+ {
+ "epoch": 86.06989951944081,
+ "grad_norm": 0.4949210584163666,
+ "learning_rate": 0.0006,
+ "loss": 4.211699485778809,
+ "step": 6197
+ },
+ {
+ "epoch": 86.08387942332897,
+ "grad_norm": 0.46593594551086426,
+ "learning_rate": 0.0006,
+ "loss": 4.1134490966796875,
+ "step": 6198
+ },
+ {
+ "epoch": 86.09785932721712,
+ "grad_norm": 0.4728434681892395,
+ "learning_rate": 0.0006,
+ "loss": 4.068804740905762,
+ "step": 6199
+ },
+ {
+ "epoch": 86.1118392311053,
+ "grad_norm": 0.47897961735725403,
+ "learning_rate": 0.0006,
+ "loss": 4.116288185119629,
+ "step": 6200
+ },
+ {
+ "epoch": 86.12581913499345,
+ "grad_norm": 0.4988885819911957,
+ "learning_rate": 0.0006,
+ "loss": 4.195610523223877,
+ "step": 6201
+ },
+ {
+ "epoch": 86.1397990388816,
+ "grad_norm": 0.5539481043815613,
+ "learning_rate": 0.0006,
+ "loss": 4.1776204109191895,
+ "step": 6202
+ },
+ {
+ "epoch": 86.15377894276976,
+ "grad_norm": 0.668317973613739,
+ "learning_rate": 0.0006,
+ "loss": 4.1369171142578125,
+ "step": 6203
+ },
+ {
+ "epoch": 86.16775884665793,
+ "grad_norm": 0.7647491693496704,
+ "learning_rate": 0.0006,
+ "loss": 4.20838737487793,
+ "step": 6204
+ },
+ {
+ "epoch": 86.18173875054609,
+ "grad_norm": 0.9673570394515991,
+ "learning_rate": 0.0006,
+ "loss": 4.215792655944824,
+ "step": 6205
+ },
+ {
+ "epoch": 86.19571865443424,
+ "grad_norm": 1.124152660369873,
+ "learning_rate": 0.0006,
+ "loss": 4.2046709060668945,
+ "step": 6206
+ },
+ {
+ "epoch": 86.20969855832242,
+ "grad_norm": 0.795403778553009,
+ "learning_rate": 0.0006,
+ "loss": 4.212424278259277,
+ "step": 6207
+ },
+ {
+ "epoch": 86.22367846221057,
+ "grad_norm": 0.639197826385498,
+ "learning_rate": 0.0006,
+ "loss": 4.090766429901123,
+ "step": 6208
+ },
+ {
+ "epoch": 86.23765836609873,
+ "grad_norm": 0.662894606590271,
+ "learning_rate": 0.0006,
+ "loss": 4.1571221351623535,
+ "step": 6209
+ },
+ {
+ "epoch": 86.2516382699869,
+ "grad_norm": 0.6552493572235107,
+ "learning_rate": 0.0006,
+ "loss": 4.231173515319824,
+ "step": 6210
+ },
+ {
+ "epoch": 86.26561817387505,
+ "grad_norm": 0.5748463869094849,
+ "learning_rate": 0.0006,
+ "loss": 4.172743797302246,
+ "step": 6211
+ },
+ {
+ "epoch": 86.27959807776321,
+ "grad_norm": 0.5272432565689087,
+ "learning_rate": 0.0006,
+ "loss": 4.193683624267578,
+ "step": 6212
+ },
+ {
+ "epoch": 86.29357798165138,
+ "grad_norm": 0.49313828349113464,
+ "learning_rate": 0.0006,
+ "loss": 4.221615791320801,
+ "step": 6213
+ },
+ {
+ "epoch": 86.30755788553954,
+ "grad_norm": 0.494914710521698,
+ "learning_rate": 0.0006,
+ "loss": 4.255671501159668,
+ "step": 6214
+ },
+ {
+ "epoch": 86.3215377894277,
+ "grad_norm": 0.47431471943855286,
+ "learning_rate": 0.0006,
+ "loss": 4.181219100952148,
+ "step": 6215
+ },
+ {
+ "epoch": 86.33551769331586,
+ "grad_norm": 0.4649604260921478,
+ "learning_rate": 0.0006,
+ "loss": 4.191998481750488,
+ "step": 6216
+ },
+ {
+ "epoch": 86.34949759720402,
+ "grad_norm": 0.4728623628616333,
+ "learning_rate": 0.0006,
+ "loss": 4.2238264083862305,
+ "step": 6217
+ },
+ {
+ "epoch": 86.36347750109218,
+ "grad_norm": 0.4535118043422699,
+ "learning_rate": 0.0006,
+ "loss": 4.17877197265625,
+ "step": 6218
+ },
+ {
+ "epoch": 86.37745740498035,
+ "grad_norm": 0.46630820631980896,
+ "learning_rate": 0.0006,
+ "loss": 4.268709182739258,
+ "step": 6219
+ },
+ {
+ "epoch": 86.3914373088685,
+ "grad_norm": 0.44170552492141724,
+ "learning_rate": 0.0006,
+ "loss": 4.156832695007324,
+ "step": 6220
+ },
+ {
+ "epoch": 86.40541721275666,
+ "grad_norm": 0.4569980800151825,
+ "learning_rate": 0.0006,
+ "loss": 4.231564521789551,
+ "step": 6221
+ },
+ {
+ "epoch": 86.41939711664482,
+ "grad_norm": 0.46918782591819763,
+ "learning_rate": 0.0006,
+ "loss": 4.249637603759766,
+ "step": 6222
+ },
+ {
+ "epoch": 86.43337702053299,
+ "grad_norm": 0.4581753611564636,
+ "learning_rate": 0.0006,
+ "loss": 4.179978370666504,
+ "step": 6223
+ },
+ {
+ "epoch": 86.44735692442114,
+ "grad_norm": 0.4316704571247101,
+ "learning_rate": 0.0006,
+ "loss": 4.146752834320068,
+ "step": 6224
+ },
+ {
+ "epoch": 86.4613368283093,
+ "grad_norm": 0.4482209384441376,
+ "learning_rate": 0.0006,
+ "loss": 4.244694232940674,
+ "step": 6225
+ },
+ {
+ "epoch": 86.47531673219747,
+ "grad_norm": 0.4843580424785614,
+ "learning_rate": 0.0006,
+ "loss": 4.17778205871582,
+ "step": 6226
+ },
+ {
+ "epoch": 86.48929663608563,
+ "grad_norm": 0.4709290862083435,
+ "learning_rate": 0.0006,
+ "loss": 4.285809516906738,
+ "step": 6227
+ },
+ {
+ "epoch": 86.50327653997378,
+ "grad_norm": 0.46813929080963135,
+ "learning_rate": 0.0006,
+ "loss": 4.231365203857422,
+ "step": 6228
+ },
+ {
+ "epoch": 86.51725644386195,
+ "grad_norm": 0.4462358355522156,
+ "learning_rate": 0.0006,
+ "loss": 4.105094909667969,
+ "step": 6229
+ },
+ {
+ "epoch": 86.53123634775011,
+ "grad_norm": 0.4453467130661011,
+ "learning_rate": 0.0006,
+ "loss": 4.299243927001953,
+ "step": 6230
+ },
+ {
+ "epoch": 86.54521625163827,
+ "grad_norm": 0.40684959292411804,
+ "learning_rate": 0.0006,
+ "loss": 4.130344867706299,
+ "step": 6231
+ },
+ {
+ "epoch": 86.55919615552644,
+ "grad_norm": 0.4367261230945587,
+ "learning_rate": 0.0006,
+ "loss": 4.32288932800293,
+ "step": 6232
+ },
+ {
+ "epoch": 86.57317605941459,
+ "grad_norm": 0.4543338418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.20067024230957,
+ "step": 6233
+ },
+ {
+ "epoch": 86.58715596330275,
+ "grad_norm": 0.4356217384338379,
+ "learning_rate": 0.0006,
+ "loss": 4.203358173370361,
+ "step": 6234
+ },
+ {
+ "epoch": 86.60113586719092,
+ "grad_norm": 0.430902361869812,
+ "learning_rate": 0.0006,
+ "loss": 4.259663105010986,
+ "step": 6235
+ },
+ {
+ "epoch": 86.61511577107908,
+ "grad_norm": 0.4439174234867096,
+ "learning_rate": 0.0006,
+ "loss": 4.223544120788574,
+ "step": 6236
+ },
+ {
+ "epoch": 86.62909567496723,
+ "grad_norm": 0.4226101338863373,
+ "learning_rate": 0.0006,
+ "loss": 4.189355373382568,
+ "step": 6237
+ },
+ {
+ "epoch": 86.6430755788554,
+ "grad_norm": 0.40921148657798767,
+ "learning_rate": 0.0006,
+ "loss": 4.117485523223877,
+ "step": 6238
+ },
+ {
+ "epoch": 86.65705548274356,
+ "grad_norm": 0.4049853980541229,
+ "learning_rate": 0.0006,
+ "loss": 4.194711685180664,
+ "step": 6239
+ },
+ {
+ "epoch": 86.67103538663171,
+ "grad_norm": 0.43752163648605347,
+ "learning_rate": 0.0006,
+ "loss": 4.296228885650635,
+ "step": 6240
+ },
+ {
+ "epoch": 86.68501529051987,
+ "grad_norm": 0.4285348653793335,
+ "learning_rate": 0.0006,
+ "loss": 4.224569797515869,
+ "step": 6241
+ },
+ {
+ "epoch": 86.69899519440804,
+ "grad_norm": 0.42145198583602905,
+ "learning_rate": 0.0006,
+ "loss": 4.17451286315918,
+ "step": 6242
+ },
+ {
+ "epoch": 86.7129750982962,
+ "grad_norm": 0.43004974722862244,
+ "learning_rate": 0.0006,
+ "loss": 4.327383995056152,
+ "step": 6243
+ },
+ {
+ "epoch": 86.72695500218435,
+ "grad_norm": 0.4132508635520935,
+ "learning_rate": 0.0006,
+ "loss": 4.254952430725098,
+ "step": 6244
+ },
+ {
+ "epoch": 86.74093490607252,
+ "grad_norm": 0.4263715445995331,
+ "learning_rate": 0.0006,
+ "loss": 4.291565895080566,
+ "step": 6245
+ },
+ {
+ "epoch": 86.75491480996068,
+ "grad_norm": 0.4107324779033661,
+ "learning_rate": 0.0006,
+ "loss": 4.175364971160889,
+ "step": 6246
+ },
+ {
+ "epoch": 86.76889471384884,
+ "grad_norm": 0.4208371937274933,
+ "learning_rate": 0.0006,
+ "loss": 4.30789852142334,
+ "step": 6247
+ },
+ {
+ "epoch": 86.78287461773701,
+ "grad_norm": 0.40826472640037537,
+ "learning_rate": 0.0006,
+ "loss": 4.258838176727295,
+ "step": 6248
+ },
+ {
+ "epoch": 86.79685452162516,
+ "grad_norm": 0.4199276268482208,
+ "learning_rate": 0.0006,
+ "loss": 4.267247200012207,
+ "step": 6249
+ },
+ {
+ "epoch": 86.81083442551332,
+ "grad_norm": 0.41855406761169434,
+ "learning_rate": 0.0006,
+ "loss": 4.23055362701416,
+ "step": 6250
+ },
+ {
+ "epoch": 86.82481432940149,
+ "grad_norm": 0.4074585735797882,
+ "learning_rate": 0.0006,
+ "loss": 4.30836296081543,
+ "step": 6251
+ },
+ {
+ "epoch": 86.83879423328965,
+ "grad_norm": 0.41543063521385193,
+ "learning_rate": 0.0006,
+ "loss": 4.240653991699219,
+ "step": 6252
+ },
+ {
+ "epoch": 86.8527741371778,
+ "grad_norm": 0.43938663601875305,
+ "learning_rate": 0.0006,
+ "loss": 4.202419757843018,
+ "step": 6253
+ },
+ {
+ "epoch": 86.86675404106597,
+ "grad_norm": 0.40917736291885376,
+ "learning_rate": 0.0006,
+ "loss": 4.230096817016602,
+ "step": 6254
+ },
+ {
+ "epoch": 86.88073394495413,
+ "grad_norm": 0.39287346601486206,
+ "learning_rate": 0.0006,
+ "loss": 4.266208648681641,
+ "step": 6255
+ },
+ {
+ "epoch": 86.89471384884229,
+ "grad_norm": 0.42201662063598633,
+ "learning_rate": 0.0006,
+ "loss": 4.266336441040039,
+ "step": 6256
+ },
+ {
+ "epoch": 86.90869375273044,
+ "grad_norm": 0.41840073466300964,
+ "learning_rate": 0.0006,
+ "loss": 4.2372283935546875,
+ "step": 6257
+ },
+ {
+ "epoch": 86.92267365661861,
+ "grad_norm": 0.41545310616493225,
+ "learning_rate": 0.0006,
+ "loss": 4.228784084320068,
+ "step": 6258
+ },
+ {
+ "epoch": 86.93665356050677,
+ "grad_norm": 0.4000638723373413,
+ "learning_rate": 0.0006,
+ "loss": 4.217623233795166,
+ "step": 6259
+ },
+ {
+ "epoch": 86.95063346439493,
+ "grad_norm": 0.40059611201286316,
+ "learning_rate": 0.0006,
+ "loss": 4.219632148742676,
+ "step": 6260
+ },
+ {
+ "epoch": 86.9646133682831,
+ "grad_norm": 0.40537703037261963,
+ "learning_rate": 0.0006,
+ "loss": 4.325621604919434,
+ "step": 6261
+ },
+ {
+ "epoch": 86.97859327217125,
+ "grad_norm": 0.4128882884979248,
+ "learning_rate": 0.0006,
+ "loss": 4.3072710037231445,
+ "step": 6262
+ },
+ {
+ "epoch": 86.99257317605941,
+ "grad_norm": 0.4379993677139282,
+ "learning_rate": 0.0006,
+ "loss": 4.363463401794434,
+ "step": 6263
+ },
+ {
+ "epoch": 87.0,
+ "grad_norm": 0.547332763671875,
+ "learning_rate": 0.0006,
+ "loss": 4.2679829597473145,
+ "step": 6264
+ },
+ {
+ "epoch": 87.0,
+ "eval_loss": 6.392307758331299,
+ "eval_runtime": 43.7891,
+ "eval_samples_per_second": 55.767,
+ "eval_steps_per_second": 3.494,
+ "step": 6264
+ },
+ {
+ "epoch": 87.01397990388816,
+ "grad_norm": 0.45948871970176697,
+ "learning_rate": 0.0006,
+ "loss": 4.031222343444824,
+ "step": 6265
+ },
+ {
+ "epoch": 87.02795980777633,
+ "grad_norm": 0.4914006292819977,
+ "learning_rate": 0.0006,
+ "loss": 4.156842231750488,
+ "step": 6266
+ },
+ {
+ "epoch": 87.04193971166448,
+ "grad_norm": 0.5071610808372498,
+ "learning_rate": 0.0006,
+ "loss": 4.1074676513671875,
+ "step": 6267
+ },
+ {
+ "epoch": 87.05591961555264,
+ "grad_norm": 0.4955688416957855,
+ "learning_rate": 0.0006,
+ "loss": 4.216960430145264,
+ "step": 6268
+ },
+ {
+ "epoch": 87.06989951944081,
+ "grad_norm": 0.4986410140991211,
+ "learning_rate": 0.0006,
+ "loss": 4.154225826263428,
+ "step": 6269
+ },
+ {
+ "epoch": 87.08387942332897,
+ "grad_norm": 0.5057981014251709,
+ "learning_rate": 0.0006,
+ "loss": 4.1951904296875,
+ "step": 6270
+ },
+ {
+ "epoch": 87.09785932721712,
+ "grad_norm": 0.4882241189479828,
+ "learning_rate": 0.0006,
+ "loss": 4.126533508300781,
+ "step": 6271
+ },
+ {
+ "epoch": 87.1118392311053,
+ "grad_norm": 0.4709639549255371,
+ "learning_rate": 0.0006,
+ "loss": 4.058790683746338,
+ "step": 6272
+ },
+ {
+ "epoch": 87.12581913499345,
+ "grad_norm": 0.5342675447463989,
+ "learning_rate": 0.0006,
+ "loss": 4.214875221252441,
+ "step": 6273
+ },
+ {
+ "epoch": 87.1397990388816,
+ "grad_norm": 0.6006143689155579,
+ "learning_rate": 0.0006,
+ "loss": 4.160619735717773,
+ "step": 6274
+ },
+ {
+ "epoch": 87.15377894276976,
+ "grad_norm": 0.6728277802467346,
+ "learning_rate": 0.0006,
+ "loss": 4.1538848876953125,
+ "step": 6275
+ },
+ {
+ "epoch": 87.16775884665793,
+ "grad_norm": 0.7239725589752197,
+ "learning_rate": 0.0006,
+ "loss": 4.1733808517456055,
+ "step": 6276
+ },
+ {
+ "epoch": 87.18173875054609,
+ "grad_norm": 0.7556143403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.219337463378906,
+ "step": 6277
+ },
+ {
+ "epoch": 87.19571865443424,
+ "grad_norm": 0.7680774927139282,
+ "learning_rate": 0.0006,
+ "loss": 4.188779354095459,
+ "step": 6278
+ },
+ {
+ "epoch": 87.20969855832242,
+ "grad_norm": 0.6739238500595093,
+ "learning_rate": 0.0006,
+ "loss": 4.140239715576172,
+ "step": 6279
+ },
+ {
+ "epoch": 87.22367846221057,
+ "grad_norm": 0.5501153469085693,
+ "learning_rate": 0.0006,
+ "loss": 4.183748245239258,
+ "step": 6280
+ },
+ {
+ "epoch": 87.23765836609873,
+ "grad_norm": 0.5142590403556824,
+ "learning_rate": 0.0006,
+ "loss": 4.183562278747559,
+ "step": 6281
+ },
+ {
+ "epoch": 87.2516382699869,
+ "grad_norm": 0.5068333148956299,
+ "learning_rate": 0.0006,
+ "loss": 4.15458869934082,
+ "step": 6282
+ },
+ {
+ "epoch": 87.26561817387505,
+ "grad_norm": 0.49197667837142944,
+ "learning_rate": 0.0006,
+ "loss": 4.183134078979492,
+ "step": 6283
+ },
+ {
+ "epoch": 87.27959807776321,
+ "grad_norm": 0.474367618560791,
+ "learning_rate": 0.0006,
+ "loss": 4.166842460632324,
+ "step": 6284
+ },
+ {
+ "epoch": 87.29357798165138,
+ "grad_norm": 0.487605482339859,
+ "learning_rate": 0.0006,
+ "loss": 4.14278507232666,
+ "step": 6285
+ },
+ {
+ "epoch": 87.30755788553954,
+ "grad_norm": 0.5414341688156128,
+ "learning_rate": 0.0006,
+ "loss": 4.185382843017578,
+ "step": 6286
+ },
+ {
+ "epoch": 87.3215377894277,
+ "grad_norm": 0.5583488345146179,
+ "learning_rate": 0.0006,
+ "loss": 4.194276809692383,
+ "step": 6287
+ },
+ {
+ "epoch": 87.33551769331586,
+ "grad_norm": 0.5409402847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.194012641906738,
+ "step": 6288
+ },
+ {
+ "epoch": 87.34949759720402,
+ "grad_norm": 0.48561549186706543,
+ "learning_rate": 0.0006,
+ "loss": 4.114370346069336,
+ "step": 6289
+ },
+ {
+ "epoch": 87.36347750109218,
+ "grad_norm": 0.4989895224571228,
+ "learning_rate": 0.0006,
+ "loss": 4.2538604736328125,
+ "step": 6290
+ },
+ {
+ "epoch": 87.37745740498035,
+ "grad_norm": 0.48488590121269226,
+ "learning_rate": 0.0006,
+ "loss": 4.191547870635986,
+ "step": 6291
+ },
+ {
+ "epoch": 87.3914373088685,
+ "grad_norm": 0.4702613353729248,
+ "learning_rate": 0.0006,
+ "loss": 4.240187644958496,
+ "step": 6292
+ },
+ {
+ "epoch": 87.40541721275666,
+ "grad_norm": 0.4687752425670624,
+ "learning_rate": 0.0006,
+ "loss": 4.121512413024902,
+ "step": 6293
+ },
+ {
+ "epoch": 87.41939711664482,
+ "grad_norm": 0.48676159977912903,
+ "learning_rate": 0.0006,
+ "loss": 4.289400100708008,
+ "step": 6294
+ },
+ {
+ "epoch": 87.43337702053299,
+ "grad_norm": 0.4835919439792633,
+ "learning_rate": 0.0006,
+ "loss": 4.250560760498047,
+ "step": 6295
+ },
+ {
+ "epoch": 87.44735692442114,
+ "grad_norm": 0.4874095916748047,
+ "learning_rate": 0.0006,
+ "loss": 4.225663185119629,
+ "step": 6296
+ },
+ {
+ "epoch": 87.4613368283093,
+ "grad_norm": 0.488853394985199,
+ "learning_rate": 0.0006,
+ "loss": 4.23991584777832,
+ "step": 6297
+ },
+ {
+ "epoch": 87.47531673219747,
+ "grad_norm": 0.44397449493408203,
+ "learning_rate": 0.0006,
+ "loss": 4.123526096343994,
+ "step": 6298
+ },
+ {
+ "epoch": 87.48929663608563,
+ "grad_norm": 0.4251089096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.166404724121094,
+ "step": 6299
+ },
+ {
+ "epoch": 87.50327653997378,
+ "grad_norm": 0.4290788769721985,
+ "learning_rate": 0.0006,
+ "loss": 4.228366851806641,
+ "step": 6300
+ },
+ {
+ "epoch": 87.51725644386195,
+ "grad_norm": 0.42660924792289734,
+ "learning_rate": 0.0006,
+ "loss": 4.225200653076172,
+ "step": 6301
+ },
+ {
+ "epoch": 87.53123634775011,
+ "grad_norm": 0.43401870131492615,
+ "learning_rate": 0.0006,
+ "loss": 4.27695894241333,
+ "step": 6302
+ },
+ {
+ "epoch": 87.54521625163827,
+ "grad_norm": 0.41544046998023987,
+ "learning_rate": 0.0006,
+ "loss": 4.177009582519531,
+ "step": 6303
+ },
+ {
+ "epoch": 87.55919615552644,
+ "grad_norm": 0.44220849871635437,
+ "learning_rate": 0.0006,
+ "loss": 4.2085065841674805,
+ "step": 6304
+ },
+ {
+ "epoch": 87.57317605941459,
+ "grad_norm": 0.42026737332344055,
+ "learning_rate": 0.0006,
+ "loss": 4.185011863708496,
+ "step": 6305
+ },
+ {
+ "epoch": 87.58715596330275,
+ "grad_norm": 0.44712957739830017,
+ "learning_rate": 0.0006,
+ "loss": 4.245328903198242,
+ "step": 6306
+ },
+ {
+ "epoch": 87.60113586719092,
+ "grad_norm": 0.44793379306793213,
+ "learning_rate": 0.0006,
+ "loss": 4.212185382843018,
+ "step": 6307
+ },
+ {
+ "epoch": 87.61511577107908,
+ "grad_norm": 0.4273943305015564,
+ "learning_rate": 0.0006,
+ "loss": 4.197522163391113,
+ "step": 6308
+ },
+ {
+ "epoch": 87.62909567496723,
+ "grad_norm": 0.42533764243125916,
+ "learning_rate": 0.0006,
+ "loss": 4.172801971435547,
+ "step": 6309
+ },
+ {
+ "epoch": 87.6430755788554,
+ "grad_norm": 0.43188905715942383,
+ "learning_rate": 0.0006,
+ "loss": 4.165098190307617,
+ "step": 6310
+ },
+ {
+ "epoch": 87.65705548274356,
+ "grad_norm": 0.44534748792648315,
+ "learning_rate": 0.0006,
+ "loss": 4.229440212249756,
+ "step": 6311
+ },
+ {
+ "epoch": 87.67103538663171,
+ "grad_norm": 0.45937788486480713,
+ "learning_rate": 0.0006,
+ "loss": 4.20249080657959,
+ "step": 6312
+ },
+ {
+ "epoch": 87.68501529051987,
+ "grad_norm": 0.4640798568725586,
+ "learning_rate": 0.0006,
+ "loss": 4.2877068519592285,
+ "step": 6313
+ },
+ {
+ "epoch": 87.69899519440804,
+ "grad_norm": 0.4504205882549286,
+ "learning_rate": 0.0006,
+ "loss": 4.308557510375977,
+ "step": 6314
+ },
+ {
+ "epoch": 87.7129750982962,
+ "grad_norm": 0.4654962122440338,
+ "learning_rate": 0.0006,
+ "loss": 4.335789203643799,
+ "step": 6315
+ },
+ {
+ "epoch": 87.72695500218435,
+ "grad_norm": 0.44867751002311707,
+ "learning_rate": 0.0006,
+ "loss": 4.255827903747559,
+ "step": 6316
+ },
+ {
+ "epoch": 87.74093490607252,
+ "grad_norm": 0.42953476309776306,
+ "learning_rate": 0.0006,
+ "loss": 4.224635124206543,
+ "step": 6317
+ },
+ {
+ "epoch": 87.75491480996068,
+ "grad_norm": 0.4550751745700836,
+ "learning_rate": 0.0006,
+ "loss": 4.280992031097412,
+ "step": 6318
+ },
+ {
+ "epoch": 87.76889471384884,
+ "grad_norm": 0.455138236284256,
+ "learning_rate": 0.0006,
+ "loss": 4.20681095123291,
+ "step": 6319
+ },
+ {
+ "epoch": 87.78287461773701,
+ "grad_norm": 0.4809635579586029,
+ "learning_rate": 0.0006,
+ "loss": 4.307140350341797,
+ "step": 6320
+ },
+ {
+ "epoch": 87.79685452162516,
+ "grad_norm": 0.4570373594760895,
+ "learning_rate": 0.0006,
+ "loss": 4.204259395599365,
+ "step": 6321
+ },
+ {
+ "epoch": 87.81083442551332,
+ "grad_norm": 0.4444306194782257,
+ "learning_rate": 0.0006,
+ "loss": 4.341936111450195,
+ "step": 6322
+ },
+ {
+ "epoch": 87.82481432940149,
+ "grad_norm": 0.42678138613700867,
+ "learning_rate": 0.0006,
+ "loss": 4.294060230255127,
+ "step": 6323
+ },
+ {
+ "epoch": 87.83879423328965,
+ "grad_norm": 0.43476608395576477,
+ "learning_rate": 0.0006,
+ "loss": 4.215855598449707,
+ "step": 6324
+ },
+ {
+ "epoch": 87.8527741371778,
+ "grad_norm": 0.42589980363845825,
+ "learning_rate": 0.0006,
+ "loss": 4.274613380432129,
+ "step": 6325
+ },
+ {
+ "epoch": 87.86675404106597,
+ "grad_norm": 0.4429503083229065,
+ "learning_rate": 0.0006,
+ "loss": 4.283843994140625,
+ "step": 6326
+ },
+ {
+ "epoch": 87.88073394495413,
+ "grad_norm": 0.4391273558139801,
+ "learning_rate": 0.0006,
+ "loss": 4.207469463348389,
+ "step": 6327
+ },
+ {
+ "epoch": 87.89471384884229,
+ "grad_norm": 0.4276169538497925,
+ "learning_rate": 0.0006,
+ "loss": 4.249349594116211,
+ "step": 6328
+ },
+ {
+ "epoch": 87.90869375273044,
+ "grad_norm": 0.40960410237312317,
+ "learning_rate": 0.0006,
+ "loss": 4.273435592651367,
+ "step": 6329
+ },
+ {
+ "epoch": 87.92267365661861,
+ "grad_norm": 0.4168111979961395,
+ "learning_rate": 0.0006,
+ "loss": 4.251261234283447,
+ "step": 6330
+ },
+ {
+ "epoch": 87.93665356050677,
+ "grad_norm": 0.41783952713012695,
+ "learning_rate": 0.0006,
+ "loss": 4.247318267822266,
+ "step": 6331
+ },
+ {
+ "epoch": 87.95063346439493,
+ "grad_norm": 0.4538755416870117,
+ "learning_rate": 0.0006,
+ "loss": 4.262417793273926,
+ "step": 6332
+ },
+ {
+ "epoch": 87.9646133682831,
+ "grad_norm": 0.46401816606521606,
+ "learning_rate": 0.0006,
+ "loss": 4.208325386047363,
+ "step": 6333
+ },
+ {
+ "epoch": 87.97859327217125,
+ "grad_norm": 0.4470364451408386,
+ "learning_rate": 0.0006,
+ "loss": 4.340447902679443,
+ "step": 6334
+ },
+ {
+ "epoch": 87.99257317605941,
+ "grad_norm": 0.42655766010284424,
+ "learning_rate": 0.0006,
+ "loss": 4.263899326324463,
+ "step": 6335
+ },
+ {
+ "epoch": 88.0,
+ "grad_norm": 0.509168803691864,
+ "learning_rate": 0.0006,
+ "loss": 4.314913272857666,
+ "step": 6336
+ },
+ {
+ "epoch": 88.0,
+ "eval_loss": 6.432528972625732,
+ "eval_runtime": 43.7788,
+ "eval_samples_per_second": 55.78,
+ "eval_steps_per_second": 3.495,
+ "step": 6336
+ },
+ {
+ "epoch": 88.01397990388816,
+ "grad_norm": 0.4394129514694214,
+ "learning_rate": 0.0006,
+ "loss": 4.098550796508789,
+ "step": 6337
+ },
+ {
+ "epoch": 88.02795980777633,
+ "grad_norm": 0.5240156650543213,
+ "learning_rate": 0.0006,
+ "loss": 4.23394775390625,
+ "step": 6338
+ },
+ {
+ "epoch": 88.04193971166448,
+ "grad_norm": 0.5676344633102417,
+ "learning_rate": 0.0006,
+ "loss": 4.099154472351074,
+ "step": 6339
+ },
+ {
+ "epoch": 88.05591961555264,
+ "grad_norm": 0.6156212091445923,
+ "learning_rate": 0.0006,
+ "loss": 4.1330366134643555,
+ "step": 6340
+ },
+ {
+ "epoch": 88.06989951944081,
+ "grad_norm": 0.6814325451850891,
+ "learning_rate": 0.0006,
+ "loss": 4.072694778442383,
+ "step": 6341
+ },
+ {
+ "epoch": 88.08387942332897,
+ "grad_norm": 0.8030034303665161,
+ "learning_rate": 0.0006,
+ "loss": 4.105202674865723,
+ "step": 6342
+ },
+ {
+ "epoch": 88.09785932721712,
+ "grad_norm": 0.8481942415237427,
+ "learning_rate": 0.0006,
+ "loss": 4.197783470153809,
+ "step": 6343
+ },
+ {
+ "epoch": 88.1118392311053,
+ "grad_norm": 0.850947380065918,
+ "learning_rate": 0.0006,
+ "loss": 4.229393005371094,
+ "step": 6344
+ },
+ {
+ "epoch": 88.12581913499345,
+ "grad_norm": 0.8265675902366638,
+ "learning_rate": 0.0006,
+ "loss": 4.217302322387695,
+ "step": 6345
+ },
+ {
+ "epoch": 88.1397990388816,
+ "grad_norm": 0.68138188123703,
+ "learning_rate": 0.0006,
+ "loss": 4.041551113128662,
+ "step": 6346
+ },
+ {
+ "epoch": 88.15377894276976,
+ "grad_norm": 0.6319344639778137,
+ "learning_rate": 0.0006,
+ "loss": 4.226554870605469,
+ "step": 6347
+ },
+ {
+ "epoch": 88.16775884665793,
+ "grad_norm": 0.6571003794670105,
+ "learning_rate": 0.0006,
+ "loss": 4.237563133239746,
+ "step": 6348
+ },
+ {
+ "epoch": 88.18173875054609,
+ "grad_norm": 0.5948857665061951,
+ "learning_rate": 0.0006,
+ "loss": 4.038263320922852,
+ "step": 6349
+ },
+ {
+ "epoch": 88.19571865443424,
+ "grad_norm": 0.5716128349304199,
+ "learning_rate": 0.0006,
+ "loss": 4.119385719299316,
+ "step": 6350
+ },
+ {
+ "epoch": 88.20969855832242,
+ "grad_norm": 0.5655331015586853,
+ "learning_rate": 0.0006,
+ "loss": 4.186577320098877,
+ "step": 6351
+ },
+ {
+ "epoch": 88.22367846221057,
+ "grad_norm": 0.5525882244110107,
+ "learning_rate": 0.0006,
+ "loss": 4.243231773376465,
+ "step": 6352
+ },
+ {
+ "epoch": 88.23765836609873,
+ "grad_norm": 0.5307421088218689,
+ "learning_rate": 0.0006,
+ "loss": 4.087076187133789,
+ "step": 6353
+ },
+ {
+ "epoch": 88.2516382699869,
+ "grad_norm": 0.5078102350234985,
+ "learning_rate": 0.0006,
+ "loss": 4.140388488769531,
+ "step": 6354
+ },
+ {
+ "epoch": 88.26561817387505,
+ "grad_norm": 0.47047364711761475,
+ "learning_rate": 0.0006,
+ "loss": 4.150869369506836,
+ "step": 6355
+ },
+ {
+ "epoch": 88.27959807776321,
+ "grad_norm": 0.49231794476509094,
+ "learning_rate": 0.0006,
+ "loss": 4.194167613983154,
+ "step": 6356
+ },
+ {
+ "epoch": 88.29357798165138,
+ "grad_norm": 0.5090434551239014,
+ "learning_rate": 0.0006,
+ "loss": 4.1998066902160645,
+ "step": 6357
+ },
+ {
+ "epoch": 88.30755788553954,
+ "grad_norm": 0.4979526698589325,
+ "learning_rate": 0.0006,
+ "loss": 4.166561603546143,
+ "step": 6358
+ },
+ {
+ "epoch": 88.3215377894277,
+ "grad_norm": 0.49379774928092957,
+ "learning_rate": 0.0006,
+ "loss": 4.1152544021606445,
+ "step": 6359
+ },
+ {
+ "epoch": 88.33551769331586,
+ "grad_norm": 0.4689238369464874,
+ "learning_rate": 0.0006,
+ "loss": 4.072159767150879,
+ "step": 6360
+ },
+ {
+ "epoch": 88.34949759720402,
+ "grad_norm": 0.46816980838775635,
+ "learning_rate": 0.0006,
+ "loss": 4.18184232711792,
+ "step": 6361
+ },
+ {
+ "epoch": 88.36347750109218,
+ "grad_norm": 0.4660980701446533,
+ "learning_rate": 0.0006,
+ "loss": 4.234951972961426,
+ "step": 6362
+ },
+ {
+ "epoch": 88.37745740498035,
+ "grad_norm": 0.4613046646118164,
+ "learning_rate": 0.0006,
+ "loss": 4.201333999633789,
+ "step": 6363
+ },
+ {
+ "epoch": 88.3914373088685,
+ "grad_norm": 0.4615226686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.188490867614746,
+ "step": 6364
+ },
+ {
+ "epoch": 88.40541721275666,
+ "grad_norm": 0.4791965186595917,
+ "learning_rate": 0.0006,
+ "loss": 4.14546537399292,
+ "step": 6365
+ },
+ {
+ "epoch": 88.41939711664482,
+ "grad_norm": 0.47666725516319275,
+ "learning_rate": 0.0006,
+ "loss": 4.196171760559082,
+ "step": 6366
+ },
+ {
+ "epoch": 88.43337702053299,
+ "grad_norm": 0.4990350604057312,
+ "learning_rate": 0.0006,
+ "loss": 4.266140937805176,
+ "step": 6367
+ },
+ {
+ "epoch": 88.44735692442114,
+ "grad_norm": 0.46699395775794983,
+ "learning_rate": 0.0006,
+ "loss": 4.166864395141602,
+ "step": 6368
+ },
+ {
+ "epoch": 88.4613368283093,
+ "grad_norm": 0.4724302291870117,
+ "learning_rate": 0.0006,
+ "loss": 4.206777095794678,
+ "step": 6369
+ },
+ {
+ "epoch": 88.47531673219747,
+ "grad_norm": 0.47723710536956787,
+ "learning_rate": 0.0006,
+ "loss": 4.1860880851745605,
+ "step": 6370
+ },
+ {
+ "epoch": 88.48929663608563,
+ "grad_norm": 0.46229004859924316,
+ "learning_rate": 0.0006,
+ "loss": 4.241762161254883,
+ "step": 6371
+ },
+ {
+ "epoch": 88.50327653997378,
+ "grad_norm": 0.4399679899215698,
+ "learning_rate": 0.0006,
+ "loss": 4.1255388259887695,
+ "step": 6372
+ },
+ {
+ "epoch": 88.51725644386195,
+ "grad_norm": 0.4210696816444397,
+ "learning_rate": 0.0006,
+ "loss": 4.226009368896484,
+ "step": 6373
+ },
+ {
+ "epoch": 88.53123634775011,
+ "grad_norm": 0.4285459816455841,
+ "learning_rate": 0.0006,
+ "loss": 4.266463279724121,
+ "step": 6374
+ },
+ {
+ "epoch": 88.54521625163827,
+ "grad_norm": 0.45448604226112366,
+ "learning_rate": 0.0006,
+ "loss": 4.243244171142578,
+ "step": 6375
+ },
+ {
+ "epoch": 88.55919615552644,
+ "grad_norm": 0.4520719349384308,
+ "learning_rate": 0.0006,
+ "loss": 4.208941459655762,
+ "step": 6376
+ },
+ {
+ "epoch": 88.57317605941459,
+ "grad_norm": 0.4451465308666229,
+ "learning_rate": 0.0006,
+ "loss": 4.247753143310547,
+ "step": 6377
+ },
+ {
+ "epoch": 88.58715596330275,
+ "grad_norm": 0.4189188778400421,
+ "learning_rate": 0.0006,
+ "loss": 4.195448398590088,
+ "step": 6378
+ },
+ {
+ "epoch": 88.60113586719092,
+ "grad_norm": 0.4491824209690094,
+ "learning_rate": 0.0006,
+ "loss": 4.198684215545654,
+ "step": 6379
+ },
+ {
+ "epoch": 88.61511577107908,
+ "grad_norm": 0.43947094678878784,
+ "learning_rate": 0.0006,
+ "loss": 4.153960227966309,
+ "step": 6380
+ },
+ {
+ "epoch": 88.62909567496723,
+ "grad_norm": 0.4456414580345154,
+ "learning_rate": 0.0006,
+ "loss": 4.2118024826049805,
+ "step": 6381
+ },
+ {
+ "epoch": 88.6430755788554,
+ "grad_norm": 0.4536513090133667,
+ "learning_rate": 0.0006,
+ "loss": 4.276762008666992,
+ "step": 6382
+ },
+ {
+ "epoch": 88.65705548274356,
+ "grad_norm": 0.44052013754844666,
+ "learning_rate": 0.0006,
+ "loss": 4.312568187713623,
+ "step": 6383
+ },
+ {
+ "epoch": 88.67103538663171,
+ "grad_norm": 0.41901564598083496,
+ "learning_rate": 0.0006,
+ "loss": 4.142590522766113,
+ "step": 6384
+ },
+ {
+ "epoch": 88.68501529051987,
+ "grad_norm": 0.4399242401123047,
+ "learning_rate": 0.0006,
+ "loss": 4.267861366271973,
+ "step": 6385
+ },
+ {
+ "epoch": 88.69899519440804,
+ "grad_norm": 0.43378013372421265,
+ "learning_rate": 0.0006,
+ "loss": 4.2185163497924805,
+ "step": 6386
+ },
+ {
+ "epoch": 88.7129750982962,
+ "grad_norm": 0.4383338987827301,
+ "learning_rate": 0.0006,
+ "loss": 4.114858627319336,
+ "step": 6387
+ },
+ {
+ "epoch": 88.72695500218435,
+ "grad_norm": 0.42995721101760864,
+ "learning_rate": 0.0006,
+ "loss": 4.287274360656738,
+ "step": 6388
+ },
+ {
+ "epoch": 88.74093490607252,
+ "grad_norm": 0.45664533972740173,
+ "learning_rate": 0.0006,
+ "loss": 4.258739948272705,
+ "step": 6389
+ },
+ {
+ "epoch": 88.75491480996068,
+ "grad_norm": 0.4731299579143524,
+ "learning_rate": 0.0006,
+ "loss": 4.317540168762207,
+ "step": 6390
+ },
+ {
+ "epoch": 88.76889471384884,
+ "grad_norm": 0.48365700244903564,
+ "learning_rate": 0.0006,
+ "loss": 4.192890167236328,
+ "step": 6391
+ },
+ {
+ "epoch": 88.78287461773701,
+ "grad_norm": 0.5313749313354492,
+ "learning_rate": 0.0006,
+ "loss": 4.293295860290527,
+ "step": 6392
+ },
+ {
+ "epoch": 88.79685452162516,
+ "grad_norm": 0.5615261197090149,
+ "learning_rate": 0.0006,
+ "loss": 4.228304862976074,
+ "step": 6393
+ },
+ {
+ "epoch": 88.81083442551332,
+ "grad_norm": 0.5600057244300842,
+ "learning_rate": 0.0006,
+ "loss": 4.122723579406738,
+ "step": 6394
+ },
+ {
+ "epoch": 88.82481432940149,
+ "grad_norm": 0.5509400367736816,
+ "learning_rate": 0.0006,
+ "loss": 4.270684719085693,
+ "step": 6395
+ },
+ {
+ "epoch": 88.83879423328965,
+ "grad_norm": 0.5091027021408081,
+ "learning_rate": 0.0006,
+ "loss": 4.219861030578613,
+ "step": 6396
+ },
+ {
+ "epoch": 88.8527741371778,
+ "grad_norm": 0.467963308095932,
+ "learning_rate": 0.0006,
+ "loss": 4.2875518798828125,
+ "step": 6397
+ },
+ {
+ "epoch": 88.86675404106597,
+ "grad_norm": 0.4483562707901001,
+ "learning_rate": 0.0006,
+ "loss": 4.2151031494140625,
+ "step": 6398
+ },
+ {
+ "epoch": 88.88073394495413,
+ "grad_norm": 0.494113951921463,
+ "learning_rate": 0.0006,
+ "loss": 4.2288713455200195,
+ "step": 6399
+ },
+ {
+ "epoch": 88.89471384884229,
+ "grad_norm": 0.44725731015205383,
+ "learning_rate": 0.0006,
+ "loss": 4.267457962036133,
+ "step": 6400
+ },
+ {
+ "epoch": 88.90869375273044,
+ "grad_norm": 0.43298426270484924,
+ "learning_rate": 0.0006,
+ "loss": 4.271795272827148,
+ "step": 6401
+ },
+ {
+ "epoch": 88.92267365661861,
+ "grad_norm": 0.4664212465286255,
+ "learning_rate": 0.0006,
+ "loss": 4.186749458312988,
+ "step": 6402
+ },
+ {
+ "epoch": 88.93665356050677,
+ "grad_norm": 0.49105745553970337,
+ "learning_rate": 0.0006,
+ "loss": 4.167403697967529,
+ "step": 6403
+ },
+ {
+ "epoch": 88.95063346439493,
+ "grad_norm": 0.47057443857192993,
+ "learning_rate": 0.0006,
+ "loss": 4.183148384094238,
+ "step": 6404
+ },
+ {
+ "epoch": 88.9646133682831,
+ "grad_norm": 0.44123876094818115,
+ "learning_rate": 0.0006,
+ "loss": 4.230330467224121,
+ "step": 6405
+ },
+ {
+ "epoch": 88.97859327217125,
+ "grad_norm": 0.4363035261631012,
+ "learning_rate": 0.0006,
+ "loss": 4.26979923248291,
+ "step": 6406
+ },
+ {
+ "epoch": 88.99257317605941,
+ "grad_norm": 0.43350642919540405,
+ "learning_rate": 0.0006,
+ "loss": 4.286896705627441,
+ "step": 6407
+ },
+ {
+ "epoch": 89.0,
+ "grad_norm": 0.5350832343101501,
+ "learning_rate": 0.0006,
+ "loss": 4.34681510925293,
+ "step": 6408
+ },
+ {
+ "epoch": 89.0,
+ "eval_loss": 6.455365180969238,
+ "eval_runtime": 44.1423,
+ "eval_samples_per_second": 55.321,
+ "eval_steps_per_second": 3.466,
+ "step": 6408
+ },
+ {
+ "epoch": 89.01397990388816,
+ "grad_norm": 0.4708399176597595,
+ "learning_rate": 0.0006,
+ "loss": 4.036174774169922,
+ "step": 6409
+ },
+ {
+ "epoch": 89.02795980777633,
+ "grad_norm": 0.525632917881012,
+ "learning_rate": 0.0006,
+ "loss": 4.141895294189453,
+ "step": 6410
+ },
+ {
+ "epoch": 89.04193971166448,
+ "grad_norm": 0.5222662687301636,
+ "learning_rate": 0.0006,
+ "loss": 4.112619400024414,
+ "step": 6411
+ },
+ {
+ "epoch": 89.05591961555264,
+ "grad_norm": 0.48093459010124207,
+ "learning_rate": 0.0006,
+ "loss": 4.164566516876221,
+ "step": 6412
+ },
+ {
+ "epoch": 89.06989951944081,
+ "grad_norm": 0.511407732963562,
+ "learning_rate": 0.0006,
+ "loss": 4.165305137634277,
+ "step": 6413
+ },
+ {
+ "epoch": 89.08387942332897,
+ "grad_norm": 0.468172162771225,
+ "learning_rate": 0.0006,
+ "loss": 4.208954811096191,
+ "step": 6414
+ },
+ {
+ "epoch": 89.09785932721712,
+ "grad_norm": 0.4654451906681061,
+ "learning_rate": 0.0006,
+ "loss": 4.143332481384277,
+ "step": 6415
+ },
+ {
+ "epoch": 89.1118392311053,
+ "grad_norm": 0.49474361538887024,
+ "learning_rate": 0.0006,
+ "loss": 4.059474945068359,
+ "step": 6416
+ },
+ {
+ "epoch": 89.12581913499345,
+ "grad_norm": 0.5038414001464844,
+ "learning_rate": 0.0006,
+ "loss": 4.041683673858643,
+ "step": 6417
+ },
+ {
+ "epoch": 89.1397990388816,
+ "grad_norm": 0.4938134551048279,
+ "learning_rate": 0.0006,
+ "loss": 4.133648872375488,
+ "step": 6418
+ },
+ {
+ "epoch": 89.15377894276976,
+ "grad_norm": 0.4953842759132385,
+ "learning_rate": 0.0006,
+ "loss": 4.123804092407227,
+ "step": 6419
+ },
+ {
+ "epoch": 89.16775884665793,
+ "grad_norm": 0.5027281641960144,
+ "learning_rate": 0.0006,
+ "loss": 4.190883636474609,
+ "step": 6420
+ },
+ {
+ "epoch": 89.18173875054609,
+ "grad_norm": 0.5707582235336304,
+ "learning_rate": 0.0006,
+ "loss": 4.118431091308594,
+ "step": 6421
+ },
+ {
+ "epoch": 89.19571865443424,
+ "grad_norm": 0.6110844016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.128604888916016,
+ "step": 6422
+ },
+ {
+ "epoch": 89.20969855832242,
+ "grad_norm": 0.7164067625999451,
+ "learning_rate": 0.0006,
+ "loss": 4.193438529968262,
+ "step": 6423
+ },
+ {
+ "epoch": 89.22367846221057,
+ "grad_norm": 0.8181775808334351,
+ "learning_rate": 0.0006,
+ "loss": 4.164249897003174,
+ "step": 6424
+ },
+ {
+ "epoch": 89.23765836609873,
+ "grad_norm": 0.8548126220703125,
+ "learning_rate": 0.0006,
+ "loss": 4.179556846618652,
+ "step": 6425
+ },
+ {
+ "epoch": 89.2516382699869,
+ "grad_norm": 0.7643877863883972,
+ "learning_rate": 0.0006,
+ "loss": 4.274655342102051,
+ "step": 6426
+ },
+ {
+ "epoch": 89.26561817387505,
+ "grad_norm": 0.6268690824508667,
+ "learning_rate": 0.0006,
+ "loss": 4.15860652923584,
+ "step": 6427
+ },
+ {
+ "epoch": 89.27959807776321,
+ "grad_norm": 0.5615007877349854,
+ "learning_rate": 0.0006,
+ "loss": 4.081657409667969,
+ "step": 6428
+ },
+ {
+ "epoch": 89.29357798165138,
+ "grad_norm": 0.5658699870109558,
+ "learning_rate": 0.0006,
+ "loss": 4.072505950927734,
+ "step": 6429
+ },
+ {
+ "epoch": 89.30755788553954,
+ "grad_norm": 0.546249508857727,
+ "learning_rate": 0.0006,
+ "loss": 4.106170654296875,
+ "step": 6430
+ },
+ {
+ "epoch": 89.3215377894277,
+ "grad_norm": 0.5397952198982239,
+ "learning_rate": 0.0006,
+ "loss": 4.177685737609863,
+ "step": 6431
+ },
+ {
+ "epoch": 89.33551769331586,
+ "grad_norm": 0.49549877643585205,
+ "learning_rate": 0.0006,
+ "loss": 4.157642841339111,
+ "step": 6432
+ },
+ {
+ "epoch": 89.34949759720402,
+ "grad_norm": 0.5166518092155457,
+ "learning_rate": 0.0006,
+ "loss": 4.233739852905273,
+ "step": 6433
+ },
+ {
+ "epoch": 89.36347750109218,
+ "grad_norm": 0.5124993920326233,
+ "learning_rate": 0.0006,
+ "loss": 4.195950031280518,
+ "step": 6434
+ },
+ {
+ "epoch": 89.37745740498035,
+ "grad_norm": 0.5590482950210571,
+ "learning_rate": 0.0006,
+ "loss": 4.23075532913208,
+ "step": 6435
+ },
+ {
+ "epoch": 89.3914373088685,
+ "grad_norm": 0.5433930158615112,
+ "learning_rate": 0.0006,
+ "loss": 4.222860336303711,
+ "step": 6436
+ },
+ {
+ "epoch": 89.40541721275666,
+ "grad_norm": 0.5289043188095093,
+ "learning_rate": 0.0006,
+ "loss": 4.150032043457031,
+ "step": 6437
+ },
+ {
+ "epoch": 89.41939711664482,
+ "grad_norm": 0.50300133228302,
+ "learning_rate": 0.0006,
+ "loss": 4.162202835083008,
+ "step": 6438
+ },
+ {
+ "epoch": 89.43337702053299,
+ "grad_norm": 0.5404106378555298,
+ "learning_rate": 0.0006,
+ "loss": 4.170771598815918,
+ "step": 6439
+ },
+ {
+ "epoch": 89.44735692442114,
+ "grad_norm": 0.5366392731666565,
+ "learning_rate": 0.0006,
+ "loss": 4.193058013916016,
+ "step": 6440
+ },
+ {
+ "epoch": 89.4613368283093,
+ "grad_norm": 0.5408844351768494,
+ "learning_rate": 0.0006,
+ "loss": 4.155562400817871,
+ "step": 6441
+ },
+ {
+ "epoch": 89.47531673219747,
+ "grad_norm": 0.5111629366874695,
+ "learning_rate": 0.0006,
+ "loss": 4.128347396850586,
+ "step": 6442
+ },
+ {
+ "epoch": 89.48929663608563,
+ "grad_norm": 0.5085851550102234,
+ "learning_rate": 0.0006,
+ "loss": 4.229991912841797,
+ "step": 6443
+ },
+ {
+ "epoch": 89.50327653997378,
+ "grad_norm": 0.4959278106689453,
+ "learning_rate": 0.0006,
+ "loss": 4.226166248321533,
+ "step": 6444
+ },
+ {
+ "epoch": 89.51725644386195,
+ "grad_norm": 0.5022532343864441,
+ "learning_rate": 0.0006,
+ "loss": 4.289538383483887,
+ "step": 6445
+ },
+ {
+ "epoch": 89.53123634775011,
+ "grad_norm": 0.4877833425998688,
+ "learning_rate": 0.0006,
+ "loss": 4.147860527038574,
+ "step": 6446
+ },
+ {
+ "epoch": 89.54521625163827,
+ "grad_norm": 0.471768319606781,
+ "learning_rate": 0.0006,
+ "loss": 4.2429890632629395,
+ "step": 6447
+ },
+ {
+ "epoch": 89.55919615552644,
+ "grad_norm": 0.4479426443576813,
+ "learning_rate": 0.0006,
+ "loss": 4.193235397338867,
+ "step": 6448
+ },
+ {
+ "epoch": 89.57317605941459,
+ "grad_norm": 0.4530574083328247,
+ "learning_rate": 0.0006,
+ "loss": 4.133496284484863,
+ "step": 6449
+ },
+ {
+ "epoch": 89.58715596330275,
+ "grad_norm": 0.440782368183136,
+ "learning_rate": 0.0006,
+ "loss": 4.25516414642334,
+ "step": 6450
+ },
+ {
+ "epoch": 89.60113586719092,
+ "grad_norm": 0.4279060959815979,
+ "learning_rate": 0.0006,
+ "loss": 4.155753135681152,
+ "step": 6451
+ },
+ {
+ "epoch": 89.61511577107908,
+ "grad_norm": 0.4291892945766449,
+ "learning_rate": 0.0006,
+ "loss": 4.073741436004639,
+ "step": 6452
+ },
+ {
+ "epoch": 89.62909567496723,
+ "grad_norm": 0.42664697766304016,
+ "learning_rate": 0.0006,
+ "loss": 4.167827129364014,
+ "step": 6453
+ },
+ {
+ "epoch": 89.6430755788554,
+ "grad_norm": 0.43017902970314026,
+ "learning_rate": 0.0006,
+ "loss": 4.161744117736816,
+ "step": 6454
+ },
+ {
+ "epoch": 89.65705548274356,
+ "grad_norm": 0.4454079270362854,
+ "learning_rate": 0.0006,
+ "loss": 4.2425856590271,
+ "step": 6455
+ },
+ {
+ "epoch": 89.67103538663171,
+ "grad_norm": 0.439971387386322,
+ "learning_rate": 0.0006,
+ "loss": 4.149636745452881,
+ "step": 6456
+ },
+ {
+ "epoch": 89.68501529051987,
+ "grad_norm": 0.41075047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.2641754150390625,
+ "step": 6457
+ },
+ {
+ "epoch": 89.69899519440804,
+ "grad_norm": 0.4242379367351532,
+ "learning_rate": 0.0006,
+ "loss": 4.19976806640625,
+ "step": 6458
+ },
+ {
+ "epoch": 89.7129750982962,
+ "grad_norm": 0.449848473072052,
+ "learning_rate": 0.0006,
+ "loss": 4.209725379943848,
+ "step": 6459
+ },
+ {
+ "epoch": 89.72695500218435,
+ "grad_norm": 0.4313943088054657,
+ "learning_rate": 0.0006,
+ "loss": 4.189460754394531,
+ "step": 6460
+ },
+ {
+ "epoch": 89.74093490607252,
+ "grad_norm": 0.4117465615272522,
+ "learning_rate": 0.0006,
+ "loss": 4.23152494430542,
+ "step": 6461
+ },
+ {
+ "epoch": 89.75491480996068,
+ "grad_norm": 0.43824872374534607,
+ "learning_rate": 0.0006,
+ "loss": 4.275446891784668,
+ "step": 6462
+ },
+ {
+ "epoch": 89.76889471384884,
+ "grad_norm": 0.4223631024360657,
+ "learning_rate": 0.0006,
+ "loss": 4.213408470153809,
+ "step": 6463
+ },
+ {
+ "epoch": 89.78287461773701,
+ "grad_norm": 0.4584514796733856,
+ "learning_rate": 0.0006,
+ "loss": 4.268832206726074,
+ "step": 6464
+ },
+ {
+ "epoch": 89.79685452162516,
+ "grad_norm": 0.494238018989563,
+ "learning_rate": 0.0006,
+ "loss": 4.247956275939941,
+ "step": 6465
+ },
+ {
+ "epoch": 89.81083442551332,
+ "grad_norm": 0.5107383728027344,
+ "learning_rate": 0.0006,
+ "loss": 4.252870559692383,
+ "step": 6466
+ },
+ {
+ "epoch": 89.82481432940149,
+ "grad_norm": 0.5290380716323853,
+ "learning_rate": 0.0006,
+ "loss": 4.171296119689941,
+ "step": 6467
+ },
+ {
+ "epoch": 89.83879423328965,
+ "grad_norm": 0.5208032727241516,
+ "learning_rate": 0.0006,
+ "loss": 4.278501510620117,
+ "step": 6468
+ },
+ {
+ "epoch": 89.8527741371778,
+ "grad_norm": 0.4737851321697235,
+ "learning_rate": 0.0006,
+ "loss": 4.302886962890625,
+ "step": 6469
+ },
+ {
+ "epoch": 89.86675404106597,
+ "grad_norm": 0.4450524151325226,
+ "learning_rate": 0.0006,
+ "loss": 4.232474327087402,
+ "step": 6470
+ },
+ {
+ "epoch": 89.88073394495413,
+ "grad_norm": 0.4427195191383362,
+ "learning_rate": 0.0006,
+ "loss": 4.172199249267578,
+ "step": 6471
+ },
+ {
+ "epoch": 89.89471384884229,
+ "grad_norm": 0.43507620692253113,
+ "learning_rate": 0.0006,
+ "loss": 4.249779224395752,
+ "step": 6472
+ },
+ {
+ "epoch": 89.90869375273044,
+ "grad_norm": 0.4446448087692261,
+ "learning_rate": 0.0006,
+ "loss": 4.1917572021484375,
+ "step": 6473
+ },
+ {
+ "epoch": 89.92267365661861,
+ "grad_norm": 0.4660170376300812,
+ "learning_rate": 0.0006,
+ "loss": 4.329804420471191,
+ "step": 6474
+ },
+ {
+ "epoch": 89.93665356050677,
+ "grad_norm": 0.4415760636329651,
+ "learning_rate": 0.0006,
+ "loss": 4.222148418426514,
+ "step": 6475
+ },
+ {
+ "epoch": 89.95063346439493,
+ "grad_norm": 0.4310150742530823,
+ "learning_rate": 0.0006,
+ "loss": 4.247184753417969,
+ "step": 6476
+ },
+ {
+ "epoch": 89.9646133682831,
+ "grad_norm": 0.41320905089378357,
+ "learning_rate": 0.0006,
+ "loss": 4.2810163497924805,
+ "step": 6477
+ },
+ {
+ "epoch": 89.97859327217125,
+ "grad_norm": 0.4054322838783264,
+ "learning_rate": 0.0006,
+ "loss": 4.183734893798828,
+ "step": 6478
+ },
+ {
+ "epoch": 89.99257317605941,
+ "grad_norm": 0.4412568211555481,
+ "learning_rate": 0.0006,
+ "loss": 4.278779029846191,
+ "step": 6479
+ },
+ {
+ "epoch": 90.0,
+ "grad_norm": 0.5007101893424988,
+ "learning_rate": 0.0006,
+ "loss": 4.1415252685546875,
+ "step": 6480
+ },
+ {
+ "epoch": 90.0,
+ "eval_loss": 6.461297512054443,
+ "eval_runtime": 43.9594,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 6480
+ },
+ {
+ "epoch": 90.01397990388816,
+ "grad_norm": 0.4736317992210388,
+ "learning_rate": 0.0006,
+ "loss": 4.099908828735352,
+ "step": 6481
+ },
+ {
+ "epoch": 90.02795980777633,
+ "grad_norm": 0.4843558669090271,
+ "learning_rate": 0.0006,
+ "loss": 4.172642707824707,
+ "step": 6482
+ },
+ {
+ "epoch": 90.04193971166448,
+ "grad_norm": 0.5011246204376221,
+ "learning_rate": 0.0006,
+ "loss": 4.213924407958984,
+ "step": 6483
+ },
+ {
+ "epoch": 90.05591961555264,
+ "grad_norm": 0.5023370981216431,
+ "learning_rate": 0.0006,
+ "loss": 4.07386589050293,
+ "step": 6484
+ },
+ {
+ "epoch": 90.06989951944081,
+ "grad_norm": 0.5439006090164185,
+ "learning_rate": 0.0006,
+ "loss": 4.213405609130859,
+ "step": 6485
+ },
+ {
+ "epoch": 90.08387942332897,
+ "grad_norm": 0.5799363851547241,
+ "learning_rate": 0.0006,
+ "loss": 4.134682655334473,
+ "step": 6486
+ },
+ {
+ "epoch": 90.09785932721712,
+ "grad_norm": 0.5854056477546692,
+ "learning_rate": 0.0006,
+ "loss": 4.171481132507324,
+ "step": 6487
+ },
+ {
+ "epoch": 90.1118392311053,
+ "grad_norm": 0.5867761373519897,
+ "learning_rate": 0.0006,
+ "loss": 4.168168544769287,
+ "step": 6488
+ },
+ {
+ "epoch": 90.12581913499345,
+ "grad_norm": 0.6079634428024292,
+ "learning_rate": 0.0006,
+ "loss": 4.112820148468018,
+ "step": 6489
+ },
+ {
+ "epoch": 90.1397990388816,
+ "grad_norm": 0.683942973613739,
+ "learning_rate": 0.0006,
+ "loss": 4.082386016845703,
+ "step": 6490
+ },
+ {
+ "epoch": 90.15377894276976,
+ "grad_norm": 0.7263656854629517,
+ "learning_rate": 0.0006,
+ "loss": 4.195616722106934,
+ "step": 6491
+ },
+ {
+ "epoch": 90.16775884665793,
+ "grad_norm": 0.7217769622802734,
+ "learning_rate": 0.0006,
+ "loss": 4.040677070617676,
+ "step": 6492
+ },
+ {
+ "epoch": 90.18173875054609,
+ "grad_norm": 0.6378527283668518,
+ "learning_rate": 0.0006,
+ "loss": 4.040353298187256,
+ "step": 6493
+ },
+ {
+ "epoch": 90.19571865443424,
+ "grad_norm": 0.551162838935852,
+ "learning_rate": 0.0006,
+ "loss": 4.206055164337158,
+ "step": 6494
+ },
+ {
+ "epoch": 90.20969855832242,
+ "grad_norm": 0.5096537470817566,
+ "learning_rate": 0.0006,
+ "loss": 4.1036481857299805,
+ "step": 6495
+ },
+ {
+ "epoch": 90.22367846221057,
+ "grad_norm": 0.5454337000846863,
+ "learning_rate": 0.0006,
+ "loss": 4.238418102264404,
+ "step": 6496
+ },
+ {
+ "epoch": 90.23765836609873,
+ "grad_norm": 0.5773523449897766,
+ "learning_rate": 0.0006,
+ "loss": 4.207098960876465,
+ "step": 6497
+ },
+ {
+ "epoch": 90.2516382699869,
+ "grad_norm": 0.5835501551628113,
+ "learning_rate": 0.0006,
+ "loss": 4.105945587158203,
+ "step": 6498
+ },
+ {
+ "epoch": 90.26561817387505,
+ "grad_norm": 0.5536814332008362,
+ "learning_rate": 0.0006,
+ "loss": 4.105280876159668,
+ "step": 6499
+ },
+ {
+ "epoch": 90.27959807776321,
+ "grad_norm": 0.5220383405685425,
+ "learning_rate": 0.0006,
+ "loss": 4.08549690246582,
+ "step": 6500
+ },
+ {
+ "epoch": 90.29357798165138,
+ "grad_norm": 0.46602848172187805,
+ "learning_rate": 0.0006,
+ "loss": 4.1158552169799805,
+ "step": 6501
+ },
+ {
+ "epoch": 90.30755788553954,
+ "grad_norm": 0.44694533944129944,
+ "learning_rate": 0.0006,
+ "loss": 4.079707145690918,
+ "step": 6502
+ },
+ {
+ "epoch": 90.3215377894277,
+ "grad_norm": 0.45450302958488464,
+ "learning_rate": 0.0006,
+ "loss": 4.149056434631348,
+ "step": 6503
+ },
+ {
+ "epoch": 90.33551769331586,
+ "grad_norm": 0.4568767845630646,
+ "learning_rate": 0.0006,
+ "loss": 4.119246482849121,
+ "step": 6504
+ },
+ {
+ "epoch": 90.34949759720402,
+ "grad_norm": 0.46284767985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.262497425079346,
+ "step": 6505
+ },
+ {
+ "epoch": 90.36347750109218,
+ "grad_norm": 0.4455495774745941,
+ "learning_rate": 0.0006,
+ "loss": 4.118424415588379,
+ "step": 6506
+ },
+ {
+ "epoch": 90.37745740498035,
+ "grad_norm": 0.48050129413604736,
+ "learning_rate": 0.0006,
+ "loss": 4.312798500061035,
+ "step": 6507
+ },
+ {
+ "epoch": 90.3914373088685,
+ "grad_norm": 0.46244576573371887,
+ "learning_rate": 0.0006,
+ "loss": 4.209562301635742,
+ "step": 6508
+ },
+ {
+ "epoch": 90.40541721275666,
+ "grad_norm": 0.4645386338233948,
+ "learning_rate": 0.0006,
+ "loss": 4.193568229675293,
+ "step": 6509
+ },
+ {
+ "epoch": 90.41939711664482,
+ "grad_norm": 0.4373893439769745,
+ "learning_rate": 0.0006,
+ "loss": 4.105895042419434,
+ "step": 6510
+ },
+ {
+ "epoch": 90.43337702053299,
+ "grad_norm": 0.46292024850845337,
+ "learning_rate": 0.0006,
+ "loss": 4.095562934875488,
+ "step": 6511
+ },
+ {
+ "epoch": 90.44735692442114,
+ "grad_norm": 0.44163432717323303,
+ "learning_rate": 0.0006,
+ "loss": 4.157992839813232,
+ "step": 6512
+ },
+ {
+ "epoch": 90.4613368283093,
+ "grad_norm": 0.44154176115989685,
+ "learning_rate": 0.0006,
+ "loss": 4.131383895874023,
+ "step": 6513
+ },
+ {
+ "epoch": 90.47531673219747,
+ "grad_norm": 0.42830872535705566,
+ "learning_rate": 0.0006,
+ "loss": 4.182307243347168,
+ "step": 6514
+ },
+ {
+ "epoch": 90.48929663608563,
+ "grad_norm": 0.4245883524417877,
+ "learning_rate": 0.0006,
+ "loss": 4.234951019287109,
+ "step": 6515
+ },
+ {
+ "epoch": 90.50327653997378,
+ "grad_norm": 0.43113020062446594,
+ "learning_rate": 0.0006,
+ "loss": 4.151059627532959,
+ "step": 6516
+ },
+ {
+ "epoch": 90.51725644386195,
+ "grad_norm": 0.43065521121025085,
+ "learning_rate": 0.0006,
+ "loss": 4.190324783325195,
+ "step": 6517
+ },
+ {
+ "epoch": 90.53123634775011,
+ "grad_norm": 0.42334818840026855,
+ "learning_rate": 0.0006,
+ "loss": 4.186755657196045,
+ "step": 6518
+ },
+ {
+ "epoch": 90.54521625163827,
+ "grad_norm": 0.4574383795261383,
+ "learning_rate": 0.0006,
+ "loss": 4.26517391204834,
+ "step": 6519
+ },
+ {
+ "epoch": 90.55919615552644,
+ "grad_norm": 0.4504454731941223,
+ "learning_rate": 0.0006,
+ "loss": 4.223880767822266,
+ "step": 6520
+ },
+ {
+ "epoch": 90.57317605941459,
+ "grad_norm": 0.4703640937805176,
+ "learning_rate": 0.0006,
+ "loss": 4.116531848907471,
+ "step": 6521
+ },
+ {
+ "epoch": 90.58715596330275,
+ "grad_norm": 0.4731002151966095,
+ "learning_rate": 0.0006,
+ "loss": 4.262688636779785,
+ "step": 6522
+ },
+ {
+ "epoch": 90.60113586719092,
+ "grad_norm": 0.46259617805480957,
+ "learning_rate": 0.0006,
+ "loss": 4.232296466827393,
+ "step": 6523
+ },
+ {
+ "epoch": 90.61511577107908,
+ "grad_norm": 0.4426702857017517,
+ "learning_rate": 0.0006,
+ "loss": 4.183609962463379,
+ "step": 6524
+ },
+ {
+ "epoch": 90.62909567496723,
+ "grad_norm": 0.4491911232471466,
+ "learning_rate": 0.0006,
+ "loss": 4.144387722015381,
+ "step": 6525
+ },
+ {
+ "epoch": 90.6430755788554,
+ "grad_norm": 0.47570469975471497,
+ "learning_rate": 0.0006,
+ "loss": 4.108075141906738,
+ "step": 6526
+ },
+ {
+ "epoch": 90.65705548274356,
+ "grad_norm": 0.4894469082355499,
+ "learning_rate": 0.0006,
+ "loss": 4.164253234863281,
+ "step": 6527
+ },
+ {
+ "epoch": 90.67103538663171,
+ "grad_norm": 0.4881099760532379,
+ "learning_rate": 0.0006,
+ "loss": 4.231298446655273,
+ "step": 6528
+ },
+ {
+ "epoch": 90.68501529051987,
+ "grad_norm": 0.5164856314659119,
+ "learning_rate": 0.0006,
+ "loss": 4.18210506439209,
+ "step": 6529
+ },
+ {
+ "epoch": 90.69899519440804,
+ "grad_norm": 0.5575158596038818,
+ "learning_rate": 0.0006,
+ "loss": 4.228113174438477,
+ "step": 6530
+ },
+ {
+ "epoch": 90.7129750982962,
+ "grad_norm": 0.5158578157424927,
+ "learning_rate": 0.0006,
+ "loss": 4.148558139801025,
+ "step": 6531
+ },
+ {
+ "epoch": 90.72695500218435,
+ "grad_norm": 0.5347267389297485,
+ "learning_rate": 0.0006,
+ "loss": 4.262085914611816,
+ "step": 6532
+ },
+ {
+ "epoch": 90.74093490607252,
+ "grad_norm": 0.5480825304985046,
+ "learning_rate": 0.0006,
+ "loss": 4.210175514221191,
+ "step": 6533
+ },
+ {
+ "epoch": 90.75491480996068,
+ "grad_norm": 0.4876071512699127,
+ "learning_rate": 0.0006,
+ "loss": 4.226661682128906,
+ "step": 6534
+ },
+ {
+ "epoch": 90.76889471384884,
+ "grad_norm": 0.4442245066165924,
+ "learning_rate": 0.0006,
+ "loss": 4.147059440612793,
+ "step": 6535
+ },
+ {
+ "epoch": 90.78287461773701,
+ "grad_norm": 0.4756869971752167,
+ "learning_rate": 0.0006,
+ "loss": 4.222451210021973,
+ "step": 6536
+ },
+ {
+ "epoch": 90.79685452162516,
+ "grad_norm": 0.4980628490447998,
+ "learning_rate": 0.0006,
+ "loss": 4.14457893371582,
+ "step": 6537
+ },
+ {
+ "epoch": 90.81083442551332,
+ "grad_norm": 0.4974704086780548,
+ "learning_rate": 0.0006,
+ "loss": 4.182971954345703,
+ "step": 6538
+ },
+ {
+ "epoch": 90.82481432940149,
+ "grad_norm": 0.4811905324459076,
+ "learning_rate": 0.0006,
+ "loss": 4.158481597900391,
+ "step": 6539
+ },
+ {
+ "epoch": 90.83879423328965,
+ "grad_norm": 0.4376634657382965,
+ "learning_rate": 0.0006,
+ "loss": 4.190642356872559,
+ "step": 6540
+ },
+ {
+ "epoch": 90.8527741371778,
+ "grad_norm": 0.42999622225761414,
+ "learning_rate": 0.0006,
+ "loss": 4.194205284118652,
+ "step": 6541
+ },
+ {
+ "epoch": 90.86675404106597,
+ "grad_norm": 0.4321860671043396,
+ "learning_rate": 0.0006,
+ "loss": 4.179698944091797,
+ "step": 6542
+ },
+ {
+ "epoch": 90.88073394495413,
+ "grad_norm": 0.4605638086795807,
+ "learning_rate": 0.0006,
+ "loss": 4.258350849151611,
+ "step": 6543
+ },
+ {
+ "epoch": 90.89471384884229,
+ "grad_norm": 0.4814271330833435,
+ "learning_rate": 0.0006,
+ "loss": 4.198588848114014,
+ "step": 6544
+ },
+ {
+ "epoch": 90.90869375273044,
+ "grad_norm": 0.46291470527648926,
+ "learning_rate": 0.0006,
+ "loss": 4.225842475891113,
+ "step": 6545
+ },
+ {
+ "epoch": 90.92267365661861,
+ "grad_norm": 0.46158573031425476,
+ "learning_rate": 0.0006,
+ "loss": 4.275699615478516,
+ "step": 6546
+ },
+ {
+ "epoch": 90.93665356050677,
+ "grad_norm": 0.4749220311641693,
+ "learning_rate": 0.0006,
+ "loss": 4.217929840087891,
+ "step": 6547
+ },
+ {
+ "epoch": 90.95063346439493,
+ "grad_norm": 0.49371638894081116,
+ "learning_rate": 0.0006,
+ "loss": 4.317490577697754,
+ "step": 6548
+ },
+ {
+ "epoch": 90.9646133682831,
+ "grad_norm": 0.5182164311408997,
+ "learning_rate": 0.0006,
+ "loss": 4.287131309509277,
+ "step": 6549
+ },
+ {
+ "epoch": 90.97859327217125,
+ "grad_norm": 0.504619300365448,
+ "learning_rate": 0.0006,
+ "loss": 4.274943828582764,
+ "step": 6550
+ },
+ {
+ "epoch": 90.99257317605941,
+ "grad_norm": 0.5169302225112915,
+ "learning_rate": 0.0006,
+ "loss": 4.274248123168945,
+ "step": 6551
+ },
+ {
+ "epoch": 91.0,
+ "grad_norm": 0.6098483204841614,
+ "learning_rate": 0.0006,
+ "loss": 4.270262718200684,
+ "step": 6552
+ },
+ {
+ "epoch": 91.0,
+ "eval_loss": 6.456219673156738,
+ "eval_runtime": 60.0476,
+ "eval_samples_per_second": 40.668,
+ "eval_steps_per_second": 2.548,
+ "step": 6552
+ },
+ {
+ "epoch": 91.01397990388816,
+ "grad_norm": 0.6079859733581543,
+ "learning_rate": 0.0006,
+ "loss": 4.244258880615234,
+ "step": 6553
+ },
+ {
+ "epoch": 91.02795980777633,
+ "grad_norm": 0.7200259566307068,
+ "learning_rate": 0.0006,
+ "loss": 4.034396171569824,
+ "step": 6554
+ },
+ {
+ "epoch": 91.04193971166448,
+ "grad_norm": 0.7871384620666504,
+ "learning_rate": 0.0006,
+ "loss": 4.155852317810059,
+ "step": 6555
+ },
+ {
+ "epoch": 91.05591961555264,
+ "grad_norm": 0.7778724431991577,
+ "learning_rate": 0.0006,
+ "loss": 4.049319744110107,
+ "step": 6556
+ },
+ {
+ "epoch": 91.06989951944081,
+ "grad_norm": 0.7762705683708191,
+ "learning_rate": 0.0006,
+ "loss": 4.115581512451172,
+ "step": 6557
+ },
+ {
+ "epoch": 91.08387942332897,
+ "grad_norm": 0.7568512558937073,
+ "learning_rate": 0.0006,
+ "loss": 4.080959320068359,
+ "step": 6558
+ },
+ {
+ "epoch": 91.09785932721712,
+ "grad_norm": 0.6478087306022644,
+ "learning_rate": 0.0006,
+ "loss": 4.1375508308410645,
+ "step": 6559
+ },
+ {
+ "epoch": 91.1118392311053,
+ "grad_norm": 0.5742989778518677,
+ "learning_rate": 0.0006,
+ "loss": 4.13807487487793,
+ "step": 6560
+ },
+ {
+ "epoch": 91.12581913499345,
+ "grad_norm": 0.6028420329093933,
+ "learning_rate": 0.0006,
+ "loss": 4.1374921798706055,
+ "step": 6561
+ },
+ {
+ "epoch": 91.1397990388816,
+ "grad_norm": 0.5676671862602234,
+ "learning_rate": 0.0006,
+ "loss": 4.0767621994018555,
+ "step": 6562
+ },
+ {
+ "epoch": 91.15377894276976,
+ "grad_norm": 0.5676539540290833,
+ "learning_rate": 0.0006,
+ "loss": 4.102802276611328,
+ "step": 6563
+ },
+ {
+ "epoch": 91.16775884665793,
+ "grad_norm": 0.5306137204170227,
+ "learning_rate": 0.0006,
+ "loss": 4.204309940338135,
+ "step": 6564
+ },
+ {
+ "epoch": 91.18173875054609,
+ "grad_norm": 0.5523825883865356,
+ "learning_rate": 0.0006,
+ "loss": 4.0658159255981445,
+ "step": 6565
+ },
+ {
+ "epoch": 91.19571865443424,
+ "grad_norm": 0.56495201587677,
+ "learning_rate": 0.0006,
+ "loss": 4.229331970214844,
+ "step": 6566
+ },
+ {
+ "epoch": 91.20969855832242,
+ "grad_norm": 0.5471879839897156,
+ "learning_rate": 0.0006,
+ "loss": 4.110147953033447,
+ "step": 6567
+ },
+ {
+ "epoch": 91.22367846221057,
+ "grad_norm": 0.5384636521339417,
+ "learning_rate": 0.0006,
+ "loss": 4.152271270751953,
+ "step": 6568
+ },
+ {
+ "epoch": 91.23765836609873,
+ "grad_norm": 0.5355082750320435,
+ "learning_rate": 0.0006,
+ "loss": 4.215263366699219,
+ "step": 6569
+ },
+ {
+ "epoch": 91.2516382699869,
+ "grad_norm": 0.5029492378234863,
+ "learning_rate": 0.0006,
+ "loss": 4.123118877410889,
+ "step": 6570
+ },
+ {
+ "epoch": 91.26561817387505,
+ "grad_norm": 0.5210943222045898,
+ "learning_rate": 0.0006,
+ "loss": 4.098264694213867,
+ "step": 6571
+ },
+ {
+ "epoch": 91.27959807776321,
+ "grad_norm": 0.5714336633682251,
+ "learning_rate": 0.0006,
+ "loss": 4.169662952423096,
+ "step": 6572
+ },
+ {
+ "epoch": 91.29357798165138,
+ "grad_norm": 0.6154706478118896,
+ "learning_rate": 0.0006,
+ "loss": 4.232303619384766,
+ "step": 6573
+ },
+ {
+ "epoch": 91.30755788553954,
+ "grad_norm": 0.6045266389846802,
+ "learning_rate": 0.0006,
+ "loss": 4.15605354309082,
+ "step": 6574
+ },
+ {
+ "epoch": 91.3215377894277,
+ "grad_norm": 0.5881073474884033,
+ "learning_rate": 0.0006,
+ "loss": 4.261946678161621,
+ "step": 6575
+ },
+ {
+ "epoch": 91.33551769331586,
+ "grad_norm": 0.608492374420166,
+ "learning_rate": 0.0006,
+ "loss": 4.181393623352051,
+ "step": 6576
+ },
+ {
+ "epoch": 91.34949759720402,
+ "grad_norm": 0.6032509803771973,
+ "learning_rate": 0.0006,
+ "loss": 4.177850723266602,
+ "step": 6577
+ },
+ {
+ "epoch": 91.36347750109218,
+ "grad_norm": 0.5491278767585754,
+ "learning_rate": 0.0006,
+ "loss": 4.170995712280273,
+ "step": 6578
+ },
+ {
+ "epoch": 91.37745740498035,
+ "grad_norm": 0.5672101974487305,
+ "learning_rate": 0.0006,
+ "loss": 4.231545448303223,
+ "step": 6579
+ },
+ {
+ "epoch": 91.3914373088685,
+ "grad_norm": 0.6280085444450378,
+ "learning_rate": 0.0006,
+ "loss": 4.192296028137207,
+ "step": 6580
+ },
+ {
+ "epoch": 91.40541721275666,
+ "grad_norm": 0.5944945216178894,
+ "learning_rate": 0.0006,
+ "loss": 4.0988969802856445,
+ "step": 6581
+ },
+ {
+ "epoch": 91.41939711664482,
+ "grad_norm": 0.49758782982826233,
+ "learning_rate": 0.0006,
+ "loss": 4.117204189300537,
+ "step": 6582
+ },
+ {
+ "epoch": 91.43337702053299,
+ "grad_norm": 0.5350571274757385,
+ "learning_rate": 0.0006,
+ "loss": 4.22514533996582,
+ "step": 6583
+ },
+ {
+ "epoch": 91.44735692442114,
+ "grad_norm": 0.5463851094245911,
+ "learning_rate": 0.0006,
+ "loss": 4.234988212585449,
+ "step": 6584
+ },
+ {
+ "epoch": 91.4613368283093,
+ "grad_norm": 0.49137967824935913,
+ "learning_rate": 0.0006,
+ "loss": 4.1259918212890625,
+ "step": 6585
+ },
+ {
+ "epoch": 91.47531673219747,
+ "grad_norm": 0.4858478903770447,
+ "learning_rate": 0.0006,
+ "loss": 4.17650842666626,
+ "step": 6586
+ },
+ {
+ "epoch": 91.48929663608563,
+ "grad_norm": 0.48751482367515564,
+ "learning_rate": 0.0006,
+ "loss": 4.1488447189331055,
+ "step": 6587
+ },
+ {
+ "epoch": 91.50327653997378,
+ "grad_norm": 0.48649269342422485,
+ "learning_rate": 0.0006,
+ "loss": 4.138950347900391,
+ "step": 6588
+ },
+ {
+ "epoch": 91.51725644386195,
+ "grad_norm": 0.4758029878139496,
+ "learning_rate": 0.0006,
+ "loss": 4.167637825012207,
+ "step": 6589
+ },
+ {
+ "epoch": 91.53123634775011,
+ "grad_norm": 0.46663451194763184,
+ "learning_rate": 0.0006,
+ "loss": 4.071398735046387,
+ "step": 6590
+ },
+ {
+ "epoch": 91.54521625163827,
+ "grad_norm": 0.4612772762775421,
+ "learning_rate": 0.0006,
+ "loss": 4.144865036010742,
+ "step": 6591
+ },
+ {
+ "epoch": 91.55919615552644,
+ "grad_norm": 0.4695148169994354,
+ "learning_rate": 0.0006,
+ "loss": 4.139881134033203,
+ "step": 6592
+ },
+ {
+ "epoch": 91.57317605941459,
+ "grad_norm": 0.48135271668434143,
+ "learning_rate": 0.0006,
+ "loss": 4.167233467102051,
+ "step": 6593
+ },
+ {
+ "epoch": 91.58715596330275,
+ "grad_norm": 0.5033000707626343,
+ "learning_rate": 0.0006,
+ "loss": 4.166445732116699,
+ "step": 6594
+ },
+ {
+ "epoch": 91.60113586719092,
+ "grad_norm": 0.4646996557712555,
+ "learning_rate": 0.0006,
+ "loss": 4.17877721786499,
+ "step": 6595
+ },
+ {
+ "epoch": 91.61511577107908,
+ "grad_norm": 0.45358705520629883,
+ "learning_rate": 0.0006,
+ "loss": 4.201140403747559,
+ "step": 6596
+ },
+ {
+ "epoch": 91.62909567496723,
+ "grad_norm": 0.45453503727912903,
+ "learning_rate": 0.0006,
+ "loss": 4.249351501464844,
+ "step": 6597
+ },
+ {
+ "epoch": 91.6430755788554,
+ "grad_norm": 0.45279616117477417,
+ "learning_rate": 0.0006,
+ "loss": 4.163040637969971,
+ "step": 6598
+ },
+ {
+ "epoch": 91.65705548274356,
+ "grad_norm": 0.46521562337875366,
+ "learning_rate": 0.0006,
+ "loss": 4.315350532531738,
+ "step": 6599
+ },
+ {
+ "epoch": 91.67103538663171,
+ "grad_norm": 0.4669588506221771,
+ "learning_rate": 0.0006,
+ "loss": 4.141858100891113,
+ "step": 6600
+ },
+ {
+ "epoch": 91.68501529051987,
+ "grad_norm": 0.4884856939315796,
+ "learning_rate": 0.0006,
+ "loss": 4.149525165557861,
+ "step": 6601
+ },
+ {
+ "epoch": 91.69899519440804,
+ "grad_norm": 0.49149787425994873,
+ "learning_rate": 0.0006,
+ "loss": 4.168375015258789,
+ "step": 6602
+ },
+ {
+ "epoch": 91.7129750982962,
+ "grad_norm": 0.49810677766799927,
+ "learning_rate": 0.0006,
+ "loss": 4.066099166870117,
+ "step": 6603
+ },
+ {
+ "epoch": 91.72695500218435,
+ "grad_norm": 0.4675672948360443,
+ "learning_rate": 0.0006,
+ "loss": 4.191736221313477,
+ "step": 6604
+ },
+ {
+ "epoch": 91.74093490607252,
+ "grad_norm": 0.4815864562988281,
+ "learning_rate": 0.0006,
+ "loss": 4.2276716232299805,
+ "step": 6605
+ },
+ {
+ "epoch": 91.75491480996068,
+ "grad_norm": 0.4676399528980255,
+ "learning_rate": 0.0006,
+ "loss": 4.179114818572998,
+ "step": 6606
+ },
+ {
+ "epoch": 91.76889471384884,
+ "grad_norm": 0.43563583493232727,
+ "learning_rate": 0.0006,
+ "loss": 4.153409004211426,
+ "step": 6607
+ },
+ {
+ "epoch": 91.78287461773701,
+ "grad_norm": 0.45204871892929077,
+ "learning_rate": 0.0006,
+ "loss": 4.255942344665527,
+ "step": 6608
+ },
+ {
+ "epoch": 91.79685452162516,
+ "grad_norm": 0.4372783899307251,
+ "learning_rate": 0.0006,
+ "loss": 4.1546735763549805,
+ "step": 6609
+ },
+ {
+ "epoch": 91.81083442551332,
+ "grad_norm": 0.4686015546321869,
+ "learning_rate": 0.0006,
+ "loss": 4.252612113952637,
+ "step": 6610
+ },
+ {
+ "epoch": 91.82481432940149,
+ "grad_norm": 0.4720774292945862,
+ "learning_rate": 0.0006,
+ "loss": 4.244714736938477,
+ "step": 6611
+ },
+ {
+ "epoch": 91.83879423328965,
+ "grad_norm": 0.46509850025177,
+ "learning_rate": 0.0006,
+ "loss": 4.152102470397949,
+ "step": 6612
+ },
+ {
+ "epoch": 91.8527741371778,
+ "grad_norm": 0.4156970679759979,
+ "learning_rate": 0.0006,
+ "loss": 4.135519981384277,
+ "step": 6613
+ },
+ {
+ "epoch": 91.86675404106597,
+ "grad_norm": 0.42507460713386536,
+ "learning_rate": 0.0006,
+ "loss": 4.1698808670043945,
+ "step": 6614
+ },
+ {
+ "epoch": 91.88073394495413,
+ "grad_norm": 0.4491443336009979,
+ "learning_rate": 0.0006,
+ "loss": 4.215681076049805,
+ "step": 6615
+ },
+ {
+ "epoch": 91.89471384884229,
+ "grad_norm": 0.4253392219543457,
+ "learning_rate": 0.0006,
+ "loss": 4.241162300109863,
+ "step": 6616
+ },
+ {
+ "epoch": 91.90869375273044,
+ "grad_norm": 0.4186265170574188,
+ "learning_rate": 0.0006,
+ "loss": 4.219512939453125,
+ "step": 6617
+ },
+ {
+ "epoch": 91.92267365661861,
+ "grad_norm": 0.4518965184688568,
+ "learning_rate": 0.0006,
+ "loss": 4.27060604095459,
+ "step": 6618
+ },
+ {
+ "epoch": 91.93665356050677,
+ "grad_norm": 0.5045844912528992,
+ "learning_rate": 0.0006,
+ "loss": 4.225786209106445,
+ "step": 6619
+ },
+ {
+ "epoch": 91.95063346439493,
+ "grad_norm": 0.4688360393047333,
+ "learning_rate": 0.0006,
+ "loss": 4.243875026702881,
+ "step": 6620
+ },
+ {
+ "epoch": 91.9646133682831,
+ "grad_norm": 0.4428872764110565,
+ "learning_rate": 0.0006,
+ "loss": 4.283898830413818,
+ "step": 6621
+ },
+ {
+ "epoch": 91.97859327217125,
+ "grad_norm": 0.43714380264282227,
+ "learning_rate": 0.0006,
+ "loss": 4.210933685302734,
+ "step": 6622
+ },
+ {
+ "epoch": 91.99257317605941,
+ "grad_norm": 0.45449599623680115,
+ "learning_rate": 0.0006,
+ "loss": 4.220334053039551,
+ "step": 6623
+ },
+ {
+ "epoch": 92.0,
+ "grad_norm": 0.5236840844154358,
+ "learning_rate": 0.0006,
+ "loss": 4.171074867248535,
+ "step": 6624
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.8228110853110497e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6624/training_args.bin b/runs/i5-fulle-lm/checkpoint-6624/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6624/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-6912/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-6912/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/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/i5-fulle-lm/checkpoint-6912/config.json b/runs/i5-fulle-lm/checkpoint-6912/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6912/generation_config.json b/runs/i5-fulle-lm/checkpoint-6912/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6912/model.safetensors b/runs/i5-fulle-lm/checkpoint-6912/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..5007565b508189fff0edcaa07326528019480654
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7c2cb70b3983de0bee02f3301995afcee5e7bf7f40fd1e5136613744da1a29b7
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-6912/optimizer.pt b/runs/i5-fulle-lm/checkpoint-6912/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..2dbb4bf9aca38cdc7f851b87833afcbdeb01796a
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:23b6a2bcff77e59fe301f72a127048417aef80bc7bfe5066757e186aff2e1a88
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-6912/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-6912/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..bda38687fcf025db6efa085944b09964e2335aab
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:71811284429a50017f088a0d3362ee8cc43501aa5f637958c98db8ef7ea64ee6
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-6912/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-6912/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7f0142ef16b3d1a6f64fe7c6fc2a83d25ae843f3
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6871afc873672e37000a088c5486cbbc657050a0d52adcbf5826340dbf825032
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-6912/scheduler.pt b/runs/i5-fulle-lm/checkpoint-6912/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..80771355cefe444a789dc3e83678b2d55d3b8db3
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0d0b661f1b18caa6118d27fef199882abc2f72f0aaf9b16c81f9627cbcf08e00
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-6912/tokenizer.json b/runs/i5-fulle-lm/checkpoint-6912/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-6912/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-6912/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6912/trainer_state.json b/runs/i5-fulle-lm/checkpoint-6912/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..6e6bc0e803d2a719ca2b8c8564dda360f37ba3ef
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/trainer_state.json
@@ -0,0 +1,49170 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 96.0,
+ "eval_steps": 500,
+ "global_step": 6912,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 6.10045862197876,
+ "eval_runtime": 43.881,
+ "eval_samples_per_second": 55.651,
+ "eval_steps_per_second": 3.487,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.3880091607570648,
+ "learning_rate": 0.0006,
+ "loss": 4.2891340255737305,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.46462568640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.368136882781982,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.46417036652565,
+ "learning_rate": 0.0006,
+ "loss": 4.290570259094238,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.42546287178993225,
+ "learning_rate": 0.0006,
+ "loss": 4.275969505310059,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.42158621549606323,
+ "learning_rate": 0.0006,
+ "loss": 4.3133697509765625,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.41421398520469666,
+ "learning_rate": 0.0006,
+ "loss": 4.318943977355957,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.4261677861213684,
+ "learning_rate": 0.0006,
+ "loss": 4.386415481567383,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.4547804594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.200797080993652,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.5152761340141296,
+ "learning_rate": 0.0006,
+ "loss": 4.392667770385742,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.6397215127944946,
+ "learning_rate": 0.0006,
+ "loss": 4.365647315979004,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.867751955986023,
+ "learning_rate": 0.0006,
+ "loss": 4.404231071472168,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 1.113226056098938,
+ "learning_rate": 0.0006,
+ "loss": 4.4237775802612305,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.9725164771080017,
+ "learning_rate": 0.0006,
+ "loss": 4.353878021240234,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.8986128568649292,
+ "learning_rate": 0.0006,
+ "loss": 4.404200553894043,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.644611656665802,
+ "learning_rate": 0.0006,
+ "loss": 4.314446449279785,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.5430455803871155,
+ "learning_rate": 0.0006,
+ "loss": 4.404072284698486,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.5315895080566406,
+ "learning_rate": 0.0006,
+ "loss": 4.339350700378418,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.4984396696090698,
+ "learning_rate": 0.0006,
+ "loss": 4.418368339538574,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.4928722679615021,
+ "learning_rate": 0.0006,
+ "loss": 4.351061820983887,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.4810708463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.32480525970459,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.4846661388874054,
+ "learning_rate": 0.0006,
+ "loss": 4.410396099090576,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.45098942518234253,
+ "learning_rate": 0.0006,
+ "loss": 4.434419631958008,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.4603881239891052,
+ "learning_rate": 0.0006,
+ "loss": 4.374553680419922,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.47921186685562134,
+ "learning_rate": 0.0006,
+ "loss": 4.43428373336792,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.458781361579895,
+ "learning_rate": 0.0006,
+ "loss": 4.345955848693848,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.43630266189575195,
+ "learning_rate": 0.0006,
+ "loss": 4.396679401397705,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.4061865210533142,
+ "learning_rate": 0.0006,
+ "loss": 4.3547186851501465,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.3998570740222931,
+ "learning_rate": 0.0006,
+ "loss": 4.42930793762207,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.43052756786346436,
+ "learning_rate": 0.0006,
+ "loss": 4.483987808227539,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.40878528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.4177021980285645,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.41628801822662354,
+ "learning_rate": 0.0006,
+ "loss": 4.383821487426758,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.39991578459739685,
+ "learning_rate": 0.0006,
+ "loss": 4.403266429901123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.3781890571117401,
+ "learning_rate": 0.0006,
+ "loss": 4.361995220184326,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.38037991523742676,
+ "learning_rate": 0.0006,
+ "loss": 4.520498275756836,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.3687450587749481,
+ "learning_rate": 0.0006,
+ "loss": 4.34592342376709,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.3800104558467865,
+ "learning_rate": 0.0006,
+ "loss": 4.395520210266113,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.38416075706481934,
+ "learning_rate": 0.0006,
+ "loss": 4.432024002075195,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.38714301586151123,
+ "learning_rate": 0.0006,
+ "loss": 4.371710300445557,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.3560386002063751,
+ "learning_rate": 0.0006,
+ "loss": 4.389065265655518,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.3583020269870758,
+ "learning_rate": 0.0006,
+ "loss": 4.294467926025391,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.3507572412490845,
+ "learning_rate": 0.0006,
+ "loss": 4.335668563842773,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.3481273353099823,
+ "learning_rate": 0.0006,
+ "loss": 4.355007171630859,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.3648652732372284,
+ "learning_rate": 0.0006,
+ "loss": 4.458398818969727,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.3315402865409851,
+ "learning_rate": 0.0006,
+ "loss": 4.415014266967773,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.34356269240379333,
+ "learning_rate": 0.0006,
+ "loss": 4.3891496658325195,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.3475818932056427,
+ "learning_rate": 0.0006,
+ "loss": 4.403259754180908,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.3756524622440338,
+ "learning_rate": 0.0006,
+ "loss": 4.396340370178223,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.38063693046569824,
+ "learning_rate": 0.0006,
+ "loss": 4.390671253204346,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.3574332594871521,
+ "learning_rate": 0.0006,
+ "loss": 4.342291831970215,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.35717374086380005,
+ "learning_rate": 0.0006,
+ "loss": 4.389538764953613,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.34184643626213074,
+ "learning_rate": 0.0006,
+ "loss": 4.407958030700684,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.3665345013141632,
+ "learning_rate": 0.0006,
+ "loss": 4.407729148864746,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.3752829432487488,
+ "learning_rate": 0.0006,
+ "loss": 4.406526565551758,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.3690424859523773,
+ "learning_rate": 0.0006,
+ "loss": 4.444920063018799,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.35570403933525085,
+ "learning_rate": 0.0006,
+ "loss": 4.41465950012207,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.3422539532184601,
+ "learning_rate": 0.0006,
+ "loss": 4.341947078704834,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.34019631147384644,
+ "learning_rate": 0.0006,
+ "loss": 4.383486747741699,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.35433074831962585,
+ "learning_rate": 0.0006,
+ "loss": 4.43992280960083,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.3690914809703827,
+ "learning_rate": 0.0006,
+ "loss": 4.396021842956543,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.35793814063072205,
+ "learning_rate": 0.0006,
+ "loss": 4.389019012451172,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.34700852632522583,
+ "learning_rate": 0.0006,
+ "loss": 4.476073265075684,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.3613256514072418,
+ "learning_rate": 0.0006,
+ "loss": 4.43828010559082,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.3444153070449829,
+ "learning_rate": 0.0006,
+ "loss": 4.470188140869141,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.3383917510509491,
+ "learning_rate": 0.0006,
+ "loss": 4.381032943725586,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.3648519217967987,
+ "learning_rate": 0.0006,
+ "loss": 4.399723052978516,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.34983959794044495,
+ "learning_rate": 0.0006,
+ "loss": 4.43270206451416,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.33937394618988037,
+ "learning_rate": 0.0006,
+ "loss": 4.4052228927612305,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.34935757517814636,
+ "learning_rate": 0.0006,
+ "loss": 4.38171911239624,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.3566495180130005,
+ "learning_rate": 0.0006,
+ "loss": 4.495579242706299,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.3702648878097534,
+ "learning_rate": 0.0006,
+ "loss": 4.452796936035156,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.3714422583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.404526710510254,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.42734357714653015,
+ "learning_rate": 0.0006,
+ "loss": 4.511031150817871,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 6.156860828399658,
+ "eval_runtime": 44.07,
+ "eval_samples_per_second": 55.412,
+ "eval_steps_per_second": 3.472,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.381186306476593,
+ "learning_rate": 0.0006,
+ "loss": 4.39985466003418,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.4057665169239044,
+ "learning_rate": 0.0006,
+ "loss": 4.338055610656738,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.4002494513988495,
+ "learning_rate": 0.0006,
+ "loss": 4.331958770751953,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.4294043183326721,
+ "learning_rate": 0.0006,
+ "loss": 4.339388370513916,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.45085105299949646,
+ "learning_rate": 0.0006,
+ "loss": 4.334287643432617,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.5061688423156738,
+ "learning_rate": 0.0006,
+ "loss": 4.2327470779418945,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.5022581219673157,
+ "learning_rate": 0.0006,
+ "loss": 4.291156768798828,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.5529219508171082,
+ "learning_rate": 0.0006,
+ "loss": 4.4021406173706055,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.5945294499397278,
+ "learning_rate": 0.0006,
+ "loss": 4.3400092124938965,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.5755016803741455,
+ "learning_rate": 0.0006,
+ "loss": 4.2676286697387695,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.5352432131767273,
+ "learning_rate": 0.0006,
+ "loss": 4.322068214416504,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.5563830137252808,
+ "learning_rate": 0.0006,
+ "loss": 4.401552200317383,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.5542744994163513,
+ "learning_rate": 0.0006,
+ "loss": 4.361536026000977,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.5109394788742065,
+ "learning_rate": 0.0006,
+ "loss": 4.333110809326172,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.48128604888916016,
+ "learning_rate": 0.0006,
+ "loss": 4.311734199523926,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.48069921135902405,
+ "learning_rate": 0.0006,
+ "loss": 4.400852203369141,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.45155879855155945,
+ "learning_rate": 0.0006,
+ "loss": 4.257515907287598,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.44431430101394653,
+ "learning_rate": 0.0006,
+ "loss": 4.397309303283691,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.43975624442100525,
+ "learning_rate": 0.0006,
+ "loss": 4.392481803894043,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.43021512031555176,
+ "learning_rate": 0.0006,
+ "loss": 4.323525428771973,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.4590098559856415,
+ "learning_rate": 0.0006,
+ "loss": 4.334511756896973,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.42400652170181274,
+ "learning_rate": 0.0006,
+ "loss": 4.33546257019043,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.41162917017936707,
+ "learning_rate": 0.0006,
+ "loss": 4.348457336425781,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.44991976022720337,
+ "learning_rate": 0.0006,
+ "loss": 4.3486785888671875,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.41424447298049927,
+ "learning_rate": 0.0006,
+ "loss": 4.396841049194336,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.4157496690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.386002540588379,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.43610864877700806,
+ "learning_rate": 0.0006,
+ "loss": 4.355074882507324,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.43452468514442444,
+ "learning_rate": 0.0006,
+ "loss": 4.327574729919434,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.42757663130760193,
+ "learning_rate": 0.0006,
+ "loss": 4.289640426635742,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.38811302185058594,
+ "learning_rate": 0.0006,
+ "loss": 4.297506809234619,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.3866890072822571,
+ "learning_rate": 0.0006,
+ "loss": 4.4301838874816895,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.43073758482933044,
+ "learning_rate": 0.0006,
+ "loss": 4.365545749664307,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.4058871865272522,
+ "learning_rate": 0.0006,
+ "loss": 4.294832229614258,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.41439321637153625,
+ "learning_rate": 0.0006,
+ "loss": 4.374986171722412,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.39280998706817627,
+ "learning_rate": 0.0006,
+ "loss": 4.472156524658203,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.380862832069397,
+ "learning_rate": 0.0006,
+ "loss": 4.3376359939575195,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.3880598843097687,
+ "learning_rate": 0.0006,
+ "loss": 4.399764537811279,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.4056805372238159,
+ "learning_rate": 0.0006,
+ "loss": 4.3839263916015625,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.43928271532058716,
+ "learning_rate": 0.0006,
+ "loss": 4.387872695922852,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.4157223701477051,
+ "learning_rate": 0.0006,
+ "loss": 4.491827011108398,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.38938942551612854,
+ "learning_rate": 0.0006,
+ "loss": 4.369803428649902,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.39400580525398254,
+ "learning_rate": 0.0006,
+ "loss": 4.4603800773620605,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.3747307062149048,
+ "learning_rate": 0.0006,
+ "loss": 4.366776466369629,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.4072708785533905,
+ "learning_rate": 0.0006,
+ "loss": 4.3782854080200195,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.4091123342514038,
+ "learning_rate": 0.0006,
+ "loss": 4.4356689453125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.40395987033843994,
+ "learning_rate": 0.0006,
+ "loss": 4.413468360900879,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.39857032895088196,
+ "learning_rate": 0.0006,
+ "loss": 4.450807571411133,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.4158494174480438,
+ "learning_rate": 0.0006,
+ "loss": 4.381142616271973,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.4082915484905243,
+ "learning_rate": 0.0006,
+ "loss": 4.496438980102539,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.37405046820640564,
+ "learning_rate": 0.0006,
+ "loss": 4.345484256744385,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.359416127204895,
+ "learning_rate": 0.0006,
+ "loss": 4.26982307434082,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.3519706726074219,
+ "learning_rate": 0.0006,
+ "loss": 4.397839546203613,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.3789094388484955,
+ "learning_rate": 0.0006,
+ "loss": 4.415822982788086,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.3676875829696655,
+ "learning_rate": 0.0006,
+ "loss": 4.396381855010986,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.3599476218223572,
+ "learning_rate": 0.0006,
+ "loss": 4.4171977043151855,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.3843400180339813,
+ "learning_rate": 0.0006,
+ "loss": 4.47220516204834,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.3702511191368103,
+ "learning_rate": 0.0006,
+ "loss": 4.500491619110107,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.3719273805618286,
+ "learning_rate": 0.0006,
+ "loss": 4.352668762207031,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.3619741201400757,
+ "learning_rate": 0.0006,
+ "loss": 4.3586931228637695,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.3766055703163147,
+ "learning_rate": 0.0006,
+ "loss": 4.408159255981445,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.3580402433872223,
+ "learning_rate": 0.0006,
+ "loss": 4.355810165405273,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.3602997958660126,
+ "learning_rate": 0.0006,
+ "loss": 4.357786178588867,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.35930490493774414,
+ "learning_rate": 0.0006,
+ "loss": 4.353297233581543,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.3693123161792755,
+ "learning_rate": 0.0006,
+ "loss": 4.391401290893555,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.36045047640800476,
+ "learning_rate": 0.0006,
+ "loss": 4.447843551635742,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.38618308305740356,
+ "learning_rate": 0.0006,
+ "loss": 4.465207099914551,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.38916000723838806,
+ "learning_rate": 0.0006,
+ "loss": 4.4063239097595215,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.3937848210334778,
+ "learning_rate": 0.0006,
+ "loss": 4.438618183135986,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.3975565731525421,
+ "learning_rate": 0.0006,
+ "loss": 4.376347541809082,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.383375883102417,
+ "learning_rate": 0.0006,
+ "loss": 4.376345634460449,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.38982275128364563,
+ "learning_rate": 0.0006,
+ "loss": 4.477313041687012,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.44567444920539856,
+ "learning_rate": 0.0006,
+ "loss": 4.4622087478637695,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 6.127683162689209,
+ "eval_runtime": 43.8712,
+ "eval_samples_per_second": 55.663,
+ "eval_steps_per_second": 3.487,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.38945627212524414,
+ "learning_rate": 0.0006,
+ "loss": 4.225332736968994,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.48500800132751465,
+ "learning_rate": 0.0006,
+ "loss": 4.303142547607422,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.4945746660232544,
+ "learning_rate": 0.0006,
+ "loss": 4.252800464630127,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.4860735237598419,
+ "learning_rate": 0.0006,
+ "loss": 4.3632307052612305,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.5717944502830505,
+ "learning_rate": 0.0006,
+ "loss": 4.2910966873168945,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.6825600862503052,
+ "learning_rate": 0.0006,
+ "loss": 4.446534633636475,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.7507191300392151,
+ "learning_rate": 0.0006,
+ "loss": 4.3218584060668945,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.8143581748008728,
+ "learning_rate": 0.0006,
+ "loss": 4.291619777679443,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.8164665699005127,
+ "learning_rate": 0.0006,
+ "loss": 4.314390182495117,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.8027179837226868,
+ "learning_rate": 0.0006,
+ "loss": 4.347686767578125,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.7046833038330078,
+ "learning_rate": 0.0006,
+ "loss": 4.382390975952148,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.6704773902893066,
+ "learning_rate": 0.0006,
+ "loss": 4.368736267089844,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.5986452698707581,
+ "learning_rate": 0.0006,
+ "loss": 4.3586106300354,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.5452585816383362,
+ "learning_rate": 0.0006,
+ "loss": 4.215537071228027,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.5050400495529175,
+ "learning_rate": 0.0006,
+ "loss": 4.345709800720215,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.4811224639415741,
+ "learning_rate": 0.0006,
+ "loss": 4.229983329772949,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.47257834672927856,
+ "learning_rate": 0.0006,
+ "loss": 4.401679039001465,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.46806448698043823,
+ "learning_rate": 0.0006,
+ "loss": 4.345294952392578,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.47019970417022705,
+ "learning_rate": 0.0006,
+ "loss": 4.3366899490356445,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.4618140459060669,
+ "learning_rate": 0.0006,
+ "loss": 4.423093795776367,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.45103076100349426,
+ "learning_rate": 0.0006,
+ "loss": 4.429213523864746,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.42674535512924194,
+ "learning_rate": 0.0006,
+ "loss": 4.355292320251465,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.4282950162887573,
+ "learning_rate": 0.0006,
+ "loss": 4.307826995849609,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.4120710790157318,
+ "learning_rate": 0.0006,
+ "loss": 4.322912216186523,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.4138009548187256,
+ "learning_rate": 0.0006,
+ "loss": 4.328085899353027,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.41546961665153503,
+ "learning_rate": 0.0006,
+ "loss": 4.4070940017700195,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.44050562381744385,
+ "learning_rate": 0.0006,
+ "loss": 4.419538497924805,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.41043856739997864,
+ "learning_rate": 0.0006,
+ "loss": 4.404756546020508,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.42796140909194946,
+ "learning_rate": 0.0006,
+ "loss": 4.3040008544921875,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.38510003685951233,
+ "learning_rate": 0.0006,
+ "loss": 4.353320598602295,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.3788503110408783,
+ "learning_rate": 0.0006,
+ "loss": 4.300704479217529,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.3905165493488312,
+ "learning_rate": 0.0006,
+ "loss": 4.343006610870361,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.3838869333267212,
+ "learning_rate": 0.0006,
+ "loss": 4.308780670166016,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.38746532797813416,
+ "learning_rate": 0.0006,
+ "loss": 4.335064888000488,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.37491124868392944,
+ "learning_rate": 0.0006,
+ "loss": 4.32066535949707,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.36987295746803284,
+ "learning_rate": 0.0006,
+ "loss": 4.317310333251953,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.38870200514793396,
+ "learning_rate": 0.0006,
+ "loss": 4.354729652404785,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.37225764989852905,
+ "learning_rate": 0.0006,
+ "loss": 4.29198694229126,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.3612116873264313,
+ "learning_rate": 0.0006,
+ "loss": 4.3979315757751465,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.40117356181144714,
+ "learning_rate": 0.0006,
+ "loss": 4.429460048675537,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.3933751881122589,
+ "learning_rate": 0.0006,
+ "loss": 4.348066329956055,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.38921254873275757,
+ "learning_rate": 0.0006,
+ "loss": 4.405765056610107,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.3987453579902649,
+ "learning_rate": 0.0006,
+ "loss": 4.350672721862793,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.43417951464653015,
+ "learning_rate": 0.0006,
+ "loss": 4.463413238525391,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.41297927498817444,
+ "learning_rate": 0.0006,
+ "loss": 4.309045791625977,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.38461950421333313,
+ "learning_rate": 0.0006,
+ "loss": 4.318929672241211,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.3841524124145508,
+ "learning_rate": 0.0006,
+ "loss": 4.379926681518555,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.39013510942459106,
+ "learning_rate": 0.0006,
+ "loss": 4.3409342765808105,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.3847009539604187,
+ "learning_rate": 0.0006,
+ "loss": 4.467362880706787,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.3979317247867584,
+ "learning_rate": 0.0006,
+ "loss": 4.333352088928223,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.4019637107849121,
+ "learning_rate": 0.0006,
+ "loss": 4.32415246963501,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.38000333309173584,
+ "learning_rate": 0.0006,
+ "loss": 4.318780899047852,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.3957592248916626,
+ "learning_rate": 0.0006,
+ "loss": 4.301888942718506,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.380258709192276,
+ "learning_rate": 0.0006,
+ "loss": 4.362771987915039,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.37715500593185425,
+ "learning_rate": 0.0006,
+ "loss": 4.455068588256836,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.37162303924560547,
+ "learning_rate": 0.0006,
+ "loss": 4.453987121582031,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.36303192377090454,
+ "learning_rate": 0.0006,
+ "loss": 4.400303363800049,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.34762880206108093,
+ "learning_rate": 0.0006,
+ "loss": 4.3961381912231445,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.34881117939949036,
+ "learning_rate": 0.0006,
+ "loss": 4.419530868530273,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.36440593004226685,
+ "learning_rate": 0.0006,
+ "loss": 4.4832868576049805,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.3671160638332367,
+ "learning_rate": 0.0006,
+ "loss": 4.389676094055176,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.3860883116722107,
+ "learning_rate": 0.0006,
+ "loss": 4.383245468139648,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.38325265049934387,
+ "learning_rate": 0.0006,
+ "loss": 4.3348388671875,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.3778875470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.362031936645508,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.3768773674964905,
+ "learning_rate": 0.0006,
+ "loss": 4.33457088470459,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.39139771461486816,
+ "learning_rate": 0.0006,
+ "loss": 4.455694198608398,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.38553205132484436,
+ "learning_rate": 0.0006,
+ "loss": 4.347469329833984,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.3916657567024231,
+ "learning_rate": 0.0006,
+ "loss": 4.394040107727051,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.3568893373012543,
+ "learning_rate": 0.0006,
+ "loss": 4.3976874351501465,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.3758280277252197,
+ "learning_rate": 0.0006,
+ "loss": 4.401939392089844,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.3833237588405609,
+ "learning_rate": 0.0006,
+ "loss": 4.339327812194824,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.4451141357421875,
+ "learning_rate": 0.0006,
+ "loss": 4.452360153198242,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 6.193995952606201,
+ "eval_runtime": 43.9228,
+ "eval_samples_per_second": 55.598,
+ "eval_steps_per_second": 3.483,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.4081752598285675,
+ "learning_rate": 0.0006,
+ "loss": 4.2674560546875,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.46005865931510925,
+ "learning_rate": 0.0006,
+ "loss": 4.2233099937438965,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.4297347962856293,
+ "learning_rate": 0.0006,
+ "loss": 4.269168376922607,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.427181601524353,
+ "learning_rate": 0.0006,
+ "loss": 4.304473876953125,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.4240623712539673,
+ "learning_rate": 0.0006,
+ "loss": 4.358336448669434,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.461392879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.351563930511475,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.4573875665664673,
+ "learning_rate": 0.0006,
+ "loss": 4.233829021453857,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.5236565470695496,
+ "learning_rate": 0.0006,
+ "loss": 4.313651084899902,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.6449952125549316,
+ "learning_rate": 0.0006,
+ "loss": 4.2785491943359375,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.76405930519104,
+ "learning_rate": 0.0006,
+ "loss": 4.333526611328125,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.8181349635124207,
+ "learning_rate": 0.0006,
+ "loss": 4.3336896896362305,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.7717618942260742,
+ "learning_rate": 0.0006,
+ "loss": 4.314065933227539,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.6831390857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.378012657165527,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.5755302906036377,
+ "learning_rate": 0.0006,
+ "loss": 4.331476211547852,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.5297263860702515,
+ "learning_rate": 0.0006,
+ "loss": 4.337549209594727,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.5538325309753418,
+ "learning_rate": 0.0006,
+ "loss": 4.395265102386475,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.4868195652961731,
+ "learning_rate": 0.0006,
+ "loss": 4.313584327697754,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.4794177711009979,
+ "learning_rate": 0.0006,
+ "loss": 4.413606643676758,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.4221785366535187,
+ "learning_rate": 0.0006,
+ "loss": 4.255707740783691,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.4288736879825592,
+ "learning_rate": 0.0006,
+ "loss": 4.257824897766113,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.42079946398735046,
+ "learning_rate": 0.0006,
+ "loss": 4.2655253410339355,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.4367576539516449,
+ "learning_rate": 0.0006,
+ "loss": 4.390307426452637,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.4121208190917969,
+ "learning_rate": 0.0006,
+ "loss": 4.3600006103515625,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.3934427797794342,
+ "learning_rate": 0.0006,
+ "loss": 4.276140213012695,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.3987336754798889,
+ "learning_rate": 0.0006,
+ "loss": 4.330526351928711,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.40691474080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.260777473449707,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.3869854807853699,
+ "learning_rate": 0.0006,
+ "loss": 4.3207855224609375,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.3992115259170532,
+ "learning_rate": 0.0006,
+ "loss": 4.3675432205200195,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.39756008982658386,
+ "learning_rate": 0.0006,
+ "loss": 4.359041213989258,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.37387391924858093,
+ "learning_rate": 0.0006,
+ "loss": 4.314123630523682,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.3787343502044678,
+ "learning_rate": 0.0006,
+ "loss": 4.376033782958984,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.388907253742218,
+ "learning_rate": 0.0006,
+ "loss": 4.2664690017700195,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.39261215925216675,
+ "learning_rate": 0.0006,
+ "loss": 4.335193634033203,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.385919988155365,
+ "learning_rate": 0.0006,
+ "loss": 4.329131126403809,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.39091575145721436,
+ "learning_rate": 0.0006,
+ "loss": 4.416098117828369,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.3747062683105469,
+ "learning_rate": 0.0006,
+ "loss": 4.284010887145996,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.37862640619277954,
+ "learning_rate": 0.0006,
+ "loss": 4.398101806640625,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.3797444701194763,
+ "learning_rate": 0.0006,
+ "loss": 4.433382034301758,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.3917072117328644,
+ "learning_rate": 0.0006,
+ "loss": 4.265375137329102,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.40743324160575867,
+ "learning_rate": 0.0006,
+ "loss": 4.351291656494141,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.4176776707172394,
+ "learning_rate": 0.0006,
+ "loss": 4.4158782958984375,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.4368206560611725,
+ "learning_rate": 0.0006,
+ "loss": 4.422186851501465,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.45450183749198914,
+ "learning_rate": 0.0006,
+ "loss": 4.363736629486084,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.4195234775543213,
+ "learning_rate": 0.0006,
+ "loss": 4.459656715393066,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.3838373124599457,
+ "learning_rate": 0.0006,
+ "loss": 4.338109016418457,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.37965819239616394,
+ "learning_rate": 0.0006,
+ "loss": 4.350182056427002,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.3787379264831543,
+ "learning_rate": 0.0006,
+ "loss": 4.394096851348877,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.3984084129333496,
+ "learning_rate": 0.0006,
+ "loss": 4.381903171539307,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.3826642334461212,
+ "learning_rate": 0.0006,
+ "loss": 4.269111156463623,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.3738428056240082,
+ "learning_rate": 0.0006,
+ "loss": 4.29117488861084,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.3769048750400543,
+ "learning_rate": 0.0006,
+ "loss": 4.395892143249512,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.36490270495414734,
+ "learning_rate": 0.0006,
+ "loss": 4.356070518493652,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.38128694891929626,
+ "learning_rate": 0.0006,
+ "loss": 4.366775989532471,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.3863452672958374,
+ "learning_rate": 0.0006,
+ "loss": 4.403047561645508,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.3697649836540222,
+ "learning_rate": 0.0006,
+ "loss": 4.333529472351074,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.3666415810585022,
+ "learning_rate": 0.0006,
+ "loss": 4.421572685241699,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.3746238946914673,
+ "learning_rate": 0.0006,
+ "loss": 4.291342735290527,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.3864925503730774,
+ "learning_rate": 0.0006,
+ "loss": 4.319379806518555,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.40842366218566895,
+ "learning_rate": 0.0006,
+ "loss": 4.34860897064209,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.39575234055519104,
+ "learning_rate": 0.0006,
+ "loss": 4.389467239379883,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.3882506787776947,
+ "learning_rate": 0.0006,
+ "loss": 4.373462677001953,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.38202980160713196,
+ "learning_rate": 0.0006,
+ "loss": 4.370086669921875,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.37805864214897156,
+ "learning_rate": 0.0006,
+ "loss": 4.46006965637207,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.3739442527294159,
+ "learning_rate": 0.0006,
+ "loss": 4.36165714263916,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.3707204759120941,
+ "learning_rate": 0.0006,
+ "loss": 4.418872356414795,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.37603604793548584,
+ "learning_rate": 0.0006,
+ "loss": 4.45180606842041,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.3731978237628937,
+ "learning_rate": 0.0006,
+ "loss": 4.412590026855469,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.3871077001094818,
+ "learning_rate": 0.0006,
+ "loss": 4.4665679931640625,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.3805893659591675,
+ "learning_rate": 0.0006,
+ "loss": 4.376047134399414,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.3941190540790558,
+ "learning_rate": 0.0006,
+ "loss": 4.414681434631348,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.39961132407188416,
+ "learning_rate": 0.0006,
+ "loss": 4.40030574798584,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.45096156001091003,
+ "learning_rate": 0.0006,
+ "loss": 4.3740458488464355,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 6.164906978607178,
+ "eval_runtime": 43.7516,
+ "eval_samples_per_second": 55.815,
+ "eval_steps_per_second": 3.497,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.4227452278137207,
+ "learning_rate": 0.0006,
+ "loss": 4.3197340965271,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.4646683931350708,
+ "learning_rate": 0.0006,
+ "loss": 4.254220008850098,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.5112658739089966,
+ "learning_rate": 0.0006,
+ "loss": 4.245427131652832,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.5452179312705994,
+ "learning_rate": 0.0006,
+ "loss": 4.303033828735352,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.6151604652404785,
+ "learning_rate": 0.0006,
+ "loss": 4.3013811111450195,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.7466694712638855,
+ "learning_rate": 0.0006,
+ "loss": 4.303430080413818,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.9221336841583252,
+ "learning_rate": 0.0006,
+ "loss": 4.330693244934082,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.9571523666381836,
+ "learning_rate": 0.0006,
+ "loss": 4.283618927001953,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.8955944776535034,
+ "learning_rate": 0.0006,
+ "loss": 4.331462860107422,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.9967221021652222,
+ "learning_rate": 0.0006,
+ "loss": 4.267236709594727,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.896125853061676,
+ "learning_rate": 0.0006,
+ "loss": 4.382920265197754,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.8246790170669556,
+ "learning_rate": 0.0006,
+ "loss": 4.325201034545898,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.6651087403297424,
+ "learning_rate": 0.0006,
+ "loss": 4.389814376831055,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.5789903998374939,
+ "learning_rate": 0.0006,
+ "loss": 4.256431579589844,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.540268063545227,
+ "learning_rate": 0.0006,
+ "loss": 4.314873218536377,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.5234258770942688,
+ "learning_rate": 0.0006,
+ "loss": 4.322999954223633,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.5203981399536133,
+ "learning_rate": 0.0006,
+ "loss": 4.449131965637207,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.47833096981048584,
+ "learning_rate": 0.0006,
+ "loss": 4.370548725128174,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.45063355565071106,
+ "learning_rate": 0.0006,
+ "loss": 4.423710823059082,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.4473242163658142,
+ "learning_rate": 0.0006,
+ "loss": 4.322866439819336,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.45025673508644104,
+ "learning_rate": 0.0006,
+ "loss": 4.242474555969238,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.4419912099838257,
+ "learning_rate": 0.0006,
+ "loss": 4.3837714195251465,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.4443511664867401,
+ "learning_rate": 0.0006,
+ "loss": 4.393730163574219,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.42215496301651,
+ "learning_rate": 0.0006,
+ "loss": 4.360969066619873,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.4408218562602997,
+ "learning_rate": 0.0006,
+ "loss": 4.399507522583008,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.42309728264808655,
+ "learning_rate": 0.0006,
+ "loss": 4.34589147567749,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.3893560767173767,
+ "learning_rate": 0.0006,
+ "loss": 4.278870582580566,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.42726844549179077,
+ "learning_rate": 0.0006,
+ "loss": 4.428325653076172,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.39529383182525635,
+ "learning_rate": 0.0006,
+ "loss": 4.3687872886657715,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.39174285531044006,
+ "learning_rate": 0.0006,
+ "loss": 4.367023468017578,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.39338526129722595,
+ "learning_rate": 0.0006,
+ "loss": 4.372482776641846,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.396528959274292,
+ "learning_rate": 0.0006,
+ "loss": 4.325854778289795,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.4031950533390045,
+ "learning_rate": 0.0006,
+ "loss": 4.387483596801758,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.3867308795452118,
+ "learning_rate": 0.0006,
+ "loss": 4.337440490722656,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.3758327066898346,
+ "learning_rate": 0.0006,
+ "loss": 4.332152366638184,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.3789239823818207,
+ "learning_rate": 0.0006,
+ "loss": 4.234537124633789,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.36792582273483276,
+ "learning_rate": 0.0006,
+ "loss": 4.3876800537109375,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.3689296245574951,
+ "learning_rate": 0.0006,
+ "loss": 4.311098098754883,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.3556303083896637,
+ "learning_rate": 0.0006,
+ "loss": 4.348201274871826,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.38501277565956116,
+ "learning_rate": 0.0006,
+ "loss": 4.391176700592041,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.3857221305370331,
+ "learning_rate": 0.0006,
+ "loss": 4.377525329589844,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.37236976623535156,
+ "learning_rate": 0.0006,
+ "loss": 4.25323486328125,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.37982237339019775,
+ "learning_rate": 0.0006,
+ "loss": 4.326591491699219,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.3887641131877899,
+ "learning_rate": 0.0006,
+ "loss": 4.32540225982666,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.3766990900039673,
+ "learning_rate": 0.0006,
+ "loss": 4.320146560668945,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.3827766478061676,
+ "learning_rate": 0.0006,
+ "loss": 4.344974517822266,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.3892960846424103,
+ "learning_rate": 0.0006,
+ "loss": 4.37299108505249,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.39927658438682556,
+ "learning_rate": 0.0006,
+ "loss": 4.346755504608154,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.3751842975616455,
+ "learning_rate": 0.0006,
+ "loss": 4.390047073364258,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.3758105933666229,
+ "learning_rate": 0.0006,
+ "loss": 4.392386436462402,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.3755977153778076,
+ "learning_rate": 0.0006,
+ "loss": 4.389333724975586,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.38697585463523865,
+ "learning_rate": 0.0006,
+ "loss": 4.363922119140625,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.37856224179267883,
+ "learning_rate": 0.0006,
+ "loss": 4.415143966674805,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.3853805959224701,
+ "learning_rate": 0.0006,
+ "loss": 4.332059860229492,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.3552320599555969,
+ "learning_rate": 0.0006,
+ "loss": 4.360487937927246,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.3593924641609192,
+ "learning_rate": 0.0006,
+ "loss": 4.386531829833984,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.37393584847450256,
+ "learning_rate": 0.0006,
+ "loss": 4.377449989318848,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.37289509177207947,
+ "learning_rate": 0.0006,
+ "loss": 4.381917953491211,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.3700922131538391,
+ "learning_rate": 0.0006,
+ "loss": 4.472764015197754,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.3773220181465149,
+ "learning_rate": 0.0006,
+ "loss": 4.438575744628906,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.3959292769432068,
+ "learning_rate": 0.0006,
+ "loss": 4.41773796081543,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.37098821997642517,
+ "learning_rate": 0.0006,
+ "loss": 4.3457441329956055,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.3589438199996948,
+ "learning_rate": 0.0006,
+ "loss": 4.390456676483154,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.3993541896343231,
+ "learning_rate": 0.0006,
+ "loss": 4.412688255310059,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.39771372079849243,
+ "learning_rate": 0.0006,
+ "loss": 4.37404203414917,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.37521013617515564,
+ "learning_rate": 0.0006,
+ "loss": 4.379281044006348,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.3812563717365265,
+ "learning_rate": 0.0006,
+ "loss": 4.475038528442383,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.3759402632713318,
+ "learning_rate": 0.0006,
+ "loss": 4.298859596252441,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.38831669092178345,
+ "learning_rate": 0.0006,
+ "loss": 4.335268020629883,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.3674168884754181,
+ "learning_rate": 0.0006,
+ "loss": 4.288745880126953,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.37575823068618774,
+ "learning_rate": 0.0006,
+ "loss": 4.340919494628906,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.44213995337486267,
+ "learning_rate": 0.0006,
+ "loss": 4.428310394287109,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 6.250092029571533,
+ "eval_runtime": 43.9606,
+ "eval_samples_per_second": 55.55,
+ "eval_steps_per_second": 3.48,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.40146708488464355,
+ "learning_rate": 0.0006,
+ "loss": 4.233017921447754,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.4238559305667877,
+ "learning_rate": 0.0006,
+ "loss": 4.256832122802734,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.4282098412513733,
+ "learning_rate": 0.0006,
+ "loss": 4.243378639221191,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.4408058524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.367465019226074,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.445965439081192,
+ "learning_rate": 0.0006,
+ "loss": 4.347798824310303,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.47689515352249146,
+ "learning_rate": 0.0006,
+ "loss": 4.242677211761475,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.5041401386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.354928016662598,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.5793538689613342,
+ "learning_rate": 0.0006,
+ "loss": 4.301093578338623,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.5709708333015442,
+ "learning_rate": 0.0006,
+ "loss": 4.217863082885742,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.5181067585945129,
+ "learning_rate": 0.0006,
+ "loss": 4.246687889099121,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.5148541927337646,
+ "learning_rate": 0.0006,
+ "loss": 4.285772800445557,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.5215007662773132,
+ "learning_rate": 0.0006,
+ "loss": 4.2491350173950195,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.5118919610977173,
+ "learning_rate": 0.0006,
+ "loss": 4.354918479919434,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.5332921147346497,
+ "learning_rate": 0.0006,
+ "loss": 4.294621467590332,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.5734043717384338,
+ "learning_rate": 0.0006,
+ "loss": 4.283238887786865,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.5209192037582397,
+ "learning_rate": 0.0006,
+ "loss": 4.251487731933594,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.4510970711708069,
+ "learning_rate": 0.0006,
+ "loss": 4.294740676879883,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.42409008741378784,
+ "learning_rate": 0.0006,
+ "loss": 4.267972946166992,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.45052847266197205,
+ "learning_rate": 0.0006,
+ "loss": 4.451445579528809,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.420418918132782,
+ "learning_rate": 0.0006,
+ "loss": 4.227499008178711,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.4419310390949249,
+ "learning_rate": 0.0006,
+ "loss": 4.294921875,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.41020578145980835,
+ "learning_rate": 0.0006,
+ "loss": 4.235942840576172,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.4084969162940979,
+ "learning_rate": 0.0006,
+ "loss": 4.285951614379883,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.39946338534355164,
+ "learning_rate": 0.0006,
+ "loss": 4.388570785522461,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.39431124925613403,
+ "learning_rate": 0.0006,
+ "loss": 4.329334259033203,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.41183048486709595,
+ "learning_rate": 0.0006,
+ "loss": 4.369775295257568,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.4041382968425751,
+ "learning_rate": 0.0006,
+ "loss": 4.272721290588379,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.42982324957847595,
+ "learning_rate": 0.0006,
+ "loss": 4.310064315795898,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.42579901218414307,
+ "learning_rate": 0.0006,
+ "loss": 4.284671783447266,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.41768139600753784,
+ "learning_rate": 0.0006,
+ "loss": 4.343086242675781,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.3960258960723877,
+ "learning_rate": 0.0006,
+ "loss": 4.2318806648254395,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.3981281518936157,
+ "learning_rate": 0.0006,
+ "loss": 4.2755937576293945,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.39555633068084717,
+ "learning_rate": 0.0006,
+ "loss": 4.383005142211914,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.4002246856689453,
+ "learning_rate": 0.0006,
+ "loss": 4.332754135131836,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.4106678068637848,
+ "learning_rate": 0.0006,
+ "loss": 4.391409873962402,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.3856841027736664,
+ "learning_rate": 0.0006,
+ "loss": 4.316332817077637,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.3910135328769684,
+ "learning_rate": 0.0006,
+ "loss": 4.327088356018066,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.38631075620651245,
+ "learning_rate": 0.0006,
+ "loss": 4.308974266052246,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.36760637164115906,
+ "learning_rate": 0.0006,
+ "loss": 4.396300315856934,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.39333999156951904,
+ "learning_rate": 0.0006,
+ "loss": 4.33335018157959,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.37966030836105347,
+ "learning_rate": 0.0006,
+ "loss": 4.298529148101807,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.3774148225784302,
+ "learning_rate": 0.0006,
+ "loss": 4.218472480773926,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.38100066781044006,
+ "learning_rate": 0.0006,
+ "loss": 4.337407112121582,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.3924340605735779,
+ "learning_rate": 0.0006,
+ "loss": 4.38271427154541,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.37583890557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.331287384033203,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.3993631601333618,
+ "learning_rate": 0.0006,
+ "loss": 4.297436237335205,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.41312935948371887,
+ "learning_rate": 0.0006,
+ "loss": 4.305514335632324,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.4133725166320801,
+ "learning_rate": 0.0006,
+ "loss": 4.339967727661133,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.3860441744327545,
+ "learning_rate": 0.0006,
+ "loss": 4.31814432144165,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.3891344964504242,
+ "learning_rate": 0.0006,
+ "loss": 4.346461772918701,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.3863038122653961,
+ "learning_rate": 0.0006,
+ "loss": 4.413818359375,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.37267377972602844,
+ "learning_rate": 0.0006,
+ "loss": 4.333828449249268,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.37040555477142334,
+ "learning_rate": 0.0006,
+ "loss": 4.456110000610352,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.3837447464466095,
+ "learning_rate": 0.0006,
+ "loss": 4.242850303649902,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.39074262976646423,
+ "learning_rate": 0.0006,
+ "loss": 4.3549485206604,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.38219889998435974,
+ "learning_rate": 0.0006,
+ "loss": 4.296403884887695,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.38378462195396423,
+ "learning_rate": 0.0006,
+ "loss": 4.369739532470703,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.37791451811790466,
+ "learning_rate": 0.0006,
+ "loss": 4.372786998748779,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.3720730245113373,
+ "learning_rate": 0.0006,
+ "loss": 4.292923450469971,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.3587147295475006,
+ "learning_rate": 0.0006,
+ "loss": 4.336228847503662,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.3617904782295227,
+ "learning_rate": 0.0006,
+ "loss": 4.380134582519531,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.3623189628124237,
+ "learning_rate": 0.0006,
+ "loss": 4.340606689453125,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.37112200260162354,
+ "learning_rate": 0.0006,
+ "loss": 4.310943603515625,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.3742401897907257,
+ "learning_rate": 0.0006,
+ "loss": 4.3478593826293945,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.374665230512619,
+ "learning_rate": 0.0006,
+ "loss": 4.4058637619018555,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.38624459505081177,
+ "learning_rate": 0.0006,
+ "loss": 4.348050594329834,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.40541738271713257,
+ "learning_rate": 0.0006,
+ "loss": 4.471852779388428,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.3857991695404053,
+ "learning_rate": 0.0006,
+ "loss": 4.312546253204346,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.41659343242645264,
+ "learning_rate": 0.0006,
+ "loss": 4.315553188323975,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.43697381019592285,
+ "learning_rate": 0.0006,
+ "loss": 4.333539962768555,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.45475196838378906,
+ "learning_rate": 0.0006,
+ "loss": 4.362082481384277,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.4871002733707428,
+ "learning_rate": 0.0006,
+ "loss": 4.328166484832764,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 6.260599136352539,
+ "eval_runtime": 43.7447,
+ "eval_samples_per_second": 55.824,
+ "eval_steps_per_second": 3.498,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.42134732007980347,
+ "learning_rate": 0.0006,
+ "loss": 4.200570106506348,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.44146645069122314,
+ "learning_rate": 0.0006,
+ "loss": 4.219682693481445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.4451248049736023,
+ "learning_rate": 0.0006,
+ "loss": 4.240499496459961,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.45094963908195496,
+ "learning_rate": 0.0006,
+ "loss": 4.252233505249023,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.4750693738460541,
+ "learning_rate": 0.0006,
+ "loss": 4.229597091674805,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.5211004614830017,
+ "learning_rate": 0.0006,
+ "loss": 4.3165435791015625,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.5570583343505859,
+ "learning_rate": 0.0006,
+ "loss": 4.280586242675781,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.543846845626831,
+ "learning_rate": 0.0006,
+ "loss": 4.243165493011475,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.4849488437175751,
+ "learning_rate": 0.0006,
+ "loss": 4.190418243408203,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.485515296459198,
+ "learning_rate": 0.0006,
+ "loss": 4.30844783782959,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.5233704447746277,
+ "learning_rate": 0.0006,
+ "loss": 4.229648590087891,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.5426996946334839,
+ "learning_rate": 0.0006,
+ "loss": 4.31719970703125,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.5974491238594055,
+ "learning_rate": 0.0006,
+ "loss": 4.250443458557129,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.6469011902809143,
+ "learning_rate": 0.0006,
+ "loss": 4.354139804840088,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.7294577360153198,
+ "learning_rate": 0.0006,
+ "loss": 4.3642706871032715,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.6488705277442932,
+ "learning_rate": 0.0006,
+ "loss": 4.275979995727539,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.4984777271747589,
+ "learning_rate": 0.0006,
+ "loss": 4.217861175537109,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.5109938979148865,
+ "learning_rate": 0.0006,
+ "loss": 4.286642074584961,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.49844229221343994,
+ "learning_rate": 0.0006,
+ "loss": 4.238213539123535,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.488077312707901,
+ "learning_rate": 0.0006,
+ "loss": 4.231420040130615,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.4928477704524994,
+ "learning_rate": 0.0006,
+ "loss": 4.380367279052734,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.49250566959381104,
+ "learning_rate": 0.0006,
+ "loss": 4.29306697845459,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.48340678215026855,
+ "learning_rate": 0.0006,
+ "loss": 4.2856645584106445,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.4970073401927948,
+ "learning_rate": 0.0006,
+ "loss": 4.34441614151001,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.4387594759464264,
+ "learning_rate": 0.0006,
+ "loss": 4.350798606872559,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.4448535144329071,
+ "learning_rate": 0.0006,
+ "loss": 4.350264072418213,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.4491334855556488,
+ "learning_rate": 0.0006,
+ "loss": 4.310317039489746,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.4396249055862427,
+ "learning_rate": 0.0006,
+ "loss": 4.3137288093566895,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.42331191897392273,
+ "learning_rate": 0.0006,
+ "loss": 4.283992767333984,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.42483261227607727,
+ "learning_rate": 0.0006,
+ "loss": 4.269024848937988,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.40380987524986267,
+ "learning_rate": 0.0006,
+ "loss": 4.321262836456299,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.4109397530555725,
+ "learning_rate": 0.0006,
+ "loss": 4.285927772521973,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.43696823716163635,
+ "learning_rate": 0.0006,
+ "loss": 4.303576946258545,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.379971444606781,
+ "learning_rate": 0.0006,
+ "loss": 4.388635158538818,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.4044286608695984,
+ "learning_rate": 0.0006,
+ "loss": 4.329499244689941,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.4053935706615448,
+ "learning_rate": 0.0006,
+ "loss": 4.297847747802734,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.38198018074035645,
+ "learning_rate": 0.0006,
+ "loss": 4.288124084472656,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.39832696318626404,
+ "learning_rate": 0.0006,
+ "loss": 4.380218982696533,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.40758490562438965,
+ "learning_rate": 0.0006,
+ "loss": 4.32636833190918,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.3803170621395111,
+ "learning_rate": 0.0006,
+ "loss": 4.30747127532959,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.3853742480278015,
+ "learning_rate": 0.0006,
+ "loss": 4.324460029602051,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.4050910174846649,
+ "learning_rate": 0.0006,
+ "loss": 4.306979179382324,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.4187234342098236,
+ "learning_rate": 0.0006,
+ "loss": 4.334494113922119,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.4233380854129791,
+ "learning_rate": 0.0006,
+ "loss": 4.338802814483643,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.4379981458187103,
+ "learning_rate": 0.0006,
+ "loss": 4.399646759033203,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.4394802749156952,
+ "learning_rate": 0.0006,
+ "loss": 4.33521842956543,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.415715754032135,
+ "learning_rate": 0.0006,
+ "loss": 4.3247880935668945,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.3918288052082062,
+ "learning_rate": 0.0006,
+ "loss": 4.329852104187012,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.40957361459732056,
+ "learning_rate": 0.0006,
+ "loss": 4.266562461853027,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.4475722312927246,
+ "learning_rate": 0.0006,
+ "loss": 4.513836860656738,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.44053083658218384,
+ "learning_rate": 0.0006,
+ "loss": 4.305239677429199,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.4229199290275574,
+ "learning_rate": 0.0006,
+ "loss": 4.347291946411133,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.4058760106563568,
+ "learning_rate": 0.0006,
+ "loss": 4.377959251403809,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.4245327115058899,
+ "learning_rate": 0.0006,
+ "loss": 4.363465309143066,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.4446028470993042,
+ "learning_rate": 0.0006,
+ "loss": 4.4517316818237305,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.40111324191093445,
+ "learning_rate": 0.0006,
+ "loss": 4.294158935546875,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.39330703020095825,
+ "learning_rate": 0.0006,
+ "loss": 4.329209327697754,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.4327717423439026,
+ "learning_rate": 0.0006,
+ "loss": 4.349915027618408,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.411691814661026,
+ "learning_rate": 0.0006,
+ "loss": 4.441436290740967,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.39029157161712646,
+ "learning_rate": 0.0006,
+ "loss": 4.339478492736816,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.4064500331878662,
+ "learning_rate": 0.0006,
+ "loss": 4.3008952140808105,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.40196365118026733,
+ "learning_rate": 0.0006,
+ "loss": 4.278536319732666,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.3925584554672241,
+ "learning_rate": 0.0006,
+ "loss": 4.351866722106934,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.37795954942703247,
+ "learning_rate": 0.0006,
+ "loss": 4.40715217590332,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.3920917510986328,
+ "learning_rate": 0.0006,
+ "loss": 4.303398132324219,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.3982515335083008,
+ "learning_rate": 0.0006,
+ "loss": 4.397731304168701,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.41097545623779297,
+ "learning_rate": 0.0006,
+ "loss": 4.372936248779297,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.38546738028526306,
+ "learning_rate": 0.0006,
+ "loss": 4.36802339553833,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.3931894302368164,
+ "learning_rate": 0.0006,
+ "loss": 4.397665023803711,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.37862512469291687,
+ "learning_rate": 0.0006,
+ "loss": 4.356085777282715,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.41227665543556213,
+ "learning_rate": 0.0006,
+ "loss": 4.4159650802612305,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.499416321516037,
+ "learning_rate": 0.0006,
+ "loss": 4.329807281494141,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 6.198739051818848,
+ "eval_runtime": 43.6864,
+ "eval_samples_per_second": 55.898,
+ "eval_steps_per_second": 3.502,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.4628259837627411,
+ "learning_rate": 0.0006,
+ "loss": 4.170797824859619,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.4806155860424042,
+ "learning_rate": 0.0006,
+ "loss": 4.2210259437561035,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.4822350740432739,
+ "learning_rate": 0.0006,
+ "loss": 4.23138952255249,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.286277770996094,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.5044941306114197,
+ "learning_rate": 0.0006,
+ "loss": 4.232921600341797,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.5530663132667542,
+ "learning_rate": 0.0006,
+ "loss": 4.221680641174316,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.5776026844978333,
+ "learning_rate": 0.0006,
+ "loss": 4.213212966918945,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.6634025573730469,
+ "learning_rate": 0.0006,
+ "loss": 4.319071292877197,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.76152503490448,
+ "learning_rate": 0.0006,
+ "loss": 4.214156150817871,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.8480479717254639,
+ "learning_rate": 0.0006,
+ "loss": 4.321653842926025,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.9160254001617432,
+ "learning_rate": 0.0006,
+ "loss": 4.33962869644165,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.8524528741836548,
+ "learning_rate": 0.0006,
+ "loss": 4.268365859985352,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.7075300216674805,
+ "learning_rate": 0.0006,
+ "loss": 4.306760311126709,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.6349018216133118,
+ "learning_rate": 0.0006,
+ "loss": 4.333056926727295,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.5707677006721497,
+ "learning_rate": 0.0006,
+ "loss": 4.32132625579834,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.5484790205955505,
+ "learning_rate": 0.0006,
+ "loss": 4.3016767501831055,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.5517436861991882,
+ "learning_rate": 0.0006,
+ "loss": 4.295352935791016,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.5682413578033447,
+ "learning_rate": 0.0006,
+ "loss": 4.302443504333496,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.5568698644638062,
+ "learning_rate": 0.0006,
+ "loss": 4.328906059265137,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.5146242380142212,
+ "learning_rate": 0.0006,
+ "loss": 4.314318656921387,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.4866996705532074,
+ "learning_rate": 0.0006,
+ "loss": 4.321515083312988,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.47854411602020264,
+ "learning_rate": 0.0006,
+ "loss": 4.336956977844238,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.48322951793670654,
+ "learning_rate": 0.0006,
+ "loss": 4.270317554473877,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.4432683289051056,
+ "learning_rate": 0.0006,
+ "loss": 4.3168792724609375,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.42538025975227356,
+ "learning_rate": 0.0006,
+ "loss": 4.236387729644775,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.4699258804321289,
+ "learning_rate": 0.0006,
+ "loss": 4.372434616088867,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.4574076235294342,
+ "learning_rate": 0.0006,
+ "loss": 4.347474098205566,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.42455345392227173,
+ "learning_rate": 0.0006,
+ "loss": 4.345785140991211,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.4194679260253906,
+ "learning_rate": 0.0006,
+ "loss": 4.326481819152832,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.4357808828353882,
+ "learning_rate": 0.0006,
+ "loss": 4.3457183837890625,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.4160650670528412,
+ "learning_rate": 0.0006,
+ "loss": 4.24708890914917,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.4105308949947357,
+ "learning_rate": 0.0006,
+ "loss": 4.3586530685424805,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.399740993976593,
+ "learning_rate": 0.0006,
+ "loss": 4.352291584014893,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.39557352662086487,
+ "learning_rate": 0.0006,
+ "loss": 4.284960746765137,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.4299493134021759,
+ "learning_rate": 0.0006,
+ "loss": 4.285758018493652,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.4042324721813202,
+ "learning_rate": 0.0006,
+ "loss": 4.357293605804443,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.396954745054245,
+ "learning_rate": 0.0006,
+ "loss": 4.2686262130737305,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.3821943998336792,
+ "learning_rate": 0.0006,
+ "loss": 4.357154846191406,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.3846510648727417,
+ "learning_rate": 0.0006,
+ "loss": 4.323714256286621,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.37851205468177795,
+ "learning_rate": 0.0006,
+ "loss": 4.341939926147461,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.37929001450538635,
+ "learning_rate": 0.0006,
+ "loss": 4.248264312744141,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.3882073163986206,
+ "learning_rate": 0.0006,
+ "loss": 4.307059288024902,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.38127774000167847,
+ "learning_rate": 0.0006,
+ "loss": 4.363462448120117,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.3818758726119995,
+ "learning_rate": 0.0006,
+ "loss": 4.322787284851074,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.389406681060791,
+ "learning_rate": 0.0006,
+ "loss": 4.457492828369141,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.38305217027664185,
+ "learning_rate": 0.0006,
+ "loss": 4.306647300720215,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.3900682032108307,
+ "learning_rate": 0.0006,
+ "loss": 4.331067085266113,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.38036227226257324,
+ "learning_rate": 0.0006,
+ "loss": 4.264892578125,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.39323344826698303,
+ "learning_rate": 0.0006,
+ "loss": 4.365866661071777,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.4049435257911682,
+ "learning_rate": 0.0006,
+ "loss": 4.381568908691406,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.4216940701007843,
+ "learning_rate": 0.0006,
+ "loss": 4.364271640777588,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.42422112822532654,
+ "learning_rate": 0.0006,
+ "loss": 4.400199890136719,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.3819519281387329,
+ "learning_rate": 0.0006,
+ "loss": 4.257974147796631,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.4014202654361725,
+ "learning_rate": 0.0006,
+ "loss": 4.329166889190674,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.39812493324279785,
+ "learning_rate": 0.0006,
+ "loss": 4.372607231140137,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.3916856050491333,
+ "learning_rate": 0.0006,
+ "loss": 4.385530471801758,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.4020134508609772,
+ "learning_rate": 0.0006,
+ "loss": 4.3358330726623535,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.3931422829627991,
+ "learning_rate": 0.0006,
+ "loss": 4.381669521331787,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.37799912691116333,
+ "learning_rate": 0.0006,
+ "loss": 4.392168998718262,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.39257925748825073,
+ "learning_rate": 0.0006,
+ "loss": 4.4379096031188965,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.39501482248306274,
+ "learning_rate": 0.0006,
+ "loss": 4.323174953460693,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.3914605677127838,
+ "learning_rate": 0.0006,
+ "loss": 4.365396022796631,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.3778083026409149,
+ "learning_rate": 0.0006,
+ "loss": 4.3220720291137695,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.3911595344543457,
+ "learning_rate": 0.0006,
+ "loss": 4.323670864105225,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.3692200779914856,
+ "learning_rate": 0.0006,
+ "loss": 4.341980934143066,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.3713432848453522,
+ "learning_rate": 0.0006,
+ "loss": 4.304820537567139,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.37348702549934387,
+ "learning_rate": 0.0006,
+ "loss": 4.326486587524414,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.3943784236907959,
+ "learning_rate": 0.0006,
+ "loss": 4.374529838562012,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.4153553247451782,
+ "learning_rate": 0.0006,
+ "loss": 4.392250061035156,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.3885365426540375,
+ "learning_rate": 0.0006,
+ "loss": 4.322462558746338,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.3777163326740265,
+ "learning_rate": 0.0006,
+ "loss": 4.399444103240967,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.45014286041259766,
+ "learning_rate": 0.0006,
+ "loss": 4.266523361206055,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 6.2529473304748535,
+ "eval_runtime": 43.7478,
+ "eval_samples_per_second": 55.82,
+ "eval_steps_per_second": 3.497,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.4145124852657318,
+ "learning_rate": 0.0006,
+ "loss": 4.266193389892578,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.44340333342552185,
+ "learning_rate": 0.0006,
+ "loss": 4.134491443634033,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.4580900967121124,
+ "learning_rate": 0.0006,
+ "loss": 4.287178993225098,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.47761040925979614,
+ "learning_rate": 0.0006,
+ "loss": 4.429558277130127,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.46682101488113403,
+ "learning_rate": 0.0006,
+ "loss": 4.317314147949219,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.4769667685031891,
+ "learning_rate": 0.0006,
+ "loss": 4.290413856506348,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.539111316204071,
+ "learning_rate": 0.0006,
+ "loss": 4.240926742553711,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.6831890344619751,
+ "learning_rate": 0.0006,
+ "loss": 4.204584121704102,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.749098539352417,
+ "learning_rate": 0.0006,
+ "loss": 4.25895881652832,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.7921332120895386,
+ "learning_rate": 0.0006,
+ "loss": 4.339118003845215,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.7587332725524902,
+ "learning_rate": 0.0006,
+ "loss": 4.2877516746521,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.6472265124320984,
+ "learning_rate": 0.0006,
+ "loss": 4.2839131355285645,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.5472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.346395492553711,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.6083328723907471,
+ "learning_rate": 0.0006,
+ "loss": 4.240531921386719,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.5928010940551758,
+ "learning_rate": 0.0006,
+ "loss": 4.347572326660156,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.532841145992279,
+ "learning_rate": 0.0006,
+ "loss": 4.281345844268799,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.4778757691383362,
+ "learning_rate": 0.0006,
+ "loss": 4.279055118560791,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.48648887872695923,
+ "learning_rate": 0.0006,
+ "loss": 4.198624610900879,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.43191879987716675,
+ "learning_rate": 0.0006,
+ "loss": 4.236109733581543,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.45012032985687256,
+ "learning_rate": 0.0006,
+ "loss": 4.323042869567871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.4548600912094116,
+ "learning_rate": 0.0006,
+ "loss": 4.2210235595703125,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.45999664068222046,
+ "learning_rate": 0.0006,
+ "loss": 4.2899250984191895,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.4702019691467285,
+ "learning_rate": 0.0006,
+ "loss": 4.3281145095825195,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.4921978712081909,
+ "learning_rate": 0.0006,
+ "loss": 4.310947418212891,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.4662175178527832,
+ "learning_rate": 0.0006,
+ "loss": 4.191643714904785,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.46207281947135925,
+ "learning_rate": 0.0006,
+ "loss": 4.423742771148682,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.46523746848106384,
+ "learning_rate": 0.0006,
+ "loss": 4.321560859680176,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.42817118763923645,
+ "learning_rate": 0.0006,
+ "loss": 4.275110244750977,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.4028136134147644,
+ "learning_rate": 0.0006,
+ "loss": 4.26282262802124,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.39602214097976685,
+ "learning_rate": 0.0006,
+ "loss": 4.350768089294434,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.4017263948917389,
+ "learning_rate": 0.0006,
+ "loss": 4.2504682540893555,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.4112628996372223,
+ "learning_rate": 0.0006,
+ "loss": 4.262454986572266,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.44213998317718506,
+ "learning_rate": 0.0006,
+ "loss": 4.33111572265625,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.4273027777671814,
+ "learning_rate": 0.0006,
+ "loss": 4.241754055023193,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.42171111702919006,
+ "learning_rate": 0.0006,
+ "loss": 4.3793134689331055,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.4059634506702423,
+ "learning_rate": 0.0006,
+ "loss": 4.267672538757324,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.40447160601615906,
+ "learning_rate": 0.0006,
+ "loss": 4.282671928405762,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.39427000284194946,
+ "learning_rate": 0.0006,
+ "loss": 4.286433219909668,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.3932870924472809,
+ "learning_rate": 0.0006,
+ "loss": 4.31290340423584,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.37661924958229065,
+ "learning_rate": 0.0006,
+ "loss": 4.262170791625977,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.40946775674819946,
+ "learning_rate": 0.0006,
+ "loss": 4.303168296813965,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.3941985070705414,
+ "learning_rate": 0.0006,
+ "loss": 4.310337066650391,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.40164992213249207,
+ "learning_rate": 0.0006,
+ "loss": 4.312982559204102,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.3975890874862671,
+ "learning_rate": 0.0006,
+ "loss": 4.3248701095581055,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.38574227690696716,
+ "learning_rate": 0.0006,
+ "loss": 4.38369083404541,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.3992249667644501,
+ "learning_rate": 0.0006,
+ "loss": 4.297112464904785,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.39868417382240295,
+ "learning_rate": 0.0006,
+ "loss": 4.295505046844482,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.4101839065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.3519697189331055,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.379717081785202,
+ "learning_rate": 0.0006,
+ "loss": 4.2289581298828125,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.3912242352962494,
+ "learning_rate": 0.0006,
+ "loss": 4.40312385559082,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.3885950446128845,
+ "learning_rate": 0.0006,
+ "loss": 4.286848068237305,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.3892953097820282,
+ "learning_rate": 0.0006,
+ "loss": 4.292012691497803,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.38809701800346375,
+ "learning_rate": 0.0006,
+ "loss": 4.374564170837402,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.3903641700744629,
+ "learning_rate": 0.0006,
+ "loss": 4.394603729248047,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.39104169607162476,
+ "learning_rate": 0.0006,
+ "loss": 4.35471773147583,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.3975231349468231,
+ "learning_rate": 0.0006,
+ "loss": 4.382683753967285,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.40965917706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.367456436157227,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.4243786633014679,
+ "learning_rate": 0.0006,
+ "loss": 4.367887020111084,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.40315696597099304,
+ "learning_rate": 0.0006,
+ "loss": 4.300185203552246,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.41343727707862854,
+ "learning_rate": 0.0006,
+ "loss": 4.331711292266846,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.40250977873802185,
+ "learning_rate": 0.0006,
+ "loss": 4.3398590087890625,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.38862133026123047,
+ "learning_rate": 0.0006,
+ "loss": 4.272953033447266,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.39667993783950806,
+ "learning_rate": 0.0006,
+ "loss": 4.47554874420166,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.41999825835227966,
+ "learning_rate": 0.0006,
+ "loss": 4.263052940368652,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.4195004105567932,
+ "learning_rate": 0.0006,
+ "loss": 4.330724716186523,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.3944961130619049,
+ "learning_rate": 0.0006,
+ "loss": 4.3109002113342285,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.3944008946418762,
+ "learning_rate": 0.0006,
+ "loss": 4.298914432525635,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.4016371965408325,
+ "learning_rate": 0.0006,
+ "loss": 4.346005439758301,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.38281115889549255,
+ "learning_rate": 0.0006,
+ "loss": 4.332263946533203,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.36780816316604614,
+ "learning_rate": 0.0006,
+ "loss": 4.356542587280273,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.37247809767723083,
+ "learning_rate": 0.0006,
+ "loss": 4.244487285614014,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.4414741098880768,
+ "learning_rate": 0.0006,
+ "loss": 4.326817035675049,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 6.229246616363525,
+ "eval_runtime": 43.7873,
+ "eval_samples_per_second": 55.77,
+ "eval_steps_per_second": 3.494,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.3957669138908386,
+ "learning_rate": 0.0006,
+ "loss": 4.263937950134277,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.4236466586589813,
+ "learning_rate": 0.0006,
+ "loss": 4.222219467163086,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.47564026713371277,
+ "learning_rate": 0.0006,
+ "loss": 4.266385555267334,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.5004186630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.262574195861816,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.592176616191864,
+ "learning_rate": 0.0006,
+ "loss": 4.225201606750488,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.7019115090370178,
+ "learning_rate": 0.0006,
+ "loss": 4.23977518081665,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.8254161477088928,
+ "learning_rate": 0.0006,
+ "loss": 4.227803707122803,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.8682525753974915,
+ "learning_rate": 0.0006,
+ "loss": 4.321664810180664,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.9065311551094055,
+ "learning_rate": 0.0006,
+ "loss": 4.253820419311523,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.8974156975746155,
+ "learning_rate": 0.0006,
+ "loss": 4.3650312423706055,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.7837588787078857,
+ "learning_rate": 0.0006,
+ "loss": 4.283933639526367,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.7024438381195068,
+ "learning_rate": 0.0006,
+ "loss": 4.258434772491455,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.625393271446228,
+ "learning_rate": 0.0006,
+ "loss": 4.23687744140625,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.5788878202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.234710693359375,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.5580928325653076,
+ "learning_rate": 0.0006,
+ "loss": 4.29906702041626,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.48748156428337097,
+ "learning_rate": 0.0006,
+ "loss": 4.226408958435059,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.4848710298538208,
+ "learning_rate": 0.0006,
+ "loss": 4.2123122215271,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.5063420534133911,
+ "learning_rate": 0.0006,
+ "loss": 4.255153656005859,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.5110829472541809,
+ "learning_rate": 0.0006,
+ "loss": 4.358216285705566,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.49089232087135315,
+ "learning_rate": 0.0006,
+ "loss": 4.300388813018799,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.4603854715824127,
+ "learning_rate": 0.0006,
+ "loss": 4.2832136154174805,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.4599403440952301,
+ "learning_rate": 0.0006,
+ "loss": 4.295095443725586,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.4395982623100281,
+ "learning_rate": 0.0006,
+ "loss": 4.26538610458374,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.41270455718040466,
+ "learning_rate": 0.0006,
+ "loss": 4.2344889640808105,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.42688557505607605,
+ "learning_rate": 0.0006,
+ "loss": 4.207379341125488,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.4363268315792084,
+ "learning_rate": 0.0006,
+ "loss": 4.30502462387085,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.42514753341674805,
+ "learning_rate": 0.0006,
+ "loss": 4.3195905685424805,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.3887978494167328,
+ "learning_rate": 0.0006,
+ "loss": 4.23016357421875,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.39444148540496826,
+ "learning_rate": 0.0006,
+ "loss": 4.265226364135742,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.41804856061935425,
+ "learning_rate": 0.0006,
+ "loss": 4.399003028869629,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.4026116132736206,
+ "learning_rate": 0.0006,
+ "loss": 4.356629371643066,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.4023478329181671,
+ "learning_rate": 0.0006,
+ "loss": 4.379050254821777,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.39880287647247314,
+ "learning_rate": 0.0006,
+ "loss": 4.277581214904785,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.38926973938941956,
+ "learning_rate": 0.0006,
+ "loss": 4.2318902015686035,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.3924587368965149,
+ "learning_rate": 0.0006,
+ "loss": 4.329956531524658,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.40522003173828125,
+ "learning_rate": 0.0006,
+ "loss": 4.315302848815918,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.3916785418987274,
+ "learning_rate": 0.0006,
+ "loss": 4.319087505340576,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.419207364320755,
+ "learning_rate": 0.0006,
+ "loss": 4.373052597045898,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.3973175287246704,
+ "learning_rate": 0.0006,
+ "loss": 4.323544025421143,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.37236395478248596,
+ "learning_rate": 0.0006,
+ "loss": 4.206120491027832,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.385455846786499,
+ "learning_rate": 0.0006,
+ "loss": 4.294527053833008,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.3870242238044739,
+ "learning_rate": 0.0006,
+ "loss": 4.221030235290527,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.3881280720233917,
+ "learning_rate": 0.0006,
+ "loss": 4.233551025390625,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.3722829818725586,
+ "learning_rate": 0.0006,
+ "loss": 4.257683277130127,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.375012069940567,
+ "learning_rate": 0.0006,
+ "loss": 4.350418567657471,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.38077789545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.192095756530762,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.3906152844429016,
+ "learning_rate": 0.0006,
+ "loss": 4.357870578765869,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.3887590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.318536281585693,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.3828654885292053,
+ "learning_rate": 0.0006,
+ "loss": 4.28328800201416,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.39694708585739136,
+ "learning_rate": 0.0006,
+ "loss": 4.391949653625488,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.3975147604942322,
+ "learning_rate": 0.0006,
+ "loss": 4.352961540222168,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.3841004967689514,
+ "learning_rate": 0.0006,
+ "loss": 4.228391647338867,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.3807359039783478,
+ "learning_rate": 0.0006,
+ "loss": 4.22756290435791,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.3987439274787903,
+ "learning_rate": 0.0006,
+ "loss": 4.407889366149902,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.4201034605503082,
+ "learning_rate": 0.0006,
+ "loss": 4.34971809387207,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.4346381723880768,
+ "learning_rate": 0.0006,
+ "loss": 4.293330192565918,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.44999462366104126,
+ "learning_rate": 0.0006,
+ "loss": 4.417044162750244,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.38561612367630005,
+ "learning_rate": 0.0006,
+ "loss": 4.258061408996582,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.3790895938873291,
+ "learning_rate": 0.0006,
+ "loss": 4.321300029754639,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.3984527289867401,
+ "learning_rate": 0.0006,
+ "loss": 4.247694969177246,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.42955538630485535,
+ "learning_rate": 0.0006,
+ "loss": 4.343568325042725,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.40776535868644714,
+ "learning_rate": 0.0006,
+ "loss": 4.34933614730835,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.39172181487083435,
+ "learning_rate": 0.0006,
+ "loss": 4.379310607910156,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.40323659777641296,
+ "learning_rate": 0.0006,
+ "loss": 4.268922805786133,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.4012514352798462,
+ "learning_rate": 0.0006,
+ "loss": 4.363704681396484,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.39983171224594116,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.39482736587524414,
+ "learning_rate": 0.0006,
+ "loss": 4.338078022003174,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.40444278717041016,
+ "learning_rate": 0.0006,
+ "loss": 4.373770713806152,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.3808857500553131,
+ "learning_rate": 0.0006,
+ "loss": 4.326850891113281,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.38284221291542053,
+ "learning_rate": 0.0006,
+ "loss": 4.389925956726074,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.3825092613697052,
+ "learning_rate": 0.0006,
+ "loss": 4.389588356018066,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.4557396471500397,
+ "learning_rate": 0.0006,
+ "loss": 4.302459239959717,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 6.270473480224609,
+ "eval_runtime": 43.6892,
+ "eval_samples_per_second": 55.895,
+ "eval_steps_per_second": 3.502,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.4212155044078827,
+ "learning_rate": 0.0006,
+ "loss": 4.3081440925598145,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.4590097963809967,
+ "learning_rate": 0.0006,
+ "loss": 4.150710582733154,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.4502851963043213,
+ "learning_rate": 0.0006,
+ "loss": 4.238507270812988,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.44205573201179504,
+ "learning_rate": 0.0006,
+ "loss": 4.202637672424316,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.5142990946769714,
+ "learning_rate": 0.0006,
+ "loss": 4.325977325439453,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.5224044919013977,
+ "learning_rate": 0.0006,
+ "loss": 4.265192031860352,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.5608325004577637,
+ "learning_rate": 0.0006,
+ "loss": 4.295414924621582,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.6955265402793884,
+ "learning_rate": 0.0006,
+ "loss": 4.218759536743164,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.868670642375946,
+ "learning_rate": 0.0006,
+ "loss": 4.220717430114746,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 1.0042238235473633,
+ "learning_rate": 0.0006,
+ "loss": 4.290093421936035,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.9413097500801086,
+ "learning_rate": 0.0006,
+ "loss": 4.324940204620361,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.697178304195404,
+ "learning_rate": 0.0006,
+ "loss": 4.301477909088135,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.7008699774742126,
+ "learning_rate": 0.0006,
+ "loss": 4.2905120849609375,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.6534171104431152,
+ "learning_rate": 0.0006,
+ "loss": 4.20712947845459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.6290929317474365,
+ "learning_rate": 0.0006,
+ "loss": 4.229743003845215,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.5494177341461182,
+ "learning_rate": 0.0006,
+ "loss": 4.185794353485107,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.5147525072097778,
+ "learning_rate": 0.0006,
+ "loss": 4.26673698425293,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.5048599243164062,
+ "learning_rate": 0.0006,
+ "loss": 4.210233211517334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.5414654016494751,
+ "learning_rate": 0.0006,
+ "loss": 4.333046913146973,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.47082704305648804,
+ "learning_rate": 0.0006,
+ "loss": 4.301358699798584,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.4675837755203247,
+ "learning_rate": 0.0006,
+ "loss": 4.204195022583008,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.4378611743450165,
+ "learning_rate": 0.0006,
+ "loss": 4.155127048492432,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.4415567219257355,
+ "learning_rate": 0.0006,
+ "loss": 4.2721967697143555,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.47591230273246765,
+ "learning_rate": 0.0006,
+ "loss": 4.358033180236816,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.4658828675746918,
+ "learning_rate": 0.0006,
+ "loss": 4.294735908508301,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.4501555860042572,
+ "learning_rate": 0.0006,
+ "loss": 4.263189315795898,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.46739140152931213,
+ "learning_rate": 0.0006,
+ "loss": 4.32848596572876,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.45165732502937317,
+ "learning_rate": 0.0006,
+ "loss": 4.267234802246094,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.409282922744751,
+ "learning_rate": 0.0006,
+ "loss": 4.285059928894043,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.42865875363349915,
+ "learning_rate": 0.0006,
+ "loss": 4.227115631103516,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.4552954137325287,
+ "learning_rate": 0.0006,
+ "loss": 4.325474739074707,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.42055317759513855,
+ "learning_rate": 0.0006,
+ "loss": 4.2007951736450195,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.4279162287712097,
+ "learning_rate": 0.0006,
+ "loss": 4.359176158905029,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.4455033540725708,
+ "learning_rate": 0.0006,
+ "loss": 4.275487899780273,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.43002691864967346,
+ "learning_rate": 0.0006,
+ "loss": 4.181482315063477,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.44032880663871765,
+ "learning_rate": 0.0006,
+ "loss": 4.36613655090332,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.4100615680217743,
+ "learning_rate": 0.0006,
+ "loss": 4.265050411224365,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.39392155408859253,
+ "learning_rate": 0.0006,
+ "loss": 4.325000762939453,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.4347812533378601,
+ "learning_rate": 0.0006,
+ "loss": 4.307058334350586,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.42177414894104004,
+ "learning_rate": 0.0006,
+ "loss": 4.270357131958008,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.431207537651062,
+ "learning_rate": 0.0006,
+ "loss": 4.414610862731934,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.4254903495311737,
+ "learning_rate": 0.0006,
+ "loss": 4.285326957702637,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.4089864194393158,
+ "learning_rate": 0.0006,
+ "loss": 4.275937080383301,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.4102814197540283,
+ "learning_rate": 0.0006,
+ "loss": 4.303900718688965,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.3859243094921112,
+ "learning_rate": 0.0006,
+ "loss": 4.215274333953857,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.4012472331523895,
+ "learning_rate": 0.0006,
+ "loss": 4.328278541564941,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.4047054648399353,
+ "learning_rate": 0.0006,
+ "loss": 4.276683807373047,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.4050472676753998,
+ "learning_rate": 0.0006,
+ "loss": 4.302199363708496,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.40645819902420044,
+ "learning_rate": 0.0006,
+ "loss": 4.401165008544922,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.3888589143753052,
+ "learning_rate": 0.0006,
+ "loss": 4.258542060852051,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.3865634500980377,
+ "learning_rate": 0.0006,
+ "loss": 4.224770545959473,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.40157631039619446,
+ "learning_rate": 0.0006,
+ "loss": 4.321439743041992,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.4097841680049896,
+ "learning_rate": 0.0006,
+ "loss": 4.436502456665039,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.4125346541404724,
+ "learning_rate": 0.0006,
+ "loss": 4.3067522048950195,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.39692872762680054,
+ "learning_rate": 0.0006,
+ "loss": 4.338959693908691,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.3942561149597168,
+ "learning_rate": 0.0006,
+ "loss": 4.29915714263916,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.3940109610557556,
+ "learning_rate": 0.0006,
+ "loss": 4.343454360961914,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.39725086092948914,
+ "learning_rate": 0.0006,
+ "loss": 4.294066429138184,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.3779081702232361,
+ "learning_rate": 0.0006,
+ "loss": 4.2644758224487305,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.37665313482284546,
+ "learning_rate": 0.0006,
+ "loss": 4.3241119384765625,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.394426167011261,
+ "learning_rate": 0.0006,
+ "loss": 4.391383647918701,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.3948868215084076,
+ "learning_rate": 0.0006,
+ "loss": 4.336596965789795,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.4218588173389435,
+ "learning_rate": 0.0006,
+ "loss": 4.268021583557129,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.3900219202041626,
+ "learning_rate": 0.0006,
+ "loss": 4.323431015014648,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.3683486580848694,
+ "learning_rate": 0.0006,
+ "loss": 4.283624649047852,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.3842235803604126,
+ "learning_rate": 0.0006,
+ "loss": 4.302942752838135,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.40175142884254456,
+ "learning_rate": 0.0006,
+ "loss": 4.394964218139648,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.4041447639465332,
+ "learning_rate": 0.0006,
+ "loss": 4.355955600738525,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.38710159063339233,
+ "learning_rate": 0.0006,
+ "loss": 4.340442180633545,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.38841989636421204,
+ "learning_rate": 0.0006,
+ "loss": 4.380399703979492,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.41300448775291443,
+ "learning_rate": 0.0006,
+ "loss": 4.321839332580566,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.49495911598205566,
+ "learning_rate": 0.0006,
+ "loss": 4.293513774871826,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 6.327922344207764,
+ "eval_runtime": 43.7769,
+ "eval_samples_per_second": 55.783,
+ "eval_steps_per_second": 3.495,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.4602355659008026,
+ "learning_rate": 0.0006,
+ "loss": 4.2585554122924805,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.4733062982559204,
+ "learning_rate": 0.0006,
+ "loss": 4.237922191619873,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.4390600025653839,
+ "learning_rate": 0.0006,
+ "loss": 4.159769058227539,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.44887402653694153,
+ "learning_rate": 0.0006,
+ "loss": 4.2117743492126465,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.4746656119823456,
+ "learning_rate": 0.0006,
+ "loss": 4.22344446182251,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.4502047598361969,
+ "learning_rate": 0.0006,
+ "loss": 4.179043769836426,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.4669528603553772,
+ "learning_rate": 0.0006,
+ "loss": 4.242807388305664,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.48304441571235657,
+ "learning_rate": 0.0006,
+ "loss": 4.243523597717285,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.4745117425918579,
+ "learning_rate": 0.0006,
+ "loss": 4.271031856536865,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.42403295636177063,
+ "learning_rate": 0.0006,
+ "loss": 4.231593132019043,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.4177025556564331,
+ "learning_rate": 0.0006,
+ "loss": 4.1239848136901855,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.44315826892852783,
+ "learning_rate": 0.0006,
+ "loss": 4.293359279632568,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.4518056809902191,
+ "learning_rate": 0.0006,
+ "loss": 4.238755226135254,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.4481995701789856,
+ "learning_rate": 0.0006,
+ "loss": 4.10948371887207,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.4367348253726959,
+ "learning_rate": 0.0006,
+ "loss": 4.289554595947266,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.41825398802757263,
+ "learning_rate": 0.0006,
+ "loss": 4.201297760009766,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.4390457570552826,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.4219510853290558,
+ "learning_rate": 0.0006,
+ "loss": 4.234352111816406,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.4195581078529358,
+ "learning_rate": 0.0006,
+ "loss": 4.213441371917725,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.4425918459892273,
+ "learning_rate": 0.0006,
+ "loss": 4.268826007843018,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.4734676778316498,
+ "learning_rate": 0.0006,
+ "loss": 4.266847610473633,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.48404407501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.241931915283203,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.4946669936180115,
+ "learning_rate": 0.0006,
+ "loss": 4.250909805297852,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.47972625494003296,
+ "learning_rate": 0.0006,
+ "loss": 4.195961952209473,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.4569213390350342,
+ "learning_rate": 0.0006,
+ "loss": 4.296036720275879,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.4644681215286255,
+ "learning_rate": 0.0006,
+ "loss": 4.216559410095215,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.48317641019821167,
+ "learning_rate": 0.0006,
+ "loss": 4.3226318359375,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.5122473835945129,
+ "learning_rate": 0.0006,
+ "loss": 4.366876602172852,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.5485180020332336,
+ "learning_rate": 0.0006,
+ "loss": 4.2639265060424805,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.5493056774139404,
+ "learning_rate": 0.0006,
+ "loss": 4.315012454986572,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.5442193150520325,
+ "learning_rate": 0.0006,
+ "loss": 4.293516159057617,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.5160698294639587,
+ "learning_rate": 0.0006,
+ "loss": 4.203614234924316,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.4583905041217804,
+ "learning_rate": 0.0006,
+ "loss": 4.204253673553467,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.47937676310539246,
+ "learning_rate": 0.0006,
+ "loss": 4.225821495056152,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.4585326611995697,
+ "learning_rate": 0.0006,
+ "loss": 4.27936315536499,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.4224967658519745,
+ "learning_rate": 0.0006,
+ "loss": 4.396998405456543,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.43489396572113037,
+ "learning_rate": 0.0006,
+ "loss": 4.321684837341309,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.43469369411468506,
+ "learning_rate": 0.0006,
+ "loss": 4.333868980407715,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.4171457588672638,
+ "learning_rate": 0.0006,
+ "loss": 4.212692737579346,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.40925848484039307,
+ "learning_rate": 0.0006,
+ "loss": 4.354894638061523,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.42900922894477844,
+ "learning_rate": 0.0006,
+ "loss": 4.309920310974121,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.42338159680366516,
+ "learning_rate": 0.0006,
+ "loss": 4.2942705154418945,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.4057067930698395,
+ "learning_rate": 0.0006,
+ "loss": 4.214710235595703,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.4072226583957672,
+ "learning_rate": 0.0006,
+ "loss": 4.312472343444824,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.3916485905647278,
+ "learning_rate": 0.0006,
+ "loss": 4.237615585327148,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.42151209712028503,
+ "learning_rate": 0.0006,
+ "loss": 4.377703666687012,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.44910693168640137,
+ "learning_rate": 0.0006,
+ "loss": 4.425722122192383,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.46527767181396484,
+ "learning_rate": 0.0006,
+ "loss": 4.26363468170166,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.45423775911331177,
+ "learning_rate": 0.0006,
+ "loss": 4.219768047332764,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.4229055345058441,
+ "learning_rate": 0.0006,
+ "loss": 4.2751007080078125,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.4136784076690674,
+ "learning_rate": 0.0006,
+ "loss": 4.256582736968994,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.42408230900764465,
+ "learning_rate": 0.0006,
+ "loss": 4.341879844665527,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.4360068142414093,
+ "learning_rate": 0.0006,
+ "loss": 4.2564802169799805,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.4251601994037628,
+ "learning_rate": 0.0006,
+ "loss": 4.370902061462402,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.4240182936191559,
+ "learning_rate": 0.0006,
+ "loss": 4.357310771942139,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.40821802616119385,
+ "learning_rate": 0.0006,
+ "loss": 4.299274444580078,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.42971381545066833,
+ "learning_rate": 0.0006,
+ "loss": 4.339339256286621,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.4170750677585602,
+ "learning_rate": 0.0006,
+ "loss": 4.295743942260742,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.4416576027870178,
+ "learning_rate": 0.0006,
+ "loss": 4.31326961517334,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.43994101881980896,
+ "learning_rate": 0.0006,
+ "loss": 4.286459922790527,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.43738171458244324,
+ "learning_rate": 0.0006,
+ "loss": 4.3276166915893555,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.42107513546943665,
+ "learning_rate": 0.0006,
+ "loss": 4.276320457458496,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.4138924479484558,
+ "learning_rate": 0.0006,
+ "loss": 4.263800621032715,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.4136491119861603,
+ "learning_rate": 0.0006,
+ "loss": 4.3641462326049805,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.4299047291278839,
+ "learning_rate": 0.0006,
+ "loss": 4.395074844360352,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.4680858552455902,
+ "learning_rate": 0.0006,
+ "loss": 4.29918098449707,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.5115722417831421,
+ "learning_rate": 0.0006,
+ "loss": 4.317390441894531,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.49535948038101196,
+ "learning_rate": 0.0006,
+ "loss": 4.311214447021484,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.44336947798728943,
+ "learning_rate": 0.0006,
+ "loss": 4.410158157348633,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.41606271266937256,
+ "learning_rate": 0.0006,
+ "loss": 4.303007125854492,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.3919375538825989,
+ "learning_rate": 0.0006,
+ "loss": 4.271506309509277,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.4847380518913269,
+ "learning_rate": 0.0006,
+ "loss": 4.368446350097656,
+ "step": 5760
+ },
+ {
+ "epoch": 80.0,
+ "eval_loss": 6.289350509643555,
+ "eval_runtime": 43.7865,
+ "eval_samples_per_second": 55.771,
+ "eval_steps_per_second": 3.494,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.4189201593399048,
+ "learning_rate": 0.0006,
+ "loss": 4.182366847991943,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.4759898781776428,
+ "learning_rate": 0.0006,
+ "loss": 4.19309139251709,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.527441680431366,
+ "learning_rate": 0.0006,
+ "loss": 4.219327926635742,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.519743025302887,
+ "learning_rate": 0.0006,
+ "loss": 4.141674995422363,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.4941118657588959,
+ "learning_rate": 0.0006,
+ "loss": 4.151315212249756,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.5262619256973267,
+ "learning_rate": 0.0006,
+ "loss": 4.181960105895996,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.6155849099159241,
+ "learning_rate": 0.0006,
+ "loss": 4.21251106262207,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.7172285914421082,
+ "learning_rate": 0.0006,
+ "loss": 4.233085632324219,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.7969664931297302,
+ "learning_rate": 0.0006,
+ "loss": 4.231586933135986,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.7671365141868591,
+ "learning_rate": 0.0006,
+ "loss": 4.288948059082031,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.6886342167854309,
+ "learning_rate": 0.0006,
+ "loss": 4.186882495880127,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.613745927810669,
+ "learning_rate": 0.0006,
+ "loss": 4.22116756439209,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.6049351096153259,
+ "learning_rate": 0.0006,
+ "loss": 4.247993469238281,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.5160547494888306,
+ "learning_rate": 0.0006,
+ "loss": 4.230243682861328,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.5072378516197205,
+ "learning_rate": 0.0006,
+ "loss": 4.1789140701293945,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.5201945304870605,
+ "learning_rate": 0.0006,
+ "loss": 4.2888031005859375,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.5084741711616516,
+ "learning_rate": 0.0006,
+ "loss": 4.204905986785889,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.45192697644233704,
+ "learning_rate": 0.0006,
+ "loss": 4.273176193237305,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.4638829827308655,
+ "learning_rate": 0.0006,
+ "loss": 4.276776313781738,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.5091138482093811,
+ "learning_rate": 0.0006,
+ "loss": 4.20111083984375,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.5181353092193604,
+ "learning_rate": 0.0006,
+ "loss": 4.270737648010254,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.4666393995285034,
+ "learning_rate": 0.0006,
+ "loss": 4.220527648925781,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.4459801912307739,
+ "learning_rate": 0.0006,
+ "loss": 4.246898651123047,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.44209161400794983,
+ "learning_rate": 0.0006,
+ "loss": 4.2897796630859375,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.44252556562423706,
+ "learning_rate": 0.0006,
+ "loss": 4.31494665145874,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.43231600522994995,
+ "learning_rate": 0.0006,
+ "loss": 4.341650009155273,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.4496018886566162,
+ "learning_rate": 0.0006,
+ "loss": 4.222264766693115,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.41425642371177673,
+ "learning_rate": 0.0006,
+ "loss": 4.258854866027832,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.4198642671108246,
+ "learning_rate": 0.0006,
+ "loss": 4.286402225494385,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.4175935387611389,
+ "learning_rate": 0.0006,
+ "loss": 4.329756736755371,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.42901840806007385,
+ "learning_rate": 0.0006,
+ "loss": 4.2249555587768555,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.41729676723480225,
+ "learning_rate": 0.0006,
+ "loss": 4.25307559967041,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.44785404205322266,
+ "learning_rate": 0.0006,
+ "loss": 4.279146194458008,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.45788508653640747,
+ "learning_rate": 0.0006,
+ "loss": 4.185768127441406,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.4351639747619629,
+ "learning_rate": 0.0006,
+ "loss": 4.20334529876709,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.41771501302719116,
+ "learning_rate": 0.0006,
+ "loss": 4.2551493644714355,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.41627222299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.277044296264648,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.44212380051612854,
+ "learning_rate": 0.0006,
+ "loss": 4.225511074066162,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.38782668113708496,
+ "learning_rate": 0.0006,
+ "loss": 4.245084762573242,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.3984670341014862,
+ "learning_rate": 0.0006,
+ "loss": 4.318271160125732,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.3934188783168793,
+ "learning_rate": 0.0006,
+ "loss": 4.2478485107421875,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.38275960087776184,
+ "learning_rate": 0.0006,
+ "loss": 4.166913032531738,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.4073631465435028,
+ "learning_rate": 0.0006,
+ "loss": 4.325770378112793,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.40767619013786316,
+ "learning_rate": 0.0006,
+ "loss": 4.337563514709473,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.4344850778579712,
+ "learning_rate": 0.0006,
+ "loss": 4.339216709136963,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.4321129024028778,
+ "learning_rate": 0.0006,
+ "loss": 4.251045227050781,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.42891228199005127,
+ "learning_rate": 0.0006,
+ "loss": 4.339747428894043,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.430338054895401,
+ "learning_rate": 0.0006,
+ "loss": 4.290801525115967,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.44881945848464966,
+ "learning_rate": 0.0006,
+ "loss": 4.290616989135742,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.41193726658821106,
+ "learning_rate": 0.0006,
+ "loss": 4.178008079528809,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.3986659348011017,
+ "learning_rate": 0.0006,
+ "loss": 4.24334716796875,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.4000692665576935,
+ "learning_rate": 0.0006,
+ "loss": 4.273529052734375,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.4126340448856354,
+ "learning_rate": 0.0006,
+ "loss": 4.316381454467773,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.3987399935722351,
+ "learning_rate": 0.0006,
+ "loss": 4.253186225891113,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.3934975564479828,
+ "learning_rate": 0.0006,
+ "loss": 4.316921234130859,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.39915889501571655,
+ "learning_rate": 0.0006,
+ "loss": 4.304752349853516,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.4130222499370575,
+ "learning_rate": 0.0006,
+ "loss": 4.325786590576172,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.42784422636032104,
+ "learning_rate": 0.0006,
+ "loss": 4.316120624542236,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.4270218312740326,
+ "learning_rate": 0.0006,
+ "loss": 4.3773698806762695,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.4531627297401428,
+ "learning_rate": 0.0006,
+ "loss": 4.291565418243408,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.43761077523231506,
+ "learning_rate": 0.0006,
+ "loss": 4.318550109863281,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.43666771054267883,
+ "learning_rate": 0.0006,
+ "loss": 4.310146331787109,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.41557514667510986,
+ "learning_rate": 0.0006,
+ "loss": 4.278397083282471,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.3992885649204254,
+ "learning_rate": 0.0006,
+ "loss": 4.330907821655273,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.41442859172821045,
+ "learning_rate": 0.0006,
+ "loss": 4.380483627319336,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.42367640137672424,
+ "learning_rate": 0.0006,
+ "loss": 4.370355129241943,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.4104510247707367,
+ "learning_rate": 0.0006,
+ "loss": 4.243627548217773,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.4377829134464264,
+ "learning_rate": 0.0006,
+ "loss": 4.434067726135254,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.44119682908058167,
+ "learning_rate": 0.0006,
+ "loss": 4.379904747009277,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.4018053114414215,
+ "learning_rate": 0.0006,
+ "loss": 4.286595344543457,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.4040871560573578,
+ "learning_rate": 0.0006,
+ "loss": 4.337483882904053,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.4790824055671692,
+ "learning_rate": 0.0006,
+ "loss": 4.364114761352539,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 6.3435444831848145,
+ "eval_runtime": 43.8507,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.447443425655365,
+ "learning_rate": 0.0006,
+ "loss": 4.273200988769531,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.4924955368041992,
+ "learning_rate": 0.0006,
+ "loss": 4.222320079803467,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.6066558957099915,
+ "learning_rate": 0.0006,
+ "loss": 4.145882606506348,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.7758402824401855,
+ "learning_rate": 0.0006,
+ "loss": 4.182838439941406,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 1.005454659461975,
+ "learning_rate": 0.0006,
+ "loss": 4.156442642211914,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 1.1113026142120361,
+ "learning_rate": 0.0006,
+ "loss": 4.239047050476074,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.7954476475715637,
+ "learning_rate": 0.0006,
+ "loss": 4.231141090393066,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.7038424611091614,
+ "learning_rate": 0.0006,
+ "loss": 4.308542728424072,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.6864593029022217,
+ "learning_rate": 0.0006,
+ "loss": 4.214676380157471,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.6193567514419556,
+ "learning_rate": 0.0006,
+ "loss": 4.243054389953613,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.6326499581336975,
+ "learning_rate": 0.0006,
+ "loss": 4.307093143463135,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.633601725101471,
+ "learning_rate": 0.0006,
+ "loss": 4.28586483001709,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.5711596012115479,
+ "learning_rate": 0.0006,
+ "loss": 4.190366744995117,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.582478404045105,
+ "learning_rate": 0.0006,
+ "loss": 4.243340492248535,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.5870423316955566,
+ "learning_rate": 0.0006,
+ "loss": 4.330052852630615,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.5572404265403748,
+ "learning_rate": 0.0006,
+ "loss": 4.221210956573486,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.48703816533088684,
+ "learning_rate": 0.0006,
+ "loss": 4.246015548706055,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.4946155548095703,
+ "learning_rate": 0.0006,
+ "loss": 4.203368186950684,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.48104000091552734,
+ "learning_rate": 0.0006,
+ "loss": 4.195788383483887,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.4884639382362366,
+ "learning_rate": 0.0006,
+ "loss": 4.246498107910156,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.46171557903289795,
+ "learning_rate": 0.0006,
+ "loss": 4.271712779998779,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.4299808740615845,
+ "learning_rate": 0.0006,
+ "loss": 4.2654619216918945,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.4515123963356018,
+ "learning_rate": 0.0006,
+ "loss": 4.270195960998535,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.4448329210281372,
+ "learning_rate": 0.0006,
+ "loss": 4.295469284057617,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.43523281812667847,
+ "learning_rate": 0.0006,
+ "loss": 4.234511375427246,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.4352431893348694,
+ "learning_rate": 0.0006,
+ "loss": 4.27800178527832,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.43417713046073914,
+ "learning_rate": 0.0006,
+ "loss": 4.291177749633789,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.4469117224216461,
+ "learning_rate": 0.0006,
+ "loss": 4.273797512054443,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.40459394454956055,
+ "learning_rate": 0.0006,
+ "loss": 4.160533428192139,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.37974515557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.165892124176025,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.4303241968154907,
+ "learning_rate": 0.0006,
+ "loss": 4.261228561401367,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.4212931990623474,
+ "learning_rate": 0.0006,
+ "loss": 4.186488628387451,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.39888855814933777,
+ "learning_rate": 0.0006,
+ "loss": 4.256392955780029,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.4147864282131195,
+ "learning_rate": 0.0006,
+ "loss": 4.285519599914551,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.4054912328720093,
+ "learning_rate": 0.0006,
+ "loss": 4.235527038574219,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.3942243158817291,
+ "learning_rate": 0.0006,
+ "loss": 4.235358715057373,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.3859952390193939,
+ "learning_rate": 0.0006,
+ "loss": 4.178792476654053,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.3996407389640808,
+ "learning_rate": 0.0006,
+ "loss": 4.332685470581055,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.3997543156147003,
+ "learning_rate": 0.0006,
+ "loss": 4.172628879547119,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.40761199593544006,
+ "learning_rate": 0.0006,
+ "loss": 4.25240421295166,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.4187498986721039,
+ "learning_rate": 0.0006,
+ "loss": 4.23222541809082,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.39432984590530396,
+ "learning_rate": 0.0006,
+ "loss": 4.1483025550842285,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.4413979947566986,
+ "learning_rate": 0.0006,
+ "loss": 4.262289524078369,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.4385976791381836,
+ "learning_rate": 0.0006,
+ "loss": 4.160347938537598,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.4254113733768463,
+ "learning_rate": 0.0006,
+ "loss": 4.235913276672363,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.40139102935791016,
+ "learning_rate": 0.0006,
+ "loss": 4.338469505310059,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.41311147809028625,
+ "learning_rate": 0.0006,
+ "loss": 4.259404182434082,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.41248565912246704,
+ "learning_rate": 0.0006,
+ "loss": 4.311250686645508,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.43279120326042175,
+ "learning_rate": 0.0006,
+ "loss": 4.352819919586182,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.4341239035129547,
+ "learning_rate": 0.0006,
+ "loss": 4.201631546020508,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.42909830808639526,
+ "learning_rate": 0.0006,
+ "loss": 4.250114440917969,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.4029415249824524,
+ "learning_rate": 0.0006,
+ "loss": 4.280141830444336,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.4094693660736084,
+ "learning_rate": 0.0006,
+ "loss": 4.245151519775391,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.4380780756473541,
+ "learning_rate": 0.0006,
+ "loss": 4.369032859802246,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.46046847105026245,
+ "learning_rate": 0.0006,
+ "loss": 4.357504844665527,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.47439682483673096,
+ "learning_rate": 0.0006,
+ "loss": 4.28305721282959,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.44236937165260315,
+ "learning_rate": 0.0006,
+ "loss": 4.242401599884033,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.4143677353858948,
+ "learning_rate": 0.0006,
+ "loss": 4.362359046936035,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.4057272970676422,
+ "learning_rate": 0.0006,
+ "loss": 4.30042028427124,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.4250582456588745,
+ "learning_rate": 0.0006,
+ "loss": 4.2771711349487305,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.426998108625412,
+ "learning_rate": 0.0006,
+ "loss": 4.280099391937256,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.4197818636894226,
+ "learning_rate": 0.0006,
+ "loss": 4.342541694641113,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.412741094827652,
+ "learning_rate": 0.0006,
+ "loss": 4.25786828994751,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.4071856737136841,
+ "learning_rate": 0.0006,
+ "loss": 4.214151382446289,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.41681522130966187,
+ "learning_rate": 0.0006,
+ "loss": 4.318428039550781,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.4144262373447418,
+ "learning_rate": 0.0006,
+ "loss": 4.37365198135376,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.3930285573005676,
+ "learning_rate": 0.0006,
+ "loss": 4.281595230102539,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.40847325325012207,
+ "learning_rate": 0.0006,
+ "loss": 4.326107978820801,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.4196723997592926,
+ "learning_rate": 0.0006,
+ "loss": 4.267861366271973,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.4259124994277954,
+ "learning_rate": 0.0006,
+ "loss": 4.370932579040527,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.3915783166885376,
+ "learning_rate": 0.0006,
+ "loss": 4.19312047958374,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.45746830105781555,
+ "learning_rate": 0.0006,
+ "loss": 4.177214622497559,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 6.357029914855957,
+ "eval_runtime": 43.7795,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.41968968510627747,
+ "learning_rate": 0.0006,
+ "loss": 4.200979709625244,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.4584674537181854,
+ "learning_rate": 0.0006,
+ "loss": 4.1334381103515625,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.4660768508911133,
+ "learning_rate": 0.0006,
+ "loss": 4.200084686279297,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.4789487421512604,
+ "learning_rate": 0.0006,
+ "loss": 4.172554016113281,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.49461299180984497,
+ "learning_rate": 0.0006,
+ "loss": 4.285592079162598,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.5337462425231934,
+ "learning_rate": 0.0006,
+ "loss": 4.229425430297852,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.5576419234275818,
+ "learning_rate": 0.0006,
+ "loss": 4.233409881591797,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.5294531583786011,
+ "learning_rate": 0.0006,
+ "loss": 4.19575309753418,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.5647598505020142,
+ "learning_rate": 0.0006,
+ "loss": 4.213438510894775,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.6300318241119385,
+ "learning_rate": 0.0006,
+ "loss": 4.2297210693359375,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.7726603746414185,
+ "learning_rate": 0.0006,
+ "loss": 4.2555036544799805,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 1.0104360580444336,
+ "learning_rate": 0.0006,
+ "loss": 4.271825790405273,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 1.1859381198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.233576774597168,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.7926550507545471,
+ "learning_rate": 0.0006,
+ "loss": 4.237586498260498,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.6820129156112671,
+ "learning_rate": 0.0006,
+ "loss": 4.299962043762207,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.7082132697105408,
+ "learning_rate": 0.0006,
+ "loss": 4.243724822998047,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.7050187587738037,
+ "learning_rate": 0.0006,
+ "loss": 4.152876853942871,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.6219658255577087,
+ "learning_rate": 0.0006,
+ "loss": 4.254920959472656,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.5747959017753601,
+ "learning_rate": 0.0006,
+ "loss": 4.228151798248291,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.5477624535560608,
+ "learning_rate": 0.0006,
+ "loss": 4.211681842803955,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.5370446443557739,
+ "learning_rate": 0.0006,
+ "loss": 4.241825580596924,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.4855964779853821,
+ "learning_rate": 0.0006,
+ "loss": 4.195348739624023,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.4688033163547516,
+ "learning_rate": 0.0006,
+ "loss": 4.21632194519043,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.4556921124458313,
+ "learning_rate": 0.0006,
+ "loss": 4.177244186401367,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.4724311828613281,
+ "learning_rate": 0.0006,
+ "loss": 4.188458442687988,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.48350122570991516,
+ "learning_rate": 0.0006,
+ "loss": 4.269173622131348,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.47434476017951965,
+ "learning_rate": 0.0006,
+ "loss": 4.210025787353516,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.44016721844673157,
+ "learning_rate": 0.0006,
+ "loss": 4.200996398925781,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.43595024943351746,
+ "learning_rate": 0.0006,
+ "loss": 4.280470848083496,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.43968138098716736,
+ "learning_rate": 0.0006,
+ "loss": 4.12271785736084,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.4622724950313568,
+ "learning_rate": 0.0006,
+ "loss": 4.2784013748168945,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.42840784788131714,
+ "learning_rate": 0.0006,
+ "loss": 4.205509185791016,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.42756643891334534,
+ "learning_rate": 0.0006,
+ "loss": 4.240240573883057,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.4455983340740204,
+ "learning_rate": 0.0006,
+ "loss": 4.170627593994141,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.47522759437561035,
+ "learning_rate": 0.0006,
+ "loss": 4.216513633728027,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.46860823035240173,
+ "learning_rate": 0.0006,
+ "loss": 4.224852561950684,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.45451217889785767,
+ "learning_rate": 0.0006,
+ "loss": 4.320342063903809,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.4033358097076416,
+ "learning_rate": 0.0006,
+ "loss": 4.174200057983398,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.4156914949417114,
+ "learning_rate": 0.0006,
+ "loss": 4.112459659576416,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.4248296618461609,
+ "learning_rate": 0.0006,
+ "loss": 4.203481674194336,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.44323766231536865,
+ "learning_rate": 0.0006,
+ "loss": 4.23320198059082,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.4104357659816742,
+ "learning_rate": 0.0006,
+ "loss": 4.248687744140625,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.4133552610874176,
+ "learning_rate": 0.0006,
+ "loss": 4.261547088623047,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.46102720499038696,
+ "learning_rate": 0.0006,
+ "loss": 4.248725414276123,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.46091315150260925,
+ "learning_rate": 0.0006,
+ "loss": 4.278741836547852,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.4718199670314789,
+ "learning_rate": 0.0006,
+ "loss": 4.287023544311523,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.4677143394947052,
+ "learning_rate": 0.0006,
+ "loss": 4.2407073974609375,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.4627108871936798,
+ "learning_rate": 0.0006,
+ "loss": 4.288060188293457,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.48298877477645874,
+ "learning_rate": 0.0006,
+ "loss": 4.3333258628845215,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.4674181342124939,
+ "learning_rate": 0.0006,
+ "loss": 4.29932165145874,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.4250151216983795,
+ "learning_rate": 0.0006,
+ "loss": 4.271842002868652,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.4271775484085083,
+ "learning_rate": 0.0006,
+ "loss": 4.230886459350586,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.4614356756210327,
+ "learning_rate": 0.0006,
+ "loss": 4.291038513183594,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.4506745934486389,
+ "learning_rate": 0.0006,
+ "loss": 4.2282562255859375,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.43020278215408325,
+ "learning_rate": 0.0006,
+ "loss": 4.255861282348633,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.4066062271595001,
+ "learning_rate": 0.0006,
+ "loss": 4.360322952270508,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.4263683557510376,
+ "learning_rate": 0.0006,
+ "loss": 4.27037239074707,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.39514079689979553,
+ "learning_rate": 0.0006,
+ "loss": 4.258206367492676,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.41911759972572327,
+ "learning_rate": 0.0006,
+ "loss": 4.279756546020508,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.41042575240135193,
+ "learning_rate": 0.0006,
+ "loss": 4.343293190002441,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.40530115365982056,
+ "learning_rate": 0.0006,
+ "loss": 4.30220890045166,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.41333019733428955,
+ "learning_rate": 0.0006,
+ "loss": 4.293051719665527,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.4278717041015625,
+ "learning_rate": 0.0006,
+ "loss": 4.200895309448242,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.38954365253448486,
+ "learning_rate": 0.0006,
+ "loss": 4.349408149719238,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.39665845036506653,
+ "learning_rate": 0.0006,
+ "loss": 4.278497219085693,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.4175996780395508,
+ "learning_rate": 0.0006,
+ "loss": 4.348122596740723,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.3897883892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.327902317047119,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.39896222949028015,
+ "learning_rate": 0.0006,
+ "loss": 4.2651143074035645,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.39377546310424805,
+ "learning_rate": 0.0006,
+ "loss": 4.351605415344238,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.39766061305999756,
+ "learning_rate": 0.0006,
+ "loss": 4.243964195251465,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.3842772841453552,
+ "learning_rate": 0.0006,
+ "loss": 4.267043590545654,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.49257901310920715,
+ "learning_rate": 0.0006,
+ "loss": 4.390436172485352,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 6.3845720291137695,
+ "eval_runtime": 43.659,
+ "eval_samples_per_second": 55.933,
+ "eval_steps_per_second": 3.504,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.4391154944896698,
+ "learning_rate": 0.0006,
+ "loss": 4.111626148223877,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.5148889422416687,
+ "learning_rate": 0.0006,
+ "loss": 4.127384662628174,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.5173138976097107,
+ "learning_rate": 0.0006,
+ "loss": 4.204227447509766,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.4456957280635834,
+ "learning_rate": 0.0006,
+ "loss": 4.200007438659668,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.44515037536621094,
+ "learning_rate": 0.0006,
+ "loss": 4.125116348266602,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.44603443145751953,
+ "learning_rate": 0.0006,
+ "loss": 4.114563465118408,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.43450453877449036,
+ "learning_rate": 0.0006,
+ "loss": 4.147992134094238,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.432449609041214,
+ "learning_rate": 0.0006,
+ "loss": 4.1462626457214355,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.45551928877830505,
+ "learning_rate": 0.0006,
+ "loss": 4.160435676574707,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.472989946603775,
+ "learning_rate": 0.0006,
+ "loss": 4.168758392333984,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.4804964065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.29326057434082,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.5023837685585022,
+ "learning_rate": 0.0006,
+ "loss": 4.129997730255127,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.554080605506897,
+ "learning_rate": 0.0006,
+ "loss": 4.210216999053955,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.6329277753829956,
+ "learning_rate": 0.0006,
+ "loss": 4.239630699157715,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.6927154064178467,
+ "learning_rate": 0.0006,
+ "loss": 4.205781936645508,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.6770079731941223,
+ "learning_rate": 0.0006,
+ "loss": 4.175786018371582,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.5854576230049133,
+ "learning_rate": 0.0006,
+ "loss": 4.234147071838379,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.529286801815033,
+ "learning_rate": 0.0006,
+ "loss": 4.11967134475708,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.5517066717147827,
+ "learning_rate": 0.0006,
+ "loss": 4.235705375671387,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.5938349366188049,
+ "learning_rate": 0.0006,
+ "loss": 4.2656755447387695,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.6056738495826721,
+ "learning_rate": 0.0006,
+ "loss": 4.246652126312256,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.5960127711296082,
+ "learning_rate": 0.0006,
+ "loss": 4.150732517242432,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.5769783854484558,
+ "learning_rate": 0.0006,
+ "loss": 4.2447919845581055,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.5047983527183533,
+ "learning_rate": 0.0006,
+ "loss": 4.215879440307617,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.5035821199417114,
+ "learning_rate": 0.0006,
+ "loss": 4.265319347381592,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.4539526402950287,
+ "learning_rate": 0.0006,
+ "loss": 4.2058539390563965,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.4950912594795227,
+ "learning_rate": 0.0006,
+ "loss": 4.384343147277832,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.4687364101409912,
+ "learning_rate": 0.0006,
+ "loss": 4.220507621765137,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.46328020095825195,
+ "learning_rate": 0.0006,
+ "loss": 4.193594455718994,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.48333385586738586,
+ "learning_rate": 0.0006,
+ "loss": 4.288180351257324,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.4870767593383789,
+ "learning_rate": 0.0006,
+ "loss": 4.270781517028809,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.48339006304740906,
+ "learning_rate": 0.0006,
+ "loss": 4.165823936462402,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.46628767251968384,
+ "learning_rate": 0.0006,
+ "loss": 4.272879600524902,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.43664637207984924,
+ "learning_rate": 0.0006,
+ "loss": 4.170869827270508,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.4373452365398407,
+ "learning_rate": 0.0006,
+ "loss": 4.2506489753723145,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.47709426283836365,
+ "learning_rate": 0.0006,
+ "loss": 4.297833442687988,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.49829018115997314,
+ "learning_rate": 0.0006,
+ "loss": 4.171062469482422,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.487209290266037,
+ "learning_rate": 0.0006,
+ "loss": 4.236351013183594,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.4661620557308197,
+ "learning_rate": 0.0006,
+ "loss": 4.193465232849121,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.4790615439414978,
+ "learning_rate": 0.0006,
+ "loss": 4.238525390625,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.4469921290874481,
+ "learning_rate": 0.0006,
+ "loss": 4.239880084991455,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.4821740984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.237403392791748,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.48282673954963684,
+ "learning_rate": 0.0006,
+ "loss": 4.1664228439331055,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.41682642698287964,
+ "learning_rate": 0.0006,
+ "loss": 4.216082572937012,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.41478675603866577,
+ "learning_rate": 0.0006,
+ "loss": 4.309684753417969,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.4269796311855316,
+ "learning_rate": 0.0006,
+ "loss": 4.2372541427612305,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.4389215409755707,
+ "learning_rate": 0.0006,
+ "loss": 4.2590179443359375,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.458717942237854,
+ "learning_rate": 0.0006,
+ "loss": 4.313959121704102,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.47272592782974243,
+ "learning_rate": 0.0006,
+ "loss": 4.3018903732299805,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.46145138144493103,
+ "learning_rate": 0.0006,
+ "loss": 4.287712097167969,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.45914238691329956,
+ "learning_rate": 0.0006,
+ "loss": 4.287365913391113,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.45007017254829407,
+ "learning_rate": 0.0006,
+ "loss": 4.207084655761719,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.4381447434425354,
+ "learning_rate": 0.0006,
+ "loss": 4.311388969421387,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.44748032093048096,
+ "learning_rate": 0.0006,
+ "loss": 4.346423625946045,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.45367518067359924,
+ "learning_rate": 0.0006,
+ "loss": 4.300904273986816,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.407585084438324,
+ "learning_rate": 0.0006,
+ "loss": 4.271082401275635,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.4048030972480774,
+ "learning_rate": 0.0006,
+ "loss": 4.239479064941406,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.4034517705440521,
+ "learning_rate": 0.0006,
+ "loss": 4.2660675048828125,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.4124349057674408,
+ "learning_rate": 0.0006,
+ "loss": 4.311362266540527,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.424675315618515,
+ "learning_rate": 0.0006,
+ "loss": 4.300950527191162,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.4398607313632965,
+ "learning_rate": 0.0006,
+ "loss": 4.274449348449707,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.4407024383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.314581871032715,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.44054970145225525,
+ "learning_rate": 0.0006,
+ "loss": 4.274312973022461,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.4406360685825348,
+ "learning_rate": 0.0006,
+ "loss": 4.349391460418701,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.4325377941131592,
+ "learning_rate": 0.0006,
+ "loss": 4.235274314880371,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.4063146114349365,
+ "learning_rate": 0.0006,
+ "loss": 4.224005699157715,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.40214279294013977,
+ "learning_rate": 0.0006,
+ "loss": 4.304279327392578,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.413821816444397,
+ "learning_rate": 0.0006,
+ "loss": 4.2585906982421875,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.4437064230442047,
+ "learning_rate": 0.0006,
+ "loss": 4.387950897216797,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.44573846459388733,
+ "learning_rate": 0.0006,
+ "loss": 4.2619805335998535,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.46081477403640747,
+ "learning_rate": 0.0006,
+ "loss": 4.32242488861084,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.5210936069488525,
+ "learning_rate": 0.0006,
+ "loss": 4.432188034057617,
+ "step": 6048
+ },
+ {
+ "epoch": 84.0,
+ "eval_loss": 6.362637519836426,
+ "eval_runtime": 43.7803,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 6048
+ },
+ {
+ "epoch": 84.01397990388816,
+ "grad_norm": 0.47436055541038513,
+ "learning_rate": 0.0006,
+ "loss": 4.191722869873047,
+ "step": 6049
+ },
+ {
+ "epoch": 84.02795980777633,
+ "grad_norm": 0.49965932965278625,
+ "learning_rate": 0.0006,
+ "loss": 4.258981227874756,
+ "step": 6050
+ },
+ {
+ "epoch": 84.04193971166448,
+ "grad_norm": 0.534188449382782,
+ "learning_rate": 0.0006,
+ "loss": 4.140765190124512,
+ "step": 6051
+ },
+ {
+ "epoch": 84.05591961555264,
+ "grad_norm": 0.5774598717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.202078819274902,
+ "step": 6052
+ },
+ {
+ "epoch": 84.06989951944081,
+ "grad_norm": 0.5815461277961731,
+ "learning_rate": 0.0006,
+ "loss": 4.146556377410889,
+ "step": 6053
+ },
+ {
+ "epoch": 84.08387942332897,
+ "grad_norm": 0.5998873710632324,
+ "learning_rate": 0.0006,
+ "loss": 4.162553787231445,
+ "step": 6054
+ },
+ {
+ "epoch": 84.09785932721712,
+ "grad_norm": 0.6092634797096252,
+ "learning_rate": 0.0006,
+ "loss": 4.187989234924316,
+ "step": 6055
+ },
+ {
+ "epoch": 84.1118392311053,
+ "grad_norm": 0.6370293498039246,
+ "learning_rate": 0.0006,
+ "loss": 4.2049880027771,
+ "step": 6056
+ },
+ {
+ "epoch": 84.12581913499345,
+ "grad_norm": 0.6683672070503235,
+ "learning_rate": 0.0006,
+ "loss": 4.2524003982543945,
+ "step": 6057
+ },
+ {
+ "epoch": 84.1397990388816,
+ "grad_norm": 0.7103533744812012,
+ "learning_rate": 0.0006,
+ "loss": 4.236176490783691,
+ "step": 6058
+ },
+ {
+ "epoch": 84.15377894276976,
+ "grad_norm": 0.6803413033485413,
+ "learning_rate": 0.0006,
+ "loss": 4.137399673461914,
+ "step": 6059
+ },
+ {
+ "epoch": 84.16775884665793,
+ "grad_norm": 0.6188878417015076,
+ "learning_rate": 0.0006,
+ "loss": 4.167574882507324,
+ "step": 6060
+ },
+ {
+ "epoch": 84.18173875054609,
+ "grad_norm": 0.5730593204498291,
+ "learning_rate": 0.0006,
+ "loss": 4.25192403793335,
+ "step": 6061
+ },
+ {
+ "epoch": 84.19571865443424,
+ "grad_norm": 0.5957173705101013,
+ "learning_rate": 0.0006,
+ "loss": 4.219425201416016,
+ "step": 6062
+ },
+ {
+ "epoch": 84.20969855832242,
+ "grad_norm": 0.5630517601966858,
+ "learning_rate": 0.0006,
+ "loss": 4.206212043762207,
+ "step": 6063
+ },
+ {
+ "epoch": 84.22367846221057,
+ "grad_norm": 0.5968215465545654,
+ "learning_rate": 0.0006,
+ "loss": 4.267094612121582,
+ "step": 6064
+ },
+ {
+ "epoch": 84.23765836609873,
+ "grad_norm": 0.5848506093025208,
+ "learning_rate": 0.0006,
+ "loss": 4.219100475311279,
+ "step": 6065
+ },
+ {
+ "epoch": 84.2516382699869,
+ "grad_norm": 0.5439348220825195,
+ "learning_rate": 0.0006,
+ "loss": 4.194691181182861,
+ "step": 6066
+ },
+ {
+ "epoch": 84.26561817387505,
+ "grad_norm": 0.5145100951194763,
+ "learning_rate": 0.0006,
+ "loss": 4.154284477233887,
+ "step": 6067
+ },
+ {
+ "epoch": 84.27959807776321,
+ "grad_norm": 0.5202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 4.247485160827637,
+ "step": 6068
+ },
+ {
+ "epoch": 84.29357798165138,
+ "grad_norm": 0.5043543577194214,
+ "learning_rate": 0.0006,
+ "loss": 4.236316680908203,
+ "step": 6069
+ },
+ {
+ "epoch": 84.30755788553954,
+ "grad_norm": 0.46285054087638855,
+ "learning_rate": 0.0006,
+ "loss": 4.203764915466309,
+ "step": 6070
+ },
+ {
+ "epoch": 84.3215377894277,
+ "grad_norm": 0.4265335202217102,
+ "learning_rate": 0.0006,
+ "loss": 4.233004570007324,
+ "step": 6071
+ },
+ {
+ "epoch": 84.33551769331586,
+ "grad_norm": 0.4409696161746979,
+ "learning_rate": 0.0006,
+ "loss": 4.184818267822266,
+ "step": 6072
+ },
+ {
+ "epoch": 84.34949759720402,
+ "grad_norm": 0.44777947664260864,
+ "learning_rate": 0.0006,
+ "loss": 4.244442939758301,
+ "step": 6073
+ },
+ {
+ "epoch": 84.36347750109218,
+ "grad_norm": 0.4520278573036194,
+ "learning_rate": 0.0006,
+ "loss": 4.195928573608398,
+ "step": 6074
+ },
+ {
+ "epoch": 84.37745740498035,
+ "grad_norm": 0.42898136377334595,
+ "learning_rate": 0.0006,
+ "loss": 4.206586837768555,
+ "step": 6075
+ },
+ {
+ "epoch": 84.3914373088685,
+ "grad_norm": 0.4295867085456848,
+ "learning_rate": 0.0006,
+ "loss": 4.165602684020996,
+ "step": 6076
+ },
+ {
+ "epoch": 84.40541721275666,
+ "grad_norm": 0.43354693055152893,
+ "learning_rate": 0.0006,
+ "loss": 4.229294776916504,
+ "step": 6077
+ },
+ {
+ "epoch": 84.41939711664482,
+ "grad_norm": 0.43806344270706177,
+ "learning_rate": 0.0006,
+ "loss": 4.263678550720215,
+ "step": 6078
+ },
+ {
+ "epoch": 84.43337702053299,
+ "grad_norm": 0.4122515320777893,
+ "learning_rate": 0.0006,
+ "loss": 4.132500171661377,
+ "step": 6079
+ },
+ {
+ "epoch": 84.44735692442114,
+ "grad_norm": 0.4411999583244324,
+ "learning_rate": 0.0006,
+ "loss": 4.20449161529541,
+ "step": 6080
+ },
+ {
+ "epoch": 84.4613368283093,
+ "grad_norm": 0.42754557728767395,
+ "learning_rate": 0.0006,
+ "loss": 4.135894775390625,
+ "step": 6081
+ },
+ {
+ "epoch": 84.47531673219747,
+ "grad_norm": 0.4322991967201233,
+ "learning_rate": 0.0006,
+ "loss": 4.150014877319336,
+ "step": 6082
+ },
+ {
+ "epoch": 84.48929663608563,
+ "grad_norm": 0.45169857144355774,
+ "learning_rate": 0.0006,
+ "loss": 4.192213535308838,
+ "step": 6083
+ },
+ {
+ "epoch": 84.50327653997378,
+ "grad_norm": 0.4425649344921112,
+ "learning_rate": 0.0006,
+ "loss": 4.222028732299805,
+ "step": 6084
+ },
+ {
+ "epoch": 84.51725644386195,
+ "grad_norm": 0.4355604350566864,
+ "learning_rate": 0.0006,
+ "loss": 4.195630073547363,
+ "step": 6085
+ },
+ {
+ "epoch": 84.53123634775011,
+ "grad_norm": 0.44341176748275757,
+ "learning_rate": 0.0006,
+ "loss": 4.327449798583984,
+ "step": 6086
+ },
+ {
+ "epoch": 84.54521625163827,
+ "grad_norm": 0.4357825815677643,
+ "learning_rate": 0.0006,
+ "loss": 4.27389669418335,
+ "step": 6087
+ },
+ {
+ "epoch": 84.55919615552644,
+ "grad_norm": 0.4642813801765442,
+ "learning_rate": 0.0006,
+ "loss": 4.179567337036133,
+ "step": 6088
+ },
+ {
+ "epoch": 84.57317605941459,
+ "grad_norm": 0.5092143416404724,
+ "learning_rate": 0.0006,
+ "loss": 4.15549373626709,
+ "step": 6089
+ },
+ {
+ "epoch": 84.58715596330275,
+ "grad_norm": 0.5048913359642029,
+ "learning_rate": 0.0006,
+ "loss": 4.268869400024414,
+ "step": 6090
+ },
+ {
+ "epoch": 84.60113586719092,
+ "grad_norm": 0.49465590715408325,
+ "learning_rate": 0.0006,
+ "loss": 4.218505859375,
+ "step": 6091
+ },
+ {
+ "epoch": 84.61511577107908,
+ "grad_norm": 0.4515545666217804,
+ "learning_rate": 0.0006,
+ "loss": 4.2692365646362305,
+ "step": 6092
+ },
+ {
+ "epoch": 84.62909567496723,
+ "grad_norm": 0.42119187116622925,
+ "learning_rate": 0.0006,
+ "loss": 4.112425804138184,
+ "step": 6093
+ },
+ {
+ "epoch": 84.6430755788554,
+ "grad_norm": 0.461478590965271,
+ "learning_rate": 0.0006,
+ "loss": 4.311590194702148,
+ "step": 6094
+ },
+ {
+ "epoch": 84.65705548274356,
+ "grad_norm": 0.4738669991493225,
+ "learning_rate": 0.0006,
+ "loss": 4.274797439575195,
+ "step": 6095
+ },
+ {
+ "epoch": 84.67103538663171,
+ "grad_norm": 0.4834710359573364,
+ "learning_rate": 0.0006,
+ "loss": 4.230281829833984,
+ "step": 6096
+ },
+ {
+ "epoch": 84.68501529051987,
+ "grad_norm": 0.5070720911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.2454118728637695,
+ "step": 6097
+ },
+ {
+ "epoch": 84.69899519440804,
+ "grad_norm": 0.5197553038597107,
+ "learning_rate": 0.0006,
+ "loss": 4.230489730834961,
+ "step": 6098
+ },
+ {
+ "epoch": 84.7129750982962,
+ "grad_norm": 0.5083942413330078,
+ "learning_rate": 0.0006,
+ "loss": 4.299528121948242,
+ "step": 6099
+ },
+ {
+ "epoch": 84.72695500218435,
+ "grad_norm": 0.44557300209999084,
+ "learning_rate": 0.0006,
+ "loss": 4.175854206085205,
+ "step": 6100
+ },
+ {
+ "epoch": 84.74093490607252,
+ "grad_norm": 0.41695916652679443,
+ "learning_rate": 0.0006,
+ "loss": 4.159942626953125,
+ "step": 6101
+ },
+ {
+ "epoch": 84.75491480996068,
+ "grad_norm": 0.4457457959651947,
+ "learning_rate": 0.0006,
+ "loss": 4.2789459228515625,
+ "step": 6102
+ },
+ {
+ "epoch": 84.76889471384884,
+ "grad_norm": 0.426814466714859,
+ "learning_rate": 0.0006,
+ "loss": 4.266576766967773,
+ "step": 6103
+ },
+ {
+ "epoch": 84.78287461773701,
+ "grad_norm": 0.43556660413742065,
+ "learning_rate": 0.0006,
+ "loss": 4.205744743347168,
+ "step": 6104
+ },
+ {
+ "epoch": 84.79685452162516,
+ "grad_norm": 0.4368990361690521,
+ "learning_rate": 0.0006,
+ "loss": 4.273787498474121,
+ "step": 6105
+ },
+ {
+ "epoch": 84.81083442551332,
+ "grad_norm": 0.41615745425224304,
+ "learning_rate": 0.0006,
+ "loss": 4.296933174133301,
+ "step": 6106
+ },
+ {
+ "epoch": 84.82481432940149,
+ "grad_norm": 0.4203803241252899,
+ "learning_rate": 0.0006,
+ "loss": 4.254091262817383,
+ "step": 6107
+ },
+ {
+ "epoch": 84.83879423328965,
+ "grad_norm": 0.41405585408210754,
+ "learning_rate": 0.0006,
+ "loss": 4.178038597106934,
+ "step": 6108
+ },
+ {
+ "epoch": 84.8527741371778,
+ "grad_norm": 0.41433432698249817,
+ "learning_rate": 0.0006,
+ "loss": 4.208859920501709,
+ "step": 6109
+ },
+ {
+ "epoch": 84.86675404106597,
+ "grad_norm": 0.395998477935791,
+ "learning_rate": 0.0006,
+ "loss": 4.216287612915039,
+ "step": 6110
+ },
+ {
+ "epoch": 84.88073394495413,
+ "grad_norm": 0.40618404746055603,
+ "learning_rate": 0.0006,
+ "loss": 4.279260635375977,
+ "step": 6111
+ },
+ {
+ "epoch": 84.89471384884229,
+ "grad_norm": 0.4085141718387604,
+ "learning_rate": 0.0006,
+ "loss": 4.35117244720459,
+ "step": 6112
+ },
+ {
+ "epoch": 84.90869375273044,
+ "grad_norm": 0.42112982273101807,
+ "learning_rate": 0.0006,
+ "loss": 4.22624397277832,
+ "step": 6113
+ },
+ {
+ "epoch": 84.92267365661861,
+ "grad_norm": 0.4306959807872772,
+ "learning_rate": 0.0006,
+ "loss": 4.310124397277832,
+ "step": 6114
+ },
+ {
+ "epoch": 84.93665356050677,
+ "grad_norm": 0.4376320540904999,
+ "learning_rate": 0.0006,
+ "loss": 4.299549102783203,
+ "step": 6115
+ },
+ {
+ "epoch": 84.95063346439493,
+ "grad_norm": 0.4436059594154358,
+ "learning_rate": 0.0006,
+ "loss": 4.222458362579346,
+ "step": 6116
+ },
+ {
+ "epoch": 84.9646133682831,
+ "grad_norm": 0.4348333477973938,
+ "learning_rate": 0.0006,
+ "loss": 4.243000030517578,
+ "step": 6117
+ },
+ {
+ "epoch": 84.97859327217125,
+ "grad_norm": 0.40557757019996643,
+ "learning_rate": 0.0006,
+ "loss": 4.312551498413086,
+ "step": 6118
+ },
+ {
+ "epoch": 84.99257317605941,
+ "grad_norm": 0.3925289511680603,
+ "learning_rate": 0.0006,
+ "loss": 4.23169469833374,
+ "step": 6119
+ },
+ {
+ "epoch": 85.0,
+ "grad_norm": 0.4687667787075043,
+ "learning_rate": 0.0006,
+ "loss": 4.250479698181152,
+ "step": 6120
+ },
+ {
+ "epoch": 85.0,
+ "eval_loss": 6.4236650466918945,
+ "eval_runtime": 44.0012,
+ "eval_samples_per_second": 55.499,
+ "eval_steps_per_second": 3.477,
+ "step": 6120
+ },
+ {
+ "epoch": 85.01397990388816,
+ "grad_norm": 0.4212416410446167,
+ "learning_rate": 0.0006,
+ "loss": 4.1090850830078125,
+ "step": 6121
+ },
+ {
+ "epoch": 85.02795980777633,
+ "grad_norm": 0.494233638048172,
+ "learning_rate": 0.0006,
+ "loss": 4.180233478546143,
+ "step": 6122
+ },
+ {
+ "epoch": 85.04193971166448,
+ "grad_norm": 0.5173123478889465,
+ "learning_rate": 0.0006,
+ "loss": 4.185733795166016,
+ "step": 6123
+ },
+ {
+ "epoch": 85.05591961555264,
+ "grad_norm": 0.5681236982345581,
+ "learning_rate": 0.0006,
+ "loss": 4.138709545135498,
+ "step": 6124
+ },
+ {
+ "epoch": 85.06989951944081,
+ "grad_norm": 0.6410647034645081,
+ "learning_rate": 0.0006,
+ "loss": 4.139544486999512,
+ "step": 6125
+ },
+ {
+ "epoch": 85.08387942332897,
+ "grad_norm": 0.7401921153068542,
+ "learning_rate": 0.0006,
+ "loss": 4.198850154876709,
+ "step": 6126
+ },
+ {
+ "epoch": 85.09785932721712,
+ "grad_norm": 0.8305296301841736,
+ "learning_rate": 0.0006,
+ "loss": 4.1585693359375,
+ "step": 6127
+ },
+ {
+ "epoch": 85.1118392311053,
+ "grad_norm": 0.9176523685455322,
+ "learning_rate": 0.0006,
+ "loss": 4.242802619934082,
+ "step": 6128
+ },
+ {
+ "epoch": 85.12581913499345,
+ "grad_norm": 0.9265726804733276,
+ "learning_rate": 0.0006,
+ "loss": 4.219632625579834,
+ "step": 6129
+ },
+ {
+ "epoch": 85.1397990388816,
+ "grad_norm": 0.8400911092758179,
+ "learning_rate": 0.0006,
+ "loss": 4.268982887268066,
+ "step": 6130
+ },
+ {
+ "epoch": 85.15377894276976,
+ "grad_norm": 0.744905948638916,
+ "learning_rate": 0.0006,
+ "loss": 4.30452823638916,
+ "step": 6131
+ },
+ {
+ "epoch": 85.16775884665793,
+ "grad_norm": 0.6953766942024231,
+ "learning_rate": 0.0006,
+ "loss": 4.189999580383301,
+ "step": 6132
+ },
+ {
+ "epoch": 85.18173875054609,
+ "grad_norm": 0.577387809753418,
+ "learning_rate": 0.0006,
+ "loss": 4.227351188659668,
+ "step": 6133
+ },
+ {
+ "epoch": 85.19571865443424,
+ "grad_norm": 0.5925359129905701,
+ "learning_rate": 0.0006,
+ "loss": 4.1808977127075195,
+ "step": 6134
+ },
+ {
+ "epoch": 85.20969855832242,
+ "grad_norm": 0.6056010723114014,
+ "learning_rate": 0.0006,
+ "loss": 4.145054340362549,
+ "step": 6135
+ },
+ {
+ "epoch": 85.22367846221057,
+ "grad_norm": 0.604918360710144,
+ "learning_rate": 0.0006,
+ "loss": 4.266521453857422,
+ "step": 6136
+ },
+ {
+ "epoch": 85.23765836609873,
+ "grad_norm": 0.6269238591194153,
+ "learning_rate": 0.0006,
+ "loss": 4.196112632751465,
+ "step": 6137
+ },
+ {
+ "epoch": 85.2516382699869,
+ "grad_norm": 0.5958989858627319,
+ "learning_rate": 0.0006,
+ "loss": 4.176703453063965,
+ "step": 6138
+ },
+ {
+ "epoch": 85.26561817387505,
+ "grad_norm": 0.5563721656799316,
+ "learning_rate": 0.0006,
+ "loss": 4.214921951293945,
+ "step": 6139
+ },
+ {
+ "epoch": 85.27959807776321,
+ "grad_norm": 0.5104738473892212,
+ "learning_rate": 0.0006,
+ "loss": 4.1572747230529785,
+ "step": 6140
+ },
+ {
+ "epoch": 85.29357798165138,
+ "grad_norm": 0.5091421008110046,
+ "learning_rate": 0.0006,
+ "loss": 4.207575798034668,
+ "step": 6141
+ },
+ {
+ "epoch": 85.30755788553954,
+ "grad_norm": 0.4957296848297119,
+ "learning_rate": 0.0006,
+ "loss": 4.191003322601318,
+ "step": 6142
+ },
+ {
+ "epoch": 85.3215377894277,
+ "grad_norm": 0.5249730348587036,
+ "learning_rate": 0.0006,
+ "loss": 4.190788269042969,
+ "step": 6143
+ },
+ {
+ "epoch": 85.33551769331586,
+ "grad_norm": 0.5330517888069153,
+ "learning_rate": 0.0006,
+ "loss": 4.2532501220703125,
+ "step": 6144
+ },
+ {
+ "epoch": 85.34949759720402,
+ "grad_norm": 0.5122325420379639,
+ "learning_rate": 0.0006,
+ "loss": 4.24505090713501,
+ "step": 6145
+ },
+ {
+ "epoch": 85.36347750109218,
+ "grad_norm": 0.48302626609802246,
+ "learning_rate": 0.0006,
+ "loss": 4.276553153991699,
+ "step": 6146
+ },
+ {
+ "epoch": 85.37745740498035,
+ "grad_norm": 0.45876380801200867,
+ "learning_rate": 0.0006,
+ "loss": 4.232707977294922,
+ "step": 6147
+ },
+ {
+ "epoch": 85.3914373088685,
+ "grad_norm": 0.43201959133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.227077484130859,
+ "step": 6148
+ },
+ {
+ "epoch": 85.40541721275666,
+ "grad_norm": 0.43973541259765625,
+ "learning_rate": 0.0006,
+ "loss": 4.1685590744018555,
+ "step": 6149
+ },
+ {
+ "epoch": 85.41939711664482,
+ "grad_norm": 0.4517432153224945,
+ "learning_rate": 0.0006,
+ "loss": 4.207458972930908,
+ "step": 6150
+ },
+ {
+ "epoch": 85.43337702053299,
+ "grad_norm": 0.4610045850276947,
+ "learning_rate": 0.0006,
+ "loss": 4.132458686828613,
+ "step": 6151
+ },
+ {
+ "epoch": 85.44735692442114,
+ "grad_norm": 0.4478553533554077,
+ "learning_rate": 0.0006,
+ "loss": 4.164486885070801,
+ "step": 6152
+ },
+ {
+ "epoch": 85.4613368283093,
+ "grad_norm": 0.4325296878814697,
+ "learning_rate": 0.0006,
+ "loss": 4.238661766052246,
+ "step": 6153
+ },
+ {
+ "epoch": 85.47531673219747,
+ "grad_norm": 0.4336618185043335,
+ "learning_rate": 0.0006,
+ "loss": 4.2476348876953125,
+ "step": 6154
+ },
+ {
+ "epoch": 85.48929663608563,
+ "grad_norm": 0.44246068596839905,
+ "learning_rate": 0.0006,
+ "loss": 4.112232685089111,
+ "step": 6155
+ },
+ {
+ "epoch": 85.50327653997378,
+ "grad_norm": 0.44979506731033325,
+ "learning_rate": 0.0006,
+ "loss": 4.227209091186523,
+ "step": 6156
+ },
+ {
+ "epoch": 85.51725644386195,
+ "grad_norm": 0.41781380772590637,
+ "learning_rate": 0.0006,
+ "loss": 4.170072555541992,
+ "step": 6157
+ },
+ {
+ "epoch": 85.53123634775011,
+ "grad_norm": 0.4316149353981018,
+ "learning_rate": 0.0006,
+ "loss": 4.145702362060547,
+ "step": 6158
+ },
+ {
+ "epoch": 85.54521625163827,
+ "grad_norm": 0.4433120787143707,
+ "learning_rate": 0.0006,
+ "loss": 4.26444673538208,
+ "step": 6159
+ },
+ {
+ "epoch": 85.55919615552644,
+ "grad_norm": 0.42795389890670776,
+ "learning_rate": 0.0006,
+ "loss": 4.2480621337890625,
+ "step": 6160
+ },
+ {
+ "epoch": 85.57317605941459,
+ "grad_norm": 0.44557079672813416,
+ "learning_rate": 0.0006,
+ "loss": 4.24589729309082,
+ "step": 6161
+ },
+ {
+ "epoch": 85.58715596330275,
+ "grad_norm": 0.4265936017036438,
+ "learning_rate": 0.0006,
+ "loss": 4.178960800170898,
+ "step": 6162
+ },
+ {
+ "epoch": 85.60113586719092,
+ "grad_norm": 0.4352312982082367,
+ "learning_rate": 0.0006,
+ "loss": 4.226616382598877,
+ "step": 6163
+ },
+ {
+ "epoch": 85.61511577107908,
+ "grad_norm": 0.4641511142253876,
+ "learning_rate": 0.0006,
+ "loss": 4.176436424255371,
+ "step": 6164
+ },
+ {
+ "epoch": 85.62909567496723,
+ "grad_norm": 0.41917547583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.22402286529541,
+ "step": 6165
+ },
+ {
+ "epoch": 85.6430755788554,
+ "grad_norm": 0.4128566086292267,
+ "learning_rate": 0.0006,
+ "loss": 4.208065032958984,
+ "step": 6166
+ },
+ {
+ "epoch": 85.65705548274356,
+ "grad_norm": 0.41222256422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.3075361251831055,
+ "step": 6167
+ },
+ {
+ "epoch": 85.67103538663171,
+ "grad_norm": 0.41198086738586426,
+ "learning_rate": 0.0006,
+ "loss": 4.290134906768799,
+ "step": 6168
+ },
+ {
+ "epoch": 85.68501529051987,
+ "grad_norm": 0.4154035747051239,
+ "learning_rate": 0.0006,
+ "loss": 4.278663635253906,
+ "step": 6169
+ },
+ {
+ "epoch": 85.69899519440804,
+ "grad_norm": 0.4130622446537018,
+ "learning_rate": 0.0006,
+ "loss": 4.243109703063965,
+ "step": 6170
+ },
+ {
+ "epoch": 85.7129750982962,
+ "grad_norm": 0.4077015221118927,
+ "learning_rate": 0.0006,
+ "loss": 4.228545665740967,
+ "step": 6171
+ },
+ {
+ "epoch": 85.72695500218435,
+ "grad_norm": 0.3907303810119629,
+ "learning_rate": 0.0006,
+ "loss": 4.3075995445251465,
+ "step": 6172
+ },
+ {
+ "epoch": 85.74093490607252,
+ "grad_norm": 0.4037119746208191,
+ "learning_rate": 0.0006,
+ "loss": 4.246337413787842,
+ "step": 6173
+ },
+ {
+ "epoch": 85.75491480996068,
+ "grad_norm": 0.41759130358695984,
+ "learning_rate": 0.0006,
+ "loss": 4.308913707733154,
+ "step": 6174
+ },
+ {
+ "epoch": 85.76889471384884,
+ "grad_norm": 0.41771626472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.311037063598633,
+ "step": 6175
+ },
+ {
+ "epoch": 85.78287461773701,
+ "grad_norm": 0.4321439862251282,
+ "learning_rate": 0.0006,
+ "loss": 4.350762367248535,
+ "step": 6176
+ },
+ {
+ "epoch": 85.79685452162516,
+ "grad_norm": 0.3975702226161957,
+ "learning_rate": 0.0006,
+ "loss": 4.182483673095703,
+ "step": 6177
+ },
+ {
+ "epoch": 85.81083442551332,
+ "grad_norm": 0.4001428782939911,
+ "learning_rate": 0.0006,
+ "loss": 4.2482194900512695,
+ "step": 6178
+ },
+ {
+ "epoch": 85.82481432940149,
+ "grad_norm": 0.4038706421852112,
+ "learning_rate": 0.0006,
+ "loss": 4.252450466156006,
+ "step": 6179
+ },
+ {
+ "epoch": 85.83879423328965,
+ "grad_norm": 0.413814902305603,
+ "learning_rate": 0.0006,
+ "loss": 4.278610706329346,
+ "step": 6180
+ },
+ {
+ "epoch": 85.8527741371778,
+ "grad_norm": 0.4370289444923401,
+ "learning_rate": 0.0006,
+ "loss": 4.209270000457764,
+ "step": 6181
+ },
+ {
+ "epoch": 85.86675404106597,
+ "grad_norm": 0.4093279242515564,
+ "learning_rate": 0.0006,
+ "loss": 4.339448928833008,
+ "step": 6182
+ },
+ {
+ "epoch": 85.88073394495413,
+ "grad_norm": 0.4336872398853302,
+ "learning_rate": 0.0006,
+ "loss": 4.248476028442383,
+ "step": 6183
+ },
+ {
+ "epoch": 85.89471384884229,
+ "grad_norm": 0.42384231090545654,
+ "learning_rate": 0.0006,
+ "loss": 4.1973652839660645,
+ "step": 6184
+ },
+ {
+ "epoch": 85.90869375273044,
+ "grad_norm": 0.4119747579097748,
+ "learning_rate": 0.0006,
+ "loss": 4.2321271896362305,
+ "step": 6185
+ },
+ {
+ "epoch": 85.92267365661861,
+ "grad_norm": 0.42178797721862793,
+ "learning_rate": 0.0006,
+ "loss": 4.238823890686035,
+ "step": 6186
+ },
+ {
+ "epoch": 85.93665356050677,
+ "grad_norm": 0.4252033233642578,
+ "learning_rate": 0.0006,
+ "loss": 4.216999053955078,
+ "step": 6187
+ },
+ {
+ "epoch": 85.95063346439493,
+ "grad_norm": 0.4080226719379425,
+ "learning_rate": 0.0006,
+ "loss": 4.165124416351318,
+ "step": 6188
+ },
+ {
+ "epoch": 85.9646133682831,
+ "grad_norm": 0.41687312722206116,
+ "learning_rate": 0.0006,
+ "loss": 4.267208576202393,
+ "step": 6189
+ },
+ {
+ "epoch": 85.97859327217125,
+ "grad_norm": 0.4602084159851074,
+ "learning_rate": 0.0006,
+ "loss": 4.275501251220703,
+ "step": 6190
+ },
+ {
+ "epoch": 85.99257317605941,
+ "grad_norm": 0.4058094620704651,
+ "learning_rate": 0.0006,
+ "loss": 4.245742321014404,
+ "step": 6191
+ },
+ {
+ "epoch": 86.0,
+ "grad_norm": 0.47458478808403015,
+ "learning_rate": 0.0006,
+ "loss": 4.287442207336426,
+ "step": 6192
+ },
+ {
+ "epoch": 86.0,
+ "eval_loss": 6.403047561645508,
+ "eval_runtime": 43.8214,
+ "eval_samples_per_second": 55.726,
+ "eval_steps_per_second": 3.491,
+ "step": 6192
+ },
+ {
+ "epoch": 86.01397990388816,
+ "grad_norm": 0.4514295756816864,
+ "learning_rate": 0.0006,
+ "loss": 4.168883323669434,
+ "step": 6193
+ },
+ {
+ "epoch": 86.02795980777633,
+ "grad_norm": 0.4945322573184967,
+ "learning_rate": 0.0006,
+ "loss": 4.184109687805176,
+ "step": 6194
+ },
+ {
+ "epoch": 86.04193971166448,
+ "grad_norm": 0.4829343557357788,
+ "learning_rate": 0.0006,
+ "loss": 4.196836471557617,
+ "step": 6195
+ },
+ {
+ "epoch": 86.05591961555264,
+ "grad_norm": 0.46961912512779236,
+ "learning_rate": 0.0006,
+ "loss": 4.142866134643555,
+ "step": 6196
+ },
+ {
+ "epoch": 86.06989951944081,
+ "grad_norm": 0.4949210584163666,
+ "learning_rate": 0.0006,
+ "loss": 4.211699485778809,
+ "step": 6197
+ },
+ {
+ "epoch": 86.08387942332897,
+ "grad_norm": 0.46593594551086426,
+ "learning_rate": 0.0006,
+ "loss": 4.1134490966796875,
+ "step": 6198
+ },
+ {
+ "epoch": 86.09785932721712,
+ "grad_norm": 0.4728434681892395,
+ "learning_rate": 0.0006,
+ "loss": 4.068804740905762,
+ "step": 6199
+ },
+ {
+ "epoch": 86.1118392311053,
+ "grad_norm": 0.47897961735725403,
+ "learning_rate": 0.0006,
+ "loss": 4.116288185119629,
+ "step": 6200
+ },
+ {
+ "epoch": 86.12581913499345,
+ "grad_norm": 0.4988885819911957,
+ "learning_rate": 0.0006,
+ "loss": 4.195610523223877,
+ "step": 6201
+ },
+ {
+ "epoch": 86.1397990388816,
+ "grad_norm": 0.5539481043815613,
+ "learning_rate": 0.0006,
+ "loss": 4.1776204109191895,
+ "step": 6202
+ },
+ {
+ "epoch": 86.15377894276976,
+ "grad_norm": 0.668317973613739,
+ "learning_rate": 0.0006,
+ "loss": 4.1369171142578125,
+ "step": 6203
+ },
+ {
+ "epoch": 86.16775884665793,
+ "grad_norm": 0.7647491693496704,
+ "learning_rate": 0.0006,
+ "loss": 4.20838737487793,
+ "step": 6204
+ },
+ {
+ "epoch": 86.18173875054609,
+ "grad_norm": 0.9673570394515991,
+ "learning_rate": 0.0006,
+ "loss": 4.215792655944824,
+ "step": 6205
+ },
+ {
+ "epoch": 86.19571865443424,
+ "grad_norm": 1.124152660369873,
+ "learning_rate": 0.0006,
+ "loss": 4.2046709060668945,
+ "step": 6206
+ },
+ {
+ "epoch": 86.20969855832242,
+ "grad_norm": 0.795403778553009,
+ "learning_rate": 0.0006,
+ "loss": 4.212424278259277,
+ "step": 6207
+ },
+ {
+ "epoch": 86.22367846221057,
+ "grad_norm": 0.639197826385498,
+ "learning_rate": 0.0006,
+ "loss": 4.090766429901123,
+ "step": 6208
+ },
+ {
+ "epoch": 86.23765836609873,
+ "grad_norm": 0.662894606590271,
+ "learning_rate": 0.0006,
+ "loss": 4.1571221351623535,
+ "step": 6209
+ },
+ {
+ "epoch": 86.2516382699869,
+ "grad_norm": 0.6552493572235107,
+ "learning_rate": 0.0006,
+ "loss": 4.231173515319824,
+ "step": 6210
+ },
+ {
+ "epoch": 86.26561817387505,
+ "grad_norm": 0.5748463869094849,
+ "learning_rate": 0.0006,
+ "loss": 4.172743797302246,
+ "step": 6211
+ },
+ {
+ "epoch": 86.27959807776321,
+ "grad_norm": 0.5272432565689087,
+ "learning_rate": 0.0006,
+ "loss": 4.193683624267578,
+ "step": 6212
+ },
+ {
+ "epoch": 86.29357798165138,
+ "grad_norm": 0.49313828349113464,
+ "learning_rate": 0.0006,
+ "loss": 4.221615791320801,
+ "step": 6213
+ },
+ {
+ "epoch": 86.30755788553954,
+ "grad_norm": 0.494914710521698,
+ "learning_rate": 0.0006,
+ "loss": 4.255671501159668,
+ "step": 6214
+ },
+ {
+ "epoch": 86.3215377894277,
+ "grad_norm": 0.47431471943855286,
+ "learning_rate": 0.0006,
+ "loss": 4.181219100952148,
+ "step": 6215
+ },
+ {
+ "epoch": 86.33551769331586,
+ "grad_norm": 0.4649604260921478,
+ "learning_rate": 0.0006,
+ "loss": 4.191998481750488,
+ "step": 6216
+ },
+ {
+ "epoch": 86.34949759720402,
+ "grad_norm": 0.4728623628616333,
+ "learning_rate": 0.0006,
+ "loss": 4.2238264083862305,
+ "step": 6217
+ },
+ {
+ "epoch": 86.36347750109218,
+ "grad_norm": 0.4535118043422699,
+ "learning_rate": 0.0006,
+ "loss": 4.17877197265625,
+ "step": 6218
+ },
+ {
+ "epoch": 86.37745740498035,
+ "grad_norm": 0.46630820631980896,
+ "learning_rate": 0.0006,
+ "loss": 4.268709182739258,
+ "step": 6219
+ },
+ {
+ "epoch": 86.3914373088685,
+ "grad_norm": 0.44170552492141724,
+ "learning_rate": 0.0006,
+ "loss": 4.156832695007324,
+ "step": 6220
+ },
+ {
+ "epoch": 86.40541721275666,
+ "grad_norm": 0.4569980800151825,
+ "learning_rate": 0.0006,
+ "loss": 4.231564521789551,
+ "step": 6221
+ },
+ {
+ "epoch": 86.41939711664482,
+ "grad_norm": 0.46918782591819763,
+ "learning_rate": 0.0006,
+ "loss": 4.249637603759766,
+ "step": 6222
+ },
+ {
+ "epoch": 86.43337702053299,
+ "grad_norm": 0.4581753611564636,
+ "learning_rate": 0.0006,
+ "loss": 4.179978370666504,
+ "step": 6223
+ },
+ {
+ "epoch": 86.44735692442114,
+ "grad_norm": 0.4316704571247101,
+ "learning_rate": 0.0006,
+ "loss": 4.146752834320068,
+ "step": 6224
+ },
+ {
+ "epoch": 86.4613368283093,
+ "grad_norm": 0.4482209384441376,
+ "learning_rate": 0.0006,
+ "loss": 4.244694232940674,
+ "step": 6225
+ },
+ {
+ "epoch": 86.47531673219747,
+ "grad_norm": 0.4843580424785614,
+ "learning_rate": 0.0006,
+ "loss": 4.17778205871582,
+ "step": 6226
+ },
+ {
+ "epoch": 86.48929663608563,
+ "grad_norm": 0.4709290862083435,
+ "learning_rate": 0.0006,
+ "loss": 4.285809516906738,
+ "step": 6227
+ },
+ {
+ "epoch": 86.50327653997378,
+ "grad_norm": 0.46813929080963135,
+ "learning_rate": 0.0006,
+ "loss": 4.231365203857422,
+ "step": 6228
+ },
+ {
+ "epoch": 86.51725644386195,
+ "grad_norm": 0.4462358355522156,
+ "learning_rate": 0.0006,
+ "loss": 4.105094909667969,
+ "step": 6229
+ },
+ {
+ "epoch": 86.53123634775011,
+ "grad_norm": 0.4453467130661011,
+ "learning_rate": 0.0006,
+ "loss": 4.299243927001953,
+ "step": 6230
+ },
+ {
+ "epoch": 86.54521625163827,
+ "grad_norm": 0.40684959292411804,
+ "learning_rate": 0.0006,
+ "loss": 4.130344867706299,
+ "step": 6231
+ },
+ {
+ "epoch": 86.55919615552644,
+ "grad_norm": 0.4367261230945587,
+ "learning_rate": 0.0006,
+ "loss": 4.32288932800293,
+ "step": 6232
+ },
+ {
+ "epoch": 86.57317605941459,
+ "grad_norm": 0.4543338418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.20067024230957,
+ "step": 6233
+ },
+ {
+ "epoch": 86.58715596330275,
+ "grad_norm": 0.4356217384338379,
+ "learning_rate": 0.0006,
+ "loss": 4.203358173370361,
+ "step": 6234
+ },
+ {
+ "epoch": 86.60113586719092,
+ "grad_norm": 0.430902361869812,
+ "learning_rate": 0.0006,
+ "loss": 4.259663105010986,
+ "step": 6235
+ },
+ {
+ "epoch": 86.61511577107908,
+ "grad_norm": 0.4439174234867096,
+ "learning_rate": 0.0006,
+ "loss": 4.223544120788574,
+ "step": 6236
+ },
+ {
+ "epoch": 86.62909567496723,
+ "grad_norm": 0.4226101338863373,
+ "learning_rate": 0.0006,
+ "loss": 4.189355373382568,
+ "step": 6237
+ },
+ {
+ "epoch": 86.6430755788554,
+ "grad_norm": 0.40921148657798767,
+ "learning_rate": 0.0006,
+ "loss": 4.117485523223877,
+ "step": 6238
+ },
+ {
+ "epoch": 86.65705548274356,
+ "grad_norm": 0.4049853980541229,
+ "learning_rate": 0.0006,
+ "loss": 4.194711685180664,
+ "step": 6239
+ },
+ {
+ "epoch": 86.67103538663171,
+ "grad_norm": 0.43752163648605347,
+ "learning_rate": 0.0006,
+ "loss": 4.296228885650635,
+ "step": 6240
+ },
+ {
+ "epoch": 86.68501529051987,
+ "grad_norm": 0.4285348653793335,
+ "learning_rate": 0.0006,
+ "loss": 4.224569797515869,
+ "step": 6241
+ },
+ {
+ "epoch": 86.69899519440804,
+ "grad_norm": 0.42145198583602905,
+ "learning_rate": 0.0006,
+ "loss": 4.17451286315918,
+ "step": 6242
+ },
+ {
+ "epoch": 86.7129750982962,
+ "grad_norm": 0.43004974722862244,
+ "learning_rate": 0.0006,
+ "loss": 4.327383995056152,
+ "step": 6243
+ },
+ {
+ "epoch": 86.72695500218435,
+ "grad_norm": 0.4132508635520935,
+ "learning_rate": 0.0006,
+ "loss": 4.254952430725098,
+ "step": 6244
+ },
+ {
+ "epoch": 86.74093490607252,
+ "grad_norm": 0.4263715445995331,
+ "learning_rate": 0.0006,
+ "loss": 4.291565895080566,
+ "step": 6245
+ },
+ {
+ "epoch": 86.75491480996068,
+ "grad_norm": 0.4107324779033661,
+ "learning_rate": 0.0006,
+ "loss": 4.175364971160889,
+ "step": 6246
+ },
+ {
+ "epoch": 86.76889471384884,
+ "grad_norm": 0.4208371937274933,
+ "learning_rate": 0.0006,
+ "loss": 4.30789852142334,
+ "step": 6247
+ },
+ {
+ "epoch": 86.78287461773701,
+ "grad_norm": 0.40826472640037537,
+ "learning_rate": 0.0006,
+ "loss": 4.258838176727295,
+ "step": 6248
+ },
+ {
+ "epoch": 86.79685452162516,
+ "grad_norm": 0.4199276268482208,
+ "learning_rate": 0.0006,
+ "loss": 4.267247200012207,
+ "step": 6249
+ },
+ {
+ "epoch": 86.81083442551332,
+ "grad_norm": 0.41855406761169434,
+ "learning_rate": 0.0006,
+ "loss": 4.23055362701416,
+ "step": 6250
+ },
+ {
+ "epoch": 86.82481432940149,
+ "grad_norm": 0.4074585735797882,
+ "learning_rate": 0.0006,
+ "loss": 4.30836296081543,
+ "step": 6251
+ },
+ {
+ "epoch": 86.83879423328965,
+ "grad_norm": 0.41543063521385193,
+ "learning_rate": 0.0006,
+ "loss": 4.240653991699219,
+ "step": 6252
+ },
+ {
+ "epoch": 86.8527741371778,
+ "grad_norm": 0.43938663601875305,
+ "learning_rate": 0.0006,
+ "loss": 4.202419757843018,
+ "step": 6253
+ },
+ {
+ "epoch": 86.86675404106597,
+ "grad_norm": 0.40917736291885376,
+ "learning_rate": 0.0006,
+ "loss": 4.230096817016602,
+ "step": 6254
+ },
+ {
+ "epoch": 86.88073394495413,
+ "grad_norm": 0.39287346601486206,
+ "learning_rate": 0.0006,
+ "loss": 4.266208648681641,
+ "step": 6255
+ },
+ {
+ "epoch": 86.89471384884229,
+ "grad_norm": 0.42201662063598633,
+ "learning_rate": 0.0006,
+ "loss": 4.266336441040039,
+ "step": 6256
+ },
+ {
+ "epoch": 86.90869375273044,
+ "grad_norm": 0.41840073466300964,
+ "learning_rate": 0.0006,
+ "loss": 4.2372283935546875,
+ "step": 6257
+ },
+ {
+ "epoch": 86.92267365661861,
+ "grad_norm": 0.41545310616493225,
+ "learning_rate": 0.0006,
+ "loss": 4.228784084320068,
+ "step": 6258
+ },
+ {
+ "epoch": 86.93665356050677,
+ "grad_norm": 0.4000638723373413,
+ "learning_rate": 0.0006,
+ "loss": 4.217623233795166,
+ "step": 6259
+ },
+ {
+ "epoch": 86.95063346439493,
+ "grad_norm": 0.40059611201286316,
+ "learning_rate": 0.0006,
+ "loss": 4.219632148742676,
+ "step": 6260
+ },
+ {
+ "epoch": 86.9646133682831,
+ "grad_norm": 0.40537703037261963,
+ "learning_rate": 0.0006,
+ "loss": 4.325621604919434,
+ "step": 6261
+ },
+ {
+ "epoch": 86.97859327217125,
+ "grad_norm": 0.4128882884979248,
+ "learning_rate": 0.0006,
+ "loss": 4.3072710037231445,
+ "step": 6262
+ },
+ {
+ "epoch": 86.99257317605941,
+ "grad_norm": 0.4379993677139282,
+ "learning_rate": 0.0006,
+ "loss": 4.363463401794434,
+ "step": 6263
+ },
+ {
+ "epoch": 87.0,
+ "grad_norm": 0.547332763671875,
+ "learning_rate": 0.0006,
+ "loss": 4.2679829597473145,
+ "step": 6264
+ },
+ {
+ "epoch": 87.0,
+ "eval_loss": 6.392307758331299,
+ "eval_runtime": 43.7891,
+ "eval_samples_per_second": 55.767,
+ "eval_steps_per_second": 3.494,
+ "step": 6264
+ },
+ {
+ "epoch": 87.01397990388816,
+ "grad_norm": 0.45948871970176697,
+ "learning_rate": 0.0006,
+ "loss": 4.031222343444824,
+ "step": 6265
+ },
+ {
+ "epoch": 87.02795980777633,
+ "grad_norm": 0.4914006292819977,
+ "learning_rate": 0.0006,
+ "loss": 4.156842231750488,
+ "step": 6266
+ },
+ {
+ "epoch": 87.04193971166448,
+ "grad_norm": 0.5071610808372498,
+ "learning_rate": 0.0006,
+ "loss": 4.1074676513671875,
+ "step": 6267
+ },
+ {
+ "epoch": 87.05591961555264,
+ "grad_norm": 0.4955688416957855,
+ "learning_rate": 0.0006,
+ "loss": 4.216960430145264,
+ "step": 6268
+ },
+ {
+ "epoch": 87.06989951944081,
+ "grad_norm": 0.4986410140991211,
+ "learning_rate": 0.0006,
+ "loss": 4.154225826263428,
+ "step": 6269
+ },
+ {
+ "epoch": 87.08387942332897,
+ "grad_norm": 0.5057981014251709,
+ "learning_rate": 0.0006,
+ "loss": 4.1951904296875,
+ "step": 6270
+ },
+ {
+ "epoch": 87.09785932721712,
+ "grad_norm": 0.4882241189479828,
+ "learning_rate": 0.0006,
+ "loss": 4.126533508300781,
+ "step": 6271
+ },
+ {
+ "epoch": 87.1118392311053,
+ "grad_norm": 0.4709639549255371,
+ "learning_rate": 0.0006,
+ "loss": 4.058790683746338,
+ "step": 6272
+ },
+ {
+ "epoch": 87.12581913499345,
+ "grad_norm": 0.5342675447463989,
+ "learning_rate": 0.0006,
+ "loss": 4.214875221252441,
+ "step": 6273
+ },
+ {
+ "epoch": 87.1397990388816,
+ "grad_norm": 0.6006143689155579,
+ "learning_rate": 0.0006,
+ "loss": 4.160619735717773,
+ "step": 6274
+ },
+ {
+ "epoch": 87.15377894276976,
+ "grad_norm": 0.6728277802467346,
+ "learning_rate": 0.0006,
+ "loss": 4.1538848876953125,
+ "step": 6275
+ },
+ {
+ "epoch": 87.16775884665793,
+ "grad_norm": 0.7239725589752197,
+ "learning_rate": 0.0006,
+ "loss": 4.1733808517456055,
+ "step": 6276
+ },
+ {
+ "epoch": 87.18173875054609,
+ "grad_norm": 0.7556143403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.219337463378906,
+ "step": 6277
+ },
+ {
+ "epoch": 87.19571865443424,
+ "grad_norm": 0.7680774927139282,
+ "learning_rate": 0.0006,
+ "loss": 4.188779354095459,
+ "step": 6278
+ },
+ {
+ "epoch": 87.20969855832242,
+ "grad_norm": 0.6739238500595093,
+ "learning_rate": 0.0006,
+ "loss": 4.140239715576172,
+ "step": 6279
+ },
+ {
+ "epoch": 87.22367846221057,
+ "grad_norm": 0.5501153469085693,
+ "learning_rate": 0.0006,
+ "loss": 4.183748245239258,
+ "step": 6280
+ },
+ {
+ "epoch": 87.23765836609873,
+ "grad_norm": 0.5142590403556824,
+ "learning_rate": 0.0006,
+ "loss": 4.183562278747559,
+ "step": 6281
+ },
+ {
+ "epoch": 87.2516382699869,
+ "grad_norm": 0.5068333148956299,
+ "learning_rate": 0.0006,
+ "loss": 4.15458869934082,
+ "step": 6282
+ },
+ {
+ "epoch": 87.26561817387505,
+ "grad_norm": 0.49197667837142944,
+ "learning_rate": 0.0006,
+ "loss": 4.183134078979492,
+ "step": 6283
+ },
+ {
+ "epoch": 87.27959807776321,
+ "grad_norm": 0.474367618560791,
+ "learning_rate": 0.0006,
+ "loss": 4.166842460632324,
+ "step": 6284
+ },
+ {
+ "epoch": 87.29357798165138,
+ "grad_norm": 0.487605482339859,
+ "learning_rate": 0.0006,
+ "loss": 4.14278507232666,
+ "step": 6285
+ },
+ {
+ "epoch": 87.30755788553954,
+ "grad_norm": 0.5414341688156128,
+ "learning_rate": 0.0006,
+ "loss": 4.185382843017578,
+ "step": 6286
+ },
+ {
+ "epoch": 87.3215377894277,
+ "grad_norm": 0.5583488345146179,
+ "learning_rate": 0.0006,
+ "loss": 4.194276809692383,
+ "step": 6287
+ },
+ {
+ "epoch": 87.33551769331586,
+ "grad_norm": 0.5409402847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.194012641906738,
+ "step": 6288
+ },
+ {
+ "epoch": 87.34949759720402,
+ "grad_norm": 0.48561549186706543,
+ "learning_rate": 0.0006,
+ "loss": 4.114370346069336,
+ "step": 6289
+ },
+ {
+ "epoch": 87.36347750109218,
+ "grad_norm": 0.4989895224571228,
+ "learning_rate": 0.0006,
+ "loss": 4.2538604736328125,
+ "step": 6290
+ },
+ {
+ "epoch": 87.37745740498035,
+ "grad_norm": 0.48488590121269226,
+ "learning_rate": 0.0006,
+ "loss": 4.191547870635986,
+ "step": 6291
+ },
+ {
+ "epoch": 87.3914373088685,
+ "grad_norm": 0.4702613353729248,
+ "learning_rate": 0.0006,
+ "loss": 4.240187644958496,
+ "step": 6292
+ },
+ {
+ "epoch": 87.40541721275666,
+ "grad_norm": 0.4687752425670624,
+ "learning_rate": 0.0006,
+ "loss": 4.121512413024902,
+ "step": 6293
+ },
+ {
+ "epoch": 87.41939711664482,
+ "grad_norm": 0.48676159977912903,
+ "learning_rate": 0.0006,
+ "loss": 4.289400100708008,
+ "step": 6294
+ },
+ {
+ "epoch": 87.43337702053299,
+ "grad_norm": 0.4835919439792633,
+ "learning_rate": 0.0006,
+ "loss": 4.250560760498047,
+ "step": 6295
+ },
+ {
+ "epoch": 87.44735692442114,
+ "grad_norm": 0.4874095916748047,
+ "learning_rate": 0.0006,
+ "loss": 4.225663185119629,
+ "step": 6296
+ },
+ {
+ "epoch": 87.4613368283093,
+ "grad_norm": 0.488853394985199,
+ "learning_rate": 0.0006,
+ "loss": 4.23991584777832,
+ "step": 6297
+ },
+ {
+ "epoch": 87.47531673219747,
+ "grad_norm": 0.44397449493408203,
+ "learning_rate": 0.0006,
+ "loss": 4.123526096343994,
+ "step": 6298
+ },
+ {
+ "epoch": 87.48929663608563,
+ "grad_norm": 0.4251089096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.166404724121094,
+ "step": 6299
+ },
+ {
+ "epoch": 87.50327653997378,
+ "grad_norm": 0.4290788769721985,
+ "learning_rate": 0.0006,
+ "loss": 4.228366851806641,
+ "step": 6300
+ },
+ {
+ "epoch": 87.51725644386195,
+ "grad_norm": 0.42660924792289734,
+ "learning_rate": 0.0006,
+ "loss": 4.225200653076172,
+ "step": 6301
+ },
+ {
+ "epoch": 87.53123634775011,
+ "grad_norm": 0.43401870131492615,
+ "learning_rate": 0.0006,
+ "loss": 4.27695894241333,
+ "step": 6302
+ },
+ {
+ "epoch": 87.54521625163827,
+ "grad_norm": 0.41544046998023987,
+ "learning_rate": 0.0006,
+ "loss": 4.177009582519531,
+ "step": 6303
+ },
+ {
+ "epoch": 87.55919615552644,
+ "grad_norm": 0.44220849871635437,
+ "learning_rate": 0.0006,
+ "loss": 4.2085065841674805,
+ "step": 6304
+ },
+ {
+ "epoch": 87.57317605941459,
+ "grad_norm": 0.42026737332344055,
+ "learning_rate": 0.0006,
+ "loss": 4.185011863708496,
+ "step": 6305
+ },
+ {
+ "epoch": 87.58715596330275,
+ "grad_norm": 0.44712957739830017,
+ "learning_rate": 0.0006,
+ "loss": 4.245328903198242,
+ "step": 6306
+ },
+ {
+ "epoch": 87.60113586719092,
+ "grad_norm": 0.44793379306793213,
+ "learning_rate": 0.0006,
+ "loss": 4.212185382843018,
+ "step": 6307
+ },
+ {
+ "epoch": 87.61511577107908,
+ "grad_norm": 0.4273943305015564,
+ "learning_rate": 0.0006,
+ "loss": 4.197522163391113,
+ "step": 6308
+ },
+ {
+ "epoch": 87.62909567496723,
+ "grad_norm": 0.42533764243125916,
+ "learning_rate": 0.0006,
+ "loss": 4.172801971435547,
+ "step": 6309
+ },
+ {
+ "epoch": 87.6430755788554,
+ "grad_norm": 0.43188905715942383,
+ "learning_rate": 0.0006,
+ "loss": 4.165098190307617,
+ "step": 6310
+ },
+ {
+ "epoch": 87.65705548274356,
+ "grad_norm": 0.44534748792648315,
+ "learning_rate": 0.0006,
+ "loss": 4.229440212249756,
+ "step": 6311
+ },
+ {
+ "epoch": 87.67103538663171,
+ "grad_norm": 0.45937788486480713,
+ "learning_rate": 0.0006,
+ "loss": 4.20249080657959,
+ "step": 6312
+ },
+ {
+ "epoch": 87.68501529051987,
+ "grad_norm": 0.4640798568725586,
+ "learning_rate": 0.0006,
+ "loss": 4.2877068519592285,
+ "step": 6313
+ },
+ {
+ "epoch": 87.69899519440804,
+ "grad_norm": 0.4504205882549286,
+ "learning_rate": 0.0006,
+ "loss": 4.308557510375977,
+ "step": 6314
+ },
+ {
+ "epoch": 87.7129750982962,
+ "grad_norm": 0.4654962122440338,
+ "learning_rate": 0.0006,
+ "loss": 4.335789203643799,
+ "step": 6315
+ },
+ {
+ "epoch": 87.72695500218435,
+ "grad_norm": 0.44867751002311707,
+ "learning_rate": 0.0006,
+ "loss": 4.255827903747559,
+ "step": 6316
+ },
+ {
+ "epoch": 87.74093490607252,
+ "grad_norm": 0.42953476309776306,
+ "learning_rate": 0.0006,
+ "loss": 4.224635124206543,
+ "step": 6317
+ },
+ {
+ "epoch": 87.75491480996068,
+ "grad_norm": 0.4550751745700836,
+ "learning_rate": 0.0006,
+ "loss": 4.280992031097412,
+ "step": 6318
+ },
+ {
+ "epoch": 87.76889471384884,
+ "grad_norm": 0.455138236284256,
+ "learning_rate": 0.0006,
+ "loss": 4.20681095123291,
+ "step": 6319
+ },
+ {
+ "epoch": 87.78287461773701,
+ "grad_norm": 0.4809635579586029,
+ "learning_rate": 0.0006,
+ "loss": 4.307140350341797,
+ "step": 6320
+ },
+ {
+ "epoch": 87.79685452162516,
+ "grad_norm": 0.4570373594760895,
+ "learning_rate": 0.0006,
+ "loss": 4.204259395599365,
+ "step": 6321
+ },
+ {
+ "epoch": 87.81083442551332,
+ "grad_norm": 0.4444306194782257,
+ "learning_rate": 0.0006,
+ "loss": 4.341936111450195,
+ "step": 6322
+ },
+ {
+ "epoch": 87.82481432940149,
+ "grad_norm": 0.42678138613700867,
+ "learning_rate": 0.0006,
+ "loss": 4.294060230255127,
+ "step": 6323
+ },
+ {
+ "epoch": 87.83879423328965,
+ "grad_norm": 0.43476608395576477,
+ "learning_rate": 0.0006,
+ "loss": 4.215855598449707,
+ "step": 6324
+ },
+ {
+ "epoch": 87.8527741371778,
+ "grad_norm": 0.42589980363845825,
+ "learning_rate": 0.0006,
+ "loss": 4.274613380432129,
+ "step": 6325
+ },
+ {
+ "epoch": 87.86675404106597,
+ "grad_norm": 0.4429503083229065,
+ "learning_rate": 0.0006,
+ "loss": 4.283843994140625,
+ "step": 6326
+ },
+ {
+ "epoch": 87.88073394495413,
+ "grad_norm": 0.4391273558139801,
+ "learning_rate": 0.0006,
+ "loss": 4.207469463348389,
+ "step": 6327
+ },
+ {
+ "epoch": 87.89471384884229,
+ "grad_norm": 0.4276169538497925,
+ "learning_rate": 0.0006,
+ "loss": 4.249349594116211,
+ "step": 6328
+ },
+ {
+ "epoch": 87.90869375273044,
+ "grad_norm": 0.40960410237312317,
+ "learning_rate": 0.0006,
+ "loss": 4.273435592651367,
+ "step": 6329
+ },
+ {
+ "epoch": 87.92267365661861,
+ "grad_norm": 0.4168111979961395,
+ "learning_rate": 0.0006,
+ "loss": 4.251261234283447,
+ "step": 6330
+ },
+ {
+ "epoch": 87.93665356050677,
+ "grad_norm": 0.41783952713012695,
+ "learning_rate": 0.0006,
+ "loss": 4.247318267822266,
+ "step": 6331
+ },
+ {
+ "epoch": 87.95063346439493,
+ "grad_norm": 0.4538755416870117,
+ "learning_rate": 0.0006,
+ "loss": 4.262417793273926,
+ "step": 6332
+ },
+ {
+ "epoch": 87.9646133682831,
+ "grad_norm": 0.46401816606521606,
+ "learning_rate": 0.0006,
+ "loss": 4.208325386047363,
+ "step": 6333
+ },
+ {
+ "epoch": 87.97859327217125,
+ "grad_norm": 0.4470364451408386,
+ "learning_rate": 0.0006,
+ "loss": 4.340447902679443,
+ "step": 6334
+ },
+ {
+ "epoch": 87.99257317605941,
+ "grad_norm": 0.42655766010284424,
+ "learning_rate": 0.0006,
+ "loss": 4.263899326324463,
+ "step": 6335
+ },
+ {
+ "epoch": 88.0,
+ "grad_norm": 0.509168803691864,
+ "learning_rate": 0.0006,
+ "loss": 4.314913272857666,
+ "step": 6336
+ },
+ {
+ "epoch": 88.0,
+ "eval_loss": 6.432528972625732,
+ "eval_runtime": 43.7788,
+ "eval_samples_per_second": 55.78,
+ "eval_steps_per_second": 3.495,
+ "step": 6336
+ },
+ {
+ "epoch": 88.01397990388816,
+ "grad_norm": 0.4394129514694214,
+ "learning_rate": 0.0006,
+ "loss": 4.098550796508789,
+ "step": 6337
+ },
+ {
+ "epoch": 88.02795980777633,
+ "grad_norm": 0.5240156650543213,
+ "learning_rate": 0.0006,
+ "loss": 4.23394775390625,
+ "step": 6338
+ },
+ {
+ "epoch": 88.04193971166448,
+ "grad_norm": 0.5676344633102417,
+ "learning_rate": 0.0006,
+ "loss": 4.099154472351074,
+ "step": 6339
+ },
+ {
+ "epoch": 88.05591961555264,
+ "grad_norm": 0.6156212091445923,
+ "learning_rate": 0.0006,
+ "loss": 4.1330366134643555,
+ "step": 6340
+ },
+ {
+ "epoch": 88.06989951944081,
+ "grad_norm": 0.6814325451850891,
+ "learning_rate": 0.0006,
+ "loss": 4.072694778442383,
+ "step": 6341
+ },
+ {
+ "epoch": 88.08387942332897,
+ "grad_norm": 0.8030034303665161,
+ "learning_rate": 0.0006,
+ "loss": 4.105202674865723,
+ "step": 6342
+ },
+ {
+ "epoch": 88.09785932721712,
+ "grad_norm": 0.8481942415237427,
+ "learning_rate": 0.0006,
+ "loss": 4.197783470153809,
+ "step": 6343
+ },
+ {
+ "epoch": 88.1118392311053,
+ "grad_norm": 0.850947380065918,
+ "learning_rate": 0.0006,
+ "loss": 4.229393005371094,
+ "step": 6344
+ },
+ {
+ "epoch": 88.12581913499345,
+ "grad_norm": 0.8265675902366638,
+ "learning_rate": 0.0006,
+ "loss": 4.217302322387695,
+ "step": 6345
+ },
+ {
+ "epoch": 88.1397990388816,
+ "grad_norm": 0.68138188123703,
+ "learning_rate": 0.0006,
+ "loss": 4.041551113128662,
+ "step": 6346
+ },
+ {
+ "epoch": 88.15377894276976,
+ "grad_norm": 0.6319344639778137,
+ "learning_rate": 0.0006,
+ "loss": 4.226554870605469,
+ "step": 6347
+ },
+ {
+ "epoch": 88.16775884665793,
+ "grad_norm": 0.6571003794670105,
+ "learning_rate": 0.0006,
+ "loss": 4.237563133239746,
+ "step": 6348
+ },
+ {
+ "epoch": 88.18173875054609,
+ "grad_norm": 0.5948857665061951,
+ "learning_rate": 0.0006,
+ "loss": 4.038263320922852,
+ "step": 6349
+ },
+ {
+ "epoch": 88.19571865443424,
+ "grad_norm": 0.5716128349304199,
+ "learning_rate": 0.0006,
+ "loss": 4.119385719299316,
+ "step": 6350
+ },
+ {
+ "epoch": 88.20969855832242,
+ "grad_norm": 0.5655331015586853,
+ "learning_rate": 0.0006,
+ "loss": 4.186577320098877,
+ "step": 6351
+ },
+ {
+ "epoch": 88.22367846221057,
+ "grad_norm": 0.5525882244110107,
+ "learning_rate": 0.0006,
+ "loss": 4.243231773376465,
+ "step": 6352
+ },
+ {
+ "epoch": 88.23765836609873,
+ "grad_norm": 0.5307421088218689,
+ "learning_rate": 0.0006,
+ "loss": 4.087076187133789,
+ "step": 6353
+ },
+ {
+ "epoch": 88.2516382699869,
+ "grad_norm": 0.5078102350234985,
+ "learning_rate": 0.0006,
+ "loss": 4.140388488769531,
+ "step": 6354
+ },
+ {
+ "epoch": 88.26561817387505,
+ "grad_norm": 0.47047364711761475,
+ "learning_rate": 0.0006,
+ "loss": 4.150869369506836,
+ "step": 6355
+ },
+ {
+ "epoch": 88.27959807776321,
+ "grad_norm": 0.49231794476509094,
+ "learning_rate": 0.0006,
+ "loss": 4.194167613983154,
+ "step": 6356
+ },
+ {
+ "epoch": 88.29357798165138,
+ "grad_norm": 0.5090434551239014,
+ "learning_rate": 0.0006,
+ "loss": 4.1998066902160645,
+ "step": 6357
+ },
+ {
+ "epoch": 88.30755788553954,
+ "grad_norm": 0.4979526698589325,
+ "learning_rate": 0.0006,
+ "loss": 4.166561603546143,
+ "step": 6358
+ },
+ {
+ "epoch": 88.3215377894277,
+ "grad_norm": 0.49379774928092957,
+ "learning_rate": 0.0006,
+ "loss": 4.1152544021606445,
+ "step": 6359
+ },
+ {
+ "epoch": 88.33551769331586,
+ "grad_norm": 0.4689238369464874,
+ "learning_rate": 0.0006,
+ "loss": 4.072159767150879,
+ "step": 6360
+ },
+ {
+ "epoch": 88.34949759720402,
+ "grad_norm": 0.46816980838775635,
+ "learning_rate": 0.0006,
+ "loss": 4.18184232711792,
+ "step": 6361
+ },
+ {
+ "epoch": 88.36347750109218,
+ "grad_norm": 0.4660980701446533,
+ "learning_rate": 0.0006,
+ "loss": 4.234951972961426,
+ "step": 6362
+ },
+ {
+ "epoch": 88.37745740498035,
+ "grad_norm": 0.4613046646118164,
+ "learning_rate": 0.0006,
+ "loss": 4.201333999633789,
+ "step": 6363
+ },
+ {
+ "epoch": 88.3914373088685,
+ "grad_norm": 0.4615226686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.188490867614746,
+ "step": 6364
+ },
+ {
+ "epoch": 88.40541721275666,
+ "grad_norm": 0.4791965186595917,
+ "learning_rate": 0.0006,
+ "loss": 4.14546537399292,
+ "step": 6365
+ },
+ {
+ "epoch": 88.41939711664482,
+ "grad_norm": 0.47666725516319275,
+ "learning_rate": 0.0006,
+ "loss": 4.196171760559082,
+ "step": 6366
+ },
+ {
+ "epoch": 88.43337702053299,
+ "grad_norm": 0.4990350604057312,
+ "learning_rate": 0.0006,
+ "loss": 4.266140937805176,
+ "step": 6367
+ },
+ {
+ "epoch": 88.44735692442114,
+ "grad_norm": 0.46699395775794983,
+ "learning_rate": 0.0006,
+ "loss": 4.166864395141602,
+ "step": 6368
+ },
+ {
+ "epoch": 88.4613368283093,
+ "grad_norm": 0.4724302291870117,
+ "learning_rate": 0.0006,
+ "loss": 4.206777095794678,
+ "step": 6369
+ },
+ {
+ "epoch": 88.47531673219747,
+ "grad_norm": 0.47723710536956787,
+ "learning_rate": 0.0006,
+ "loss": 4.1860880851745605,
+ "step": 6370
+ },
+ {
+ "epoch": 88.48929663608563,
+ "grad_norm": 0.46229004859924316,
+ "learning_rate": 0.0006,
+ "loss": 4.241762161254883,
+ "step": 6371
+ },
+ {
+ "epoch": 88.50327653997378,
+ "grad_norm": 0.4399679899215698,
+ "learning_rate": 0.0006,
+ "loss": 4.1255388259887695,
+ "step": 6372
+ },
+ {
+ "epoch": 88.51725644386195,
+ "grad_norm": 0.4210696816444397,
+ "learning_rate": 0.0006,
+ "loss": 4.226009368896484,
+ "step": 6373
+ },
+ {
+ "epoch": 88.53123634775011,
+ "grad_norm": 0.4285459816455841,
+ "learning_rate": 0.0006,
+ "loss": 4.266463279724121,
+ "step": 6374
+ },
+ {
+ "epoch": 88.54521625163827,
+ "grad_norm": 0.45448604226112366,
+ "learning_rate": 0.0006,
+ "loss": 4.243244171142578,
+ "step": 6375
+ },
+ {
+ "epoch": 88.55919615552644,
+ "grad_norm": 0.4520719349384308,
+ "learning_rate": 0.0006,
+ "loss": 4.208941459655762,
+ "step": 6376
+ },
+ {
+ "epoch": 88.57317605941459,
+ "grad_norm": 0.4451465308666229,
+ "learning_rate": 0.0006,
+ "loss": 4.247753143310547,
+ "step": 6377
+ },
+ {
+ "epoch": 88.58715596330275,
+ "grad_norm": 0.4189188778400421,
+ "learning_rate": 0.0006,
+ "loss": 4.195448398590088,
+ "step": 6378
+ },
+ {
+ "epoch": 88.60113586719092,
+ "grad_norm": 0.4491824209690094,
+ "learning_rate": 0.0006,
+ "loss": 4.198684215545654,
+ "step": 6379
+ },
+ {
+ "epoch": 88.61511577107908,
+ "grad_norm": 0.43947094678878784,
+ "learning_rate": 0.0006,
+ "loss": 4.153960227966309,
+ "step": 6380
+ },
+ {
+ "epoch": 88.62909567496723,
+ "grad_norm": 0.4456414580345154,
+ "learning_rate": 0.0006,
+ "loss": 4.2118024826049805,
+ "step": 6381
+ },
+ {
+ "epoch": 88.6430755788554,
+ "grad_norm": 0.4536513090133667,
+ "learning_rate": 0.0006,
+ "loss": 4.276762008666992,
+ "step": 6382
+ },
+ {
+ "epoch": 88.65705548274356,
+ "grad_norm": 0.44052013754844666,
+ "learning_rate": 0.0006,
+ "loss": 4.312568187713623,
+ "step": 6383
+ },
+ {
+ "epoch": 88.67103538663171,
+ "grad_norm": 0.41901564598083496,
+ "learning_rate": 0.0006,
+ "loss": 4.142590522766113,
+ "step": 6384
+ },
+ {
+ "epoch": 88.68501529051987,
+ "grad_norm": 0.4399242401123047,
+ "learning_rate": 0.0006,
+ "loss": 4.267861366271973,
+ "step": 6385
+ },
+ {
+ "epoch": 88.69899519440804,
+ "grad_norm": 0.43378013372421265,
+ "learning_rate": 0.0006,
+ "loss": 4.2185163497924805,
+ "step": 6386
+ },
+ {
+ "epoch": 88.7129750982962,
+ "grad_norm": 0.4383338987827301,
+ "learning_rate": 0.0006,
+ "loss": 4.114858627319336,
+ "step": 6387
+ },
+ {
+ "epoch": 88.72695500218435,
+ "grad_norm": 0.42995721101760864,
+ "learning_rate": 0.0006,
+ "loss": 4.287274360656738,
+ "step": 6388
+ },
+ {
+ "epoch": 88.74093490607252,
+ "grad_norm": 0.45664533972740173,
+ "learning_rate": 0.0006,
+ "loss": 4.258739948272705,
+ "step": 6389
+ },
+ {
+ "epoch": 88.75491480996068,
+ "grad_norm": 0.4731299579143524,
+ "learning_rate": 0.0006,
+ "loss": 4.317540168762207,
+ "step": 6390
+ },
+ {
+ "epoch": 88.76889471384884,
+ "grad_norm": 0.48365700244903564,
+ "learning_rate": 0.0006,
+ "loss": 4.192890167236328,
+ "step": 6391
+ },
+ {
+ "epoch": 88.78287461773701,
+ "grad_norm": 0.5313749313354492,
+ "learning_rate": 0.0006,
+ "loss": 4.293295860290527,
+ "step": 6392
+ },
+ {
+ "epoch": 88.79685452162516,
+ "grad_norm": 0.5615261197090149,
+ "learning_rate": 0.0006,
+ "loss": 4.228304862976074,
+ "step": 6393
+ },
+ {
+ "epoch": 88.81083442551332,
+ "grad_norm": 0.5600057244300842,
+ "learning_rate": 0.0006,
+ "loss": 4.122723579406738,
+ "step": 6394
+ },
+ {
+ "epoch": 88.82481432940149,
+ "grad_norm": 0.5509400367736816,
+ "learning_rate": 0.0006,
+ "loss": 4.270684719085693,
+ "step": 6395
+ },
+ {
+ "epoch": 88.83879423328965,
+ "grad_norm": 0.5091027021408081,
+ "learning_rate": 0.0006,
+ "loss": 4.219861030578613,
+ "step": 6396
+ },
+ {
+ "epoch": 88.8527741371778,
+ "grad_norm": 0.467963308095932,
+ "learning_rate": 0.0006,
+ "loss": 4.2875518798828125,
+ "step": 6397
+ },
+ {
+ "epoch": 88.86675404106597,
+ "grad_norm": 0.4483562707901001,
+ "learning_rate": 0.0006,
+ "loss": 4.2151031494140625,
+ "step": 6398
+ },
+ {
+ "epoch": 88.88073394495413,
+ "grad_norm": 0.494113951921463,
+ "learning_rate": 0.0006,
+ "loss": 4.2288713455200195,
+ "step": 6399
+ },
+ {
+ "epoch": 88.89471384884229,
+ "grad_norm": 0.44725731015205383,
+ "learning_rate": 0.0006,
+ "loss": 4.267457962036133,
+ "step": 6400
+ },
+ {
+ "epoch": 88.90869375273044,
+ "grad_norm": 0.43298426270484924,
+ "learning_rate": 0.0006,
+ "loss": 4.271795272827148,
+ "step": 6401
+ },
+ {
+ "epoch": 88.92267365661861,
+ "grad_norm": 0.4664212465286255,
+ "learning_rate": 0.0006,
+ "loss": 4.186749458312988,
+ "step": 6402
+ },
+ {
+ "epoch": 88.93665356050677,
+ "grad_norm": 0.49105745553970337,
+ "learning_rate": 0.0006,
+ "loss": 4.167403697967529,
+ "step": 6403
+ },
+ {
+ "epoch": 88.95063346439493,
+ "grad_norm": 0.47057443857192993,
+ "learning_rate": 0.0006,
+ "loss": 4.183148384094238,
+ "step": 6404
+ },
+ {
+ "epoch": 88.9646133682831,
+ "grad_norm": 0.44123876094818115,
+ "learning_rate": 0.0006,
+ "loss": 4.230330467224121,
+ "step": 6405
+ },
+ {
+ "epoch": 88.97859327217125,
+ "grad_norm": 0.4363035261631012,
+ "learning_rate": 0.0006,
+ "loss": 4.26979923248291,
+ "step": 6406
+ },
+ {
+ "epoch": 88.99257317605941,
+ "grad_norm": 0.43350642919540405,
+ "learning_rate": 0.0006,
+ "loss": 4.286896705627441,
+ "step": 6407
+ },
+ {
+ "epoch": 89.0,
+ "grad_norm": 0.5350832343101501,
+ "learning_rate": 0.0006,
+ "loss": 4.34681510925293,
+ "step": 6408
+ },
+ {
+ "epoch": 89.0,
+ "eval_loss": 6.455365180969238,
+ "eval_runtime": 44.1423,
+ "eval_samples_per_second": 55.321,
+ "eval_steps_per_second": 3.466,
+ "step": 6408
+ },
+ {
+ "epoch": 89.01397990388816,
+ "grad_norm": 0.4708399176597595,
+ "learning_rate": 0.0006,
+ "loss": 4.036174774169922,
+ "step": 6409
+ },
+ {
+ "epoch": 89.02795980777633,
+ "grad_norm": 0.525632917881012,
+ "learning_rate": 0.0006,
+ "loss": 4.141895294189453,
+ "step": 6410
+ },
+ {
+ "epoch": 89.04193971166448,
+ "grad_norm": 0.5222662687301636,
+ "learning_rate": 0.0006,
+ "loss": 4.112619400024414,
+ "step": 6411
+ },
+ {
+ "epoch": 89.05591961555264,
+ "grad_norm": 0.48093459010124207,
+ "learning_rate": 0.0006,
+ "loss": 4.164566516876221,
+ "step": 6412
+ },
+ {
+ "epoch": 89.06989951944081,
+ "grad_norm": 0.511407732963562,
+ "learning_rate": 0.0006,
+ "loss": 4.165305137634277,
+ "step": 6413
+ },
+ {
+ "epoch": 89.08387942332897,
+ "grad_norm": 0.468172162771225,
+ "learning_rate": 0.0006,
+ "loss": 4.208954811096191,
+ "step": 6414
+ },
+ {
+ "epoch": 89.09785932721712,
+ "grad_norm": 0.4654451906681061,
+ "learning_rate": 0.0006,
+ "loss": 4.143332481384277,
+ "step": 6415
+ },
+ {
+ "epoch": 89.1118392311053,
+ "grad_norm": 0.49474361538887024,
+ "learning_rate": 0.0006,
+ "loss": 4.059474945068359,
+ "step": 6416
+ },
+ {
+ "epoch": 89.12581913499345,
+ "grad_norm": 0.5038414001464844,
+ "learning_rate": 0.0006,
+ "loss": 4.041683673858643,
+ "step": 6417
+ },
+ {
+ "epoch": 89.1397990388816,
+ "grad_norm": 0.4938134551048279,
+ "learning_rate": 0.0006,
+ "loss": 4.133648872375488,
+ "step": 6418
+ },
+ {
+ "epoch": 89.15377894276976,
+ "grad_norm": 0.4953842759132385,
+ "learning_rate": 0.0006,
+ "loss": 4.123804092407227,
+ "step": 6419
+ },
+ {
+ "epoch": 89.16775884665793,
+ "grad_norm": 0.5027281641960144,
+ "learning_rate": 0.0006,
+ "loss": 4.190883636474609,
+ "step": 6420
+ },
+ {
+ "epoch": 89.18173875054609,
+ "grad_norm": 0.5707582235336304,
+ "learning_rate": 0.0006,
+ "loss": 4.118431091308594,
+ "step": 6421
+ },
+ {
+ "epoch": 89.19571865443424,
+ "grad_norm": 0.6110844016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.128604888916016,
+ "step": 6422
+ },
+ {
+ "epoch": 89.20969855832242,
+ "grad_norm": 0.7164067625999451,
+ "learning_rate": 0.0006,
+ "loss": 4.193438529968262,
+ "step": 6423
+ },
+ {
+ "epoch": 89.22367846221057,
+ "grad_norm": 0.8181775808334351,
+ "learning_rate": 0.0006,
+ "loss": 4.164249897003174,
+ "step": 6424
+ },
+ {
+ "epoch": 89.23765836609873,
+ "grad_norm": 0.8548126220703125,
+ "learning_rate": 0.0006,
+ "loss": 4.179556846618652,
+ "step": 6425
+ },
+ {
+ "epoch": 89.2516382699869,
+ "grad_norm": 0.7643877863883972,
+ "learning_rate": 0.0006,
+ "loss": 4.274655342102051,
+ "step": 6426
+ },
+ {
+ "epoch": 89.26561817387505,
+ "grad_norm": 0.6268690824508667,
+ "learning_rate": 0.0006,
+ "loss": 4.15860652923584,
+ "step": 6427
+ },
+ {
+ "epoch": 89.27959807776321,
+ "grad_norm": 0.5615007877349854,
+ "learning_rate": 0.0006,
+ "loss": 4.081657409667969,
+ "step": 6428
+ },
+ {
+ "epoch": 89.29357798165138,
+ "grad_norm": 0.5658699870109558,
+ "learning_rate": 0.0006,
+ "loss": 4.072505950927734,
+ "step": 6429
+ },
+ {
+ "epoch": 89.30755788553954,
+ "grad_norm": 0.546249508857727,
+ "learning_rate": 0.0006,
+ "loss": 4.106170654296875,
+ "step": 6430
+ },
+ {
+ "epoch": 89.3215377894277,
+ "grad_norm": 0.5397952198982239,
+ "learning_rate": 0.0006,
+ "loss": 4.177685737609863,
+ "step": 6431
+ },
+ {
+ "epoch": 89.33551769331586,
+ "grad_norm": 0.49549877643585205,
+ "learning_rate": 0.0006,
+ "loss": 4.157642841339111,
+ "step": 6432
+ },
+ {
+ "epoch": 89.34949759720402,
+ "grad_norm": 0.5166518092155457,
+ "learning_rate": 0.0006,
+ "loss": 4.233739852905273,
+ "step": 6433
+ },
+ {
+ "epoch": 89.36347750109218,
+ "grad_norm": 0.5124993920326233,
+ "learning_rate": 0.0006,
+ "loss": 4.195950031280518,
+ "step": 6434
+ },
+ {
+ "epoch": 89.37745740498035,
+ "grad_norm": 0.5590482950210571,
+ "learning_rate": 0.0006,
+ "loss": 4.23075532913208,
+ "step": 6435
+ },
+ {
+ "epoch": 89.3914373088685,
+ "grad_norm": 0.5433930158615112,
+ "learning_rate": 0.0006,
+ "loss": 4.222860336303711,
+ "step": 6436
+ },
+ {
+ "epoch": 89.40541721275666,
+ "grad_norm": 0.5289043188095093,
+ "learning_rate": 0.0006,
+ "loss": 4.150032043457031,
+ "step": 6437
+ },
+ {
+ "epoch": 89.41939711664482,
+ "grad_norm": 0.50300133228302,
+ "learning_rate": 0.0006,
+ "loss": 4.162202835083008,
+ "step": 6438
+ },
+ {
+ "epoch": 89.43337702053299,
+ "grad_norm": 0.5404106378555298,
+ "learning_rate": 0.0006,
+ "loss": 4.170771598815918,
+ "step": 6439
+ },
+ {
+ "epoch": 89.44735692442114,
+ "grad_norm": 0.5366392731666565,
+ "learning_rate": 0.0006,
+ "loss": 4.193058013916016,
+ "step": 6440
+ },
+ {
+ "epoch": 89.4613368283093,
+ "grad_norm": 0.5408844351768494,
+ "learning_rate": 0.0006,
+ "loss": 4.155562400817871,
+ "step": 6441
+ },
+ {
+ "epoch": 89.47531673219747,
+ "grad_norm": 0.5111629366874695,
+ "learning_rate": 0.0006,
+ "loss": 4.128347396850586,
+ "step": 6442
+ },
+ {
+ "epoch": 89.48929663608563,
+ "grad_norm": 0.5085851550102234,
+ "learning_rate": 0.0006,
+ "loss": 4.229991912841797,
+ "step": 6443
+ },
+ {
+ "epoch": 89.50327653997378,
+ "grad_norm": 0.4959278106689453,
+ "learning_rate": 0.0006,
+ "loss": 4.226166248321533,
+ "step": 6444
+ },
+ {
+ "epoch": 89.51725644386195,
+ "grad_norm": 0.5022532343864441,
+ "learning_rate": 0.0006,
+ "loss": 4.289538383483887,
+ "step": 6445
+ },
+ {
+ "epoch": 89.53123634775011,
+ "grad_norm": 0.4877833425998688,
+ "learning_rate": 0.0006,
+ "loss": 4.147860527038574,
+ "step": 6446
+ },
+ {
+ "epoch": 89.54521625163827,
+ "grad_norm": 0.471768319606781,
+ "learning_rate": 0.0006,
+ "loss": 4.2429890632629395,
+ "step": 6447
+ },
+ {
+ "epoch": 89.55919615552644,
+ "grad_norm": 0.4479426443576813,
+ "learning_rate": 0.0006,
+ "loss": 4.193235397338867,
+ "step": 6448
+ },
+ {
+ "epoch": 89.57317605941459,
+ "grad_norm": 0.4530574083328247,
+ "learning_rate": 0.0006,
+ "loss": 4.133496284484863,
+ "step": 6449
+ },
+ {
+ "epoch": 89.58715596330275,
+ "grad_norm": 0.440782368183136,
+ "learning_rate": 0.0006,
+ "loss": 4.25516414642334,
+ "step": 6450
+ },
+ {
+ "epoch": 89.60113586719092,
+ "grad_norm": 0.4279060959815979,
+ "learning_rate": 0.0006,
+ "loss": 4.155753135681152,
+ "step": 6451
+ },
+ {
+ "epoch": 89.61511577107908,
+ "grad_norm": 0.4291892945766449,
+ "learning_rate": 0.0006,
+ "loss": 4.073741436004639,
+ "step": 6452
+ },
+ {
+ "epoch": 89.62909567496723,
+ "grad_norm": 0.42664697766304016,
+ "learning_rate": 0.0006,
+ "loss": 4.167827129364014,
+ "step": 6453
+ },
+ {
+ "epoch": 89.6430755788554,
+ "grad_norm": 0.43017902970314026,
+ "learning_rate": 0.0006,
+ "loss": 4.161744117736816,
+ "step": 6454
+ },
+ {
+ "epoch": 89.65705548274356,
+ "grad_norm": 0.4454079270362854,
+ "learning_rate": 0.0006,
+ "loss": 4.2425856590271,
+ "step": 6455
+ },
+ {
+ "epoch": 89.67103538663171,
+ "grad_norm": 0.439971387386322,
+ "learning_rate": 0.0006,
+ "loss": 4.149636745452881,
+ "step": 6456
+ },
+ {
+ "epoch": 89.68501529051987,
+ "grad_norm": 0.41075047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.2641754150390625,
+ "step": 6457
+ },
+ {
+ "epoch": 89.69899519440804,
+ "grad_norm": 0.4242379367351532,
+ "learning_rate": 0.0006,
+ "loss": 4.19976806640625,
+ "step": 6458
+ },
+ {
+ "epoch": 89.7129750982962,
+ "grad_norm": 0.449848473072052,
+ "learning_rate": 0.0006,
+ "loss": 4.209725379943848,
+ "step": 6459
+ },
+ {
+ "epoch": 89.72695500218435,
+ "grad_norm": 0.4313943088054657,
+ "learning_rate": 0.0006,
+ "loss": 4.189460754394531,
+ "step": 6460
+ },
+ {
+ "epoch": 89.74093490607252,
+ "grad_norm": 0.4117465615272522,
+ "learning_rate": 0.0006,
+ "loss": 4.23152494430542,
+ "step": 6461
+ },
+ {
+ "epoch": 89.75491480996068,
+ "grad_norm": 0.43824872374534607,
+ "learning_rate": 0.0006,
+ "loss": 4.275446891784668,
+ "step": 6462
+ },
+ {
+ "epoch": 89.76889471384884,
+ "grad_norm": 0.4223631024360657,
+ "learning_rate": 0.0006,
+ "loss": 4.213408470153809,
+ "step": 6463
+ },
+ {
+ "epoch": 89.78287461773701,
+ "grad_norm": 0.4584514796733856,
+ "learning_rate": 0.0006,
+ "loss": 4.268832206726074,
+ "step": 6464
+ },
+ {
+ "epoch": 89.79685452162516,
+ "grad_norm": 0.494238018989563,
+ "learning_rate": 0.0006,
+ "loss": 4.247956275939941,
+ "step": 6465
+ },
+ {
+ "epoch": 89.81083442551332,
+ "grad_norm": 0.5107383728027344,
+ "learning_rate": 0.0006,
+ "loss": 4.252870559692383,
+ "step": 6466
+ },
+ {
+ "epoch": 89.82481432940149,
+ "grad_norm": 0.5290380716323853,
+ "learning_rate": 0.0006,
+ "loss": 4.171296119689941,
+ "step": 6467
+ },
+ {
+ "epoch": 89.83879423328965,
+ "grad_norm": 0.5208032727241516,
+ "learning_rate": 0.0006,
+ "loss": 4.278501510620117,
+ "step": 6468
+ },
+ {
+ "epoch": 89.8527741371778,
+ "grad_norm": 0.4737851321697235,
+ "learning_rate": 0.0006,
+ "loss": 4.302886962890625,
+ "step": 6469
+ },
+ {
+ "epoch": 89.86675404106597,
+ "grad_norm": 0.4450524151325226,
+ "learning_rate": 0.0006,
+ "loss": 4.232474327087402,
+ "step": 6470
+ },
+ {
+ "epoch": 89.88073394495413,
+ "grad_norm": 0.4427195191383362,
+ "learning_rate": 0.0006,
+ "loss": 4.172199249267578,
+ "step": 6471
+ },
+ {
+ "epoch": 89.89471384884229,
+ "grad_norm": 0.43507620692253113,
+ "learning_rate": 0.0006,
+ "loss": 4.249779224395752,
+ "step": 6472
+ },
+ {
+ "epoch": 89.90869375273044,
+ "grad_norm": 0.4446448087692261,
+ "learning_rate": 0.0006,
+ "loss": 4.1917572021484375,
+ "step": 6473
+ },
+ {
+ "epoch": 89.92267365661861,
+ "grad_norm": 0.4660170376300812,
+ "learning_rate": 0.0006,
+ "loss": 4.329804420471191,
+ "step": 6474
+ },
+ {
+ "epoch": 89.93665356050677,
+ "grad_norm": 0.4415760636329651,
+ "learning_rate": 0.0006,
+ "loss": 4.222148418426514,
+ "step": 6475
+ },
+ {
+ "epoch": 89.95063346439493,
+ "grad_norm": 0.4310150742530823,
+ "learning_rate": 0.0006,
+ "loss": 4.247184753417969,
+ "step": 6476
+ },
+ {
+ "epoch": 89.9646133682831,
+ "grad_norm": 0.41320905089378357,
+ "learning_rate": 0.0006,
+ "loss": 4.2810163497924805,
+ "step": 6477
+ },
+ {
+ "epoch": 89.97859327217125,
+ "grad_norm": 0.4054322838783264,
+ "learning_rate": 0.0006,
+ "loss": 4.183734893798828,
+ "step": 6478
+ },
+ {
+ "epoch": 89.99257317605941,
+ "grad_norm": 0.4412568211555481,
+ "learning_rate": 0.0006,
+ "loss": 4.278779029846191,
+ "step": 6479
+ },
+ {
+ "epoch": 90.0,
+ "grad_norm": 0.5007101893424988,
+ "learning_rate": 0.0006,
+ "loss": 4.1415252685546875,
+ "step": 6480
+ },
+ {
+ "epoch": 90.0,
+ "eval_loss": 6.461297512054443,
+ "eval_runtime": 43.9594,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 6480
+ },
+ {
+ "epoch": 90.01397990388816,
+ "grad_norm": 0.4736317992210388,
+ "learning_rate": 0.0006,
+ "loss": 4.099908828735352,
+ "step": 6481
+ },
+ {
+ "epoch": 90.02795980777633,
+ "grad_norm": 0.4843558669090271,
+ "learning_rate": 0.0006,
+ "loss": 4.172642707824707,
+ "step": 6482
+ },
+ {
+ "epoch": 90.04193971166448,
+ "grad_norm": 0.5011246204376221,
+ "learning_rate": 0.0006,
+ "loss": 4.213924407958984,
+ "step": 6483
+ },
+ {
+ "epoch": 90.05591961555264,
+ "grad_norm": 0.5023370981216431,
+ "learning_rate": 0.0006,
+ "loss": 4.07386589050293,
+ "step": 6484
+ },
+ {
+ "epoch": 90.06989951944081,
+ "grad_norm": 0.5439006090164185,
+ "learning_rate": 0.0006,
+ "loss": 4.213405609130859,
+ "step": 6485
+ },
+ {
+ "epoch": 90.08387942332897,
+ "grad_norm": 0.5799363851547241,
+ "learning_rate": 0.0006,
+ "loss": 4.134682655334473,
+ "step": 6486
+ },
+ {
+ "epoch": 90.09785932721712,
+ "grad_norm": 0.5854056477546692,
+ "learning_rate": 0.0006,
+ "loss": 4.171481132507324,
+ "step": 6487
+ },
+ {
+ "epoch": 90.1118392311053,
+ "grad_norm": 0.5867761373519897,
+ "learning_rate": 0.0006,
+ "loss": 4.168168544769287,
+ "step": 6488
+ },
+ {
+ "epoch": 90.12581913499345,
+ "grad_norm": 0.6079634428024292,
+ "learning_rate": 0.0006,
+ "loss": 4.112820148468018,
+ "step": 6489
+ },
+ {
+ "epoch": 90.1397990388816,
+ "grad_norm": 0.683942973613739,
+ "learning_rate": 0.0006,
+ "loss": 4.082386016845703,
+ "step": 6490
+ },
+ {
+ "epoch": 90.15377894276976,
+ "grad_norm": 0.7263656854629517,
+ "learning_rate": 0.0006,
+ "loss": 4.195616722106934,
+ "step": 6491
+ },
+ {
+ "epoch": 90.16775884665793,
+ "grad_norm": 0.7217769622802734,
+ "learning_rate": 0.0006,
+ "loss": 4.040677070617676,
+ "step": 6492
+ },
+ {
+ "epoch": 90.18173875054609,
+ "grad_norm": 0.6378527283668518,
+ "learning_rate": 0.0006,
+ "loss": 4.040353298187256,
+ "step": 6493
+ },
+ {
+ "epoch": 90.19571865443424,
+ "grad_norm": 0.551162838935852,
+ "learning_rate": 0.0006,
+ "loss": 4.206055164337158,
+ "step": 6494
+ },
+ {
+ "epoch": 90.20969855832242,
+ "grad_norm": 0.5096537470817566,
+ "learning_rate": 0.0006,
+ "loss": 4.1036481857299805,
+ "step": 6495
+ },
+ {
+ "epoch": 90.22367846221057,
+ "grad_norm": 0.5454337000846863,
+ "learning_rate": 0.0006,
+ "loss": 4.238418102264404,
+ "step": 6496
+ },
+ {
+ "epoch": 90.23765836609873,
+ "grad_norm": 0.5773523449897766,
+ "learning_rate": 0.0006,
+ "loss": 4.207098960876465,
+ "step": 6497
+ },
+ {
+ "epoch": 90.2516382699869,
+ "grad_norm": 0.5835501551628113,
+ "learning_rate": 0.0006,
+ "loss": 4.105945587158203,
+ "step": 6498
+ },
+ {
+ "epoch": 90.26561817387505,
+ "grad_norm": 0.5536814332008362,
+ "learning_rate": 0.0006,
+ "loss": 4.105280876159668,
+ "step": 6499
+ },
+ {
+ "epoch": 90.27959807776321,
+ "grad_norm": 0.5220383405685425,
+ "learning_rate": 0.0006,
+ "loss": 4.08549690246582,
+ "step": 6500
+ },
+ {
+ "epoch": 90.29357798165138,
+ "grad_norm": 0.46602848172187805,
+ "learning_rate": 0.0006,
+ "loss": 4.1158552169799805,
+ "step": 6501
+ },
+ {
+ "epoch": 90.30755788553954,
+ "grad_norm": 0.44694533944129944,
+ "learning_rate": 0.0006,
+ "loss": 4.079707145690918,
+ "step": 6502
+ },
+ {
+ "epoch": 90.3215377894277,
+ "grad_norm": 0.45450302958488464,
+ "learning_rate": 0.0006,
+ "loss": 4.149056434631348,
+ "step": 6503
+ },
+ {
+ "epoch": 90.33551769331586,
+ "grad_norm": 0.4568767845630646,
+ "learning_rate": 0.0006,
+ "loss": 4.119246482849121,
+ "step": 6504
+ },
+ {
+ "epoch": 90.34949759720402,
+ "grad_norm": 0.46284767985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.262497425079346,
+ "step": 6505
+ },
+ {
+ "epoch": 90.36347750109218,
+ "grad_norm": 0.4455495774745941,
+ "learning_rate": 0.0006,
+ "loss": 4.118424415588379,
+ "step": 6506
+ },
+ {
+ "epoch": 90.37745740498035,
+ "grad_norm": 0.48050129413604736,
+ "learning_rate": 0.0006,
+ "loss": 4.312798500061035,
+ "step": 6507
+ },
+ {
+ "epoch": 90.3914373088685,
+ "grad_norm": 0.46244576573371887,
+ "learning_rate": 0.0006,
+ "loss": 4.209562301635742,
+ "step": 6508
+ },
+ {
+ "epoch": 90.40541721275666,
+ "grad_norm": 0.4645386338233948,
+ "learning_rate": 0.0006,
+ "loss": 4.193568229675293,
+ "step": 6509
+ },
+ {
+ "epoch": 90.41939711664482,
+ "grad_norm": 0.4373893439769745,
+ "learning_rate": 0.0006,
+ "loss": 4.105895042419434,
+ "step": 6510
+ },
+ {
+ "epoch": 90.43337702053299,
+ "grad_norm": 0.46292024850845337,
+ "learning_rate": 0.0006,
+ "loss": 4.095562934875488,
+ "step": 6511
+ },
+ {
+ "epoch": 90.44735692442114,
+ "grad_norm": 0.44163432717323303,
+ "learning_rate": 0.0006,
+ "loss": 4.157992839813232,
+ "step": 6512
+ },
+ {
+ "epoch": 90.4613368283093,
+ "grad_norm": 0.44154176115989685,
+ "learning_rate": 0.0006,
+ "loss": 4.131383895874023,
+ "step": 6513
+ },
+ {
+ "epoch": 90.47531673219747,
+ "grad_norm": 0.42830872535705566,
+ "learning_rate": 0.0006,
+ "loss": 4.182307243347168,
+ "step": 6514
+ },
+ {
+ "epoch": 90.48929663608563,
+ "grad_norm": 0.4245883524417877,
+ "learning_rate": 0.0006,
+ "loss": 4.234951019287109,
+ "step": 6515
+ },
+ {
+ "epoch": 90.50327653997378,
+ "grad_norm": 0.43113020062446594,
+ "learning_rate": 0.0006,
+ "loss": 4.151059627532959,
+ "step": 6516
+ },
+ {
+ "epoch": 90.51725644386195,
+ "grad_norm": 0.43065521121025085,
+ "learning_rate": 0.0006,
+ "loss": 4.190324783325195,
+ "step": 6517
+ },
+ {
+ "epoch": 90.53123634775011,
+ "grad_norm": 0.42334818840026855,
+ "learning_rate": 0.0006,
+ "loss": 4.186755657196045,
+ "step": 6518
+ },
+ {
+ "epoch": 90.54521625163827,
+ "grad_norm": 0.4574383795261383,
+ "learning_rate": 0.0006,
+ "loss": 4.26517391204834,
+ "step": 6519
+ },
+ {
+ "epoch": 90.55919615552644,
+ "grad_norm": 0.4504454731941223,
+ "learning_rate": 0.0006,
+ "loss": 4.223880767822266,
+ "step": 6520
+ },
+ {
+ "epoch": 90.57317605941459,
+ "grad_norm": 0.4703640937805176,
+ "learning_rate": 0.0006,
+ "loss": 4.116531848907471,
+ "step": 6521
+ },
+ {
+ "epoch": 90.58715596330275,
+ "grad_norm": 0.4731002151966095,
+ "learning_rate": 0.0006,
+ "loss": 4.262688636779785,
+ "step": 6522
+ },
+ {
+ "epoch": 90.60113586719092,
+ "grad_norm": 0.46259617805480957,
+ "learning_rate": 0.0006,
+ "loss": 4.232296466827393,
+ "step": 6523
+ },
+ {
+ "epoch": 90.61511577107908,
+ "grad_norm": 0.4426702857017517,
+ "learning_rate": 0.0006,
+ "loss": 4.183609962463379,
+ "step": 6524
+ },
+ {
+ "epoch": 90.62909567496723,
+ "grad_norm": 0.4491911232471466,
+ "learning_rate": 0.0006,
+ "loss": 4.144387722015381,
+ "step": 6525
+ },
+ {
+ "epoch": 90.6430755788554,
+ "grad_norm": 0.47570469975471497,
+ "learning_rate": 0.0006,
+ "loss": 4.108075141906738,
+ "step": 6526
+ },
+ {
+ "epoch": 90.65705548274356,
+ "grad_norm": 0.4894469082355499,
+ "learning_rate": 0.0006,
+ "loss": 4.164253234863281,
+ "step": 6527
+ },
+ {
+ "epoch": 90.67103538663171,
+ "grad_norm": 0.4881099760532379,
+ "learning_rate": 0.0006,
+ "loss": 4.231298446655273,
+ "step": 6528
+ },
+ {
+ "epoch": 90.68501529051987,
+ "grad_norm": 0.5164856314659119,
+ "learning_rate": 0.0006,
+ "loss": 4.18210506439209,
+ "step": 6529
+ },
+ {
+ "epoch": 90.69899519440804,
+ "grad_norm": 0.5575158596038818,
+ "learning_rate": 0.0006,
+ "loss": 4.228113174438477,
+ "step": 6530
+ },
+ {
+ "epoch": 90.7129750982962,
+ "grad_norm": 0.5158578157424927,
+ "learning_rate": 0.0006,
+ "loss": 4.148558139801025,
+ "step": 6531
+ },
+ {
+ "epoch": 90.72695500218435,
+ "grad_norm": 0.5347267389297485,
+ "learning_rate": 0.0006,
+ "loss": 4.262085914611816,
+ "step": 6532
+ },
+ {
+ "epoch": 90.74093490607252,
+ "grad_norm": 0.5480825304985046,
+ "learning_rate": 0.0006,
+ "loss": 4.210175514221191,
+ "step": 6533
+ },
+ {
+ "epoch": 90.75491480996068,
+ "grad_norm": 0.4876071512699127,
+ "learning_rate": 0.0006,
+ "loss": 4.226661682128906,
+ "step": 6534
+ },
+ {
+ "epoch": 90.76889471384884,
+ "grad_norm": 0.4442245066165924,
+ "learning_rate": 0.0006,
+ "loss": 4.147059440612793,
+ "step": 6535
+ },
+ {
+ "epoch": 90.78287461773701,
+ "grad_norm": 0.4756869971752167,
+ "learning_rate": 0.0006,
+ "loss": 4.222451210021973,
+ "step": 6536
+ },
+ {
+ "epoch": 90.79685452162516,
+ "grad_norm": 0.4980628490447998,
+ "learning_rate": 0.0006,
+ "loss": 4.14457893371582,
+ "step": 6537
+ },
+ {
+ "epoch": 90.81083442551332,
+ "grad_norm": 0.4974704086780548,
+ "learning_rate": 0.0006,
+ "loss": 4.182971954345703,
+ "step": 6538
+ },
+ {
+ "epoch": 90.82481432940149,
+ "grad_norm": 0.4811905324459076,
+ "learning_rate": 0.0006,
+ "loss": 4.158481597900391,
+ "step": 6539
+ },
+ {
+ "epoch": 90.83879423328965,
+ "grad_norm": 0.4376634657382965,
+ "learning_rate": 0.0006,
+ "loss": 4.190642356872559,
+ "step": 6540
+ },
+ {
+ "epoch": 90.8527741371778,
+ "grad_norm": 0.42999622225761414,
+ "learning_rate": 0.0006,
+ "loss": 4.194205284118652,
+ "step": 6541
+ },
+ {
+ "epoch": 90.86675404106597,
+ "grad_norm": 0.4321860671043396,
+ "learning_rate": 0.0006,
+ "loss": 4.179698944091797,
+ "step": 6542
+ },
+ {
+ "epoch": 90.88073394495413,
+ "grad_norm": 0.4605638086795807,
+ "learning_rate": 0.0006,
+ "loss": 4.258350849151611,
+ "step": 6543
+ },
+ {
+ "epoch": 90.89471384884229,
+ "grad_norm": 0.4814271330833435,
+ "learning_rate": 0.0006,
+ "loss": 4.198588848114014,
+ "step": 6544
+ },
+ {
+ "epoch": 90.90869375273044,
+ "grad_norm": 0.46291470527648926,
+ "learning_rate": 0.0006,
+ "loss": 4.225842475891113,
+ "step": 6545
+ },
+ {
+ "epoch": 90.92267365661861,
+ "grad_norm": 0.46158573031425476,
+ "learning_rate": 0.0006,
+ "loss": 4.275699615478516,
+ "step": 6546
+ },
+ {
+ "epoch": 90.93665356050677,
+ "grad_norm": 0.4749220311641693,
+ "learning_rate": 0.0006,
+ "loss": 4.217929840087891,
+ "step": 6547
+ },
+ {
+ "epoch": 90.95063346439493,
+ "grad_norm": 0.49371638894081116,
+ "learning_rate": 0.0006,
+ "loss": 4.317490577697754,
+ "step": 6548
+ },
+ {
+ "epoch": 90.9646133682831,
+ "grad_norm": 0.5182164311408997,
+ "learning_rate": 0.0006,
+ "loss": 4.287131309509277,
+ "step": 6549
+ },
+ {
+ "epoch": 90.97859327217125,
+ "grad_norm": 0.504619300365448,
+ "learning_rate": 0.0006,
+ "loss": 4.274943828582764,
+ "step": 6550
+ },
+ {
+ "epoch": 90.99257317605941,
+ "grad_norm": 0.5169302225112915,
+ "learning_rate": 0.0006,
+ "loss": 4.274248123168945,
+ "step": 6551
+ },
+ {
+ "epoch": 91.0,
+ "grad_norm": 0.6098483204841614,
+ "learning_rate": 0.0006,
+ "loss": 4.270262718200684,
+ "step": 6552
+ },
+ {
+ "epoch": 91.0,
+ "eval_loss": 6.456219673156738,
+ "eval_runtime": 60.0476,
+ "eval_samples_per_second": 40.668,
+ "eval_steps_per_second": 2.548,
+ "step": 6552
+ },
+ {
+ "epoch": 91.01397990388816,
+ "grad_norm": 0.6079859733581543,
+ "learning_rate": 0.0006,
+ "loss": 4.244258880615234,
+ "step": 6553
+ },
+ {
+ "epoch": 91.02795980777633,
+ "grad_norm": 0.7200259566307068,
+ "learning_rate": 0.0006,
+ "loss": 4.034396171569824,
+ "step": 6554
+ },
+ {
+ "epoch": 91.04193971166448,
+ "grad_norm": 0.7871384620666504,
+ "learning_rate": 0.0006,
+ "loss": 4.155852317810059,
+ "step": 6555
+ },
+ {
+ "epoch": 91.05591961555264,
+ "grad_norm": 0.7778724431991577,
+ "learning_rate": 0.0006,
+ "loss": 4.049319744110107,
+ "step": 6556
+ },
+ {
+ "epoch": 91.06989951944081,
+ "grad_norm": 0.7762705683708191,
+ "learning_rate": 0.0006,
+ "loss": 4.115581512451172,
+ "step": 6557
+ },
+ {
+ "epoch": 91.08387942332897,
+ "grad_norm": 0.7568512558937073,
+ "learning_rate": 0.0006,
+ "loss": 4.080959320068359,
+ "step": 6558
+ },
+ {
+ "epoch": 91.09785932721712,
+ "grad_norm": 0.6478087306022644,
+ "learning_rate": 0.0006,
+ "loss": 4.1375508308410645,
+ "step": 6559
+ },
+ {
+ "epoch": 91.1118392311053,
+ "grad_norm": 0.5742989778518677,
+ "learning_rate": 0.0006,
+ "loss": 4.13807487487793,
+ "step": 6560
+ },
+ {
+ "epoch": 91.12581913499345,
+ "grad_norm": 0.6028420329093933,
+ "learning_rate": 0.0006,
+ "loss": 4.1374921798706055,
+ "step": 6561
+ },
+ {
+ "epoch": 91.1397990388816,
+ "grad_norm": 0.5676671862602234,
+ "learning_rate": 0.0006,
+ "loss": 4.0767621994018555,
+ "step": 6562
+ },
+ {
+ "epoch": 91.15377894276976,
+ "grad_norm": 0.5676539540290833,
+ "learning_rate": 0.0006,
+ "loss": 4.102802276611328,
+ "step": 6563
+ },
+ {
+ "epoch": 91.16775884665793,
+ "grad_norm": 0.5306137204170227,
+ "learning_rate": 0.0006,
+ "loss": 4.204309940338135,
+ "step": 6564
+ },
+ {
+ "epoch": 91.18173875054609,
+ "grad_norm": 0.5523825883865356,
+ "learning_rate": 0.0006,
+ "loss": 4.0658159255981445,
+ "step": 6565
+ },
+ {
+ "epoch": 91.19571865443424,
+ "grad_norm": 0.56495201587677,
+ "learning_rate": 0.0006,
+ "loss": 4.229331970214844,
+ "step": 6566
+ },
+ {
+ "epoch": 91.20969855832242,
+ "grad_norm": 0.5471879839897156,
+ "learning_rate": 0.0006,
+ "loss": 4.110147953033447,
+ "step": 6567
+ },
+ {
+ "epoch": 91.22367846221057,
+ "grad_norm": 0.5384636521339417,
+ "learning_rate": 0.0006,
+ "loss": 4.152271270751953,
+ "step": 6568
+ },
+ {
+ "epoch": 91.23765836609873,
+ "grad_norm": 0.5355082750320435,
+ "learning_rate": 0.0006,
+ "loss": 4.215263366699219,
+ "step": 6569
+ },
+ {
+ "epoch": 91.2516382699869,
+ "grad_norm": 0.5029492378234863,
+ "learning_rate": 0.0006,
+ "loss": 4.123118877410889,
+ "step": 6570
+ },
+ {
+ "epoch": 91.26561817387505,
+ "grad_norm": 0.5210943222045898,
+ "learning_rate": 0.0006,
+ "loss": 4.098264694213867,
+ "step": 6571
+ },
+ {
+ "epoch": 91.27959807776321,
+ "grad_norm": 0.5714336633682251,
+ "learning_rate": 0.0006,
+ "loss": 4.169662952423096,
+ "step": 6572
+ },
+ {
+ "epoch": 91.29357798165138,
+ "grad_norm": 0.6154706478118896,
+ "learning_rate": 0.0006,
+ "loss": 4.232303619384766,
+ "step": 6573
+ },
+ {
+ "epoch": 91.30755788553954,
+ "grad_norm": 0.6045266389846802,
+ "learning_rate": 0.0006,
+ "loss": 4.15605354309082,
+ "step": 6574
+ },
+ {
+ "epoch": 91.3215377894277,
+ "grad_norm": 0.5881073474884033,
+ "learning_rate": 0.0006,
+ "loss": 4.261946678161621,
+ "step": 6575
+ },
+ {
+ "epoch": 91.33551769331586,
+ "grad_norm": 0.608492374420166,
+ "learning_rate": 0.0006,
+ "loss": 4.181393623352051,
+ "step": 6576
+ },
+ {
+ "epoch": 91.34949759720402,
+ "grad_norm": 0.6032509803771973,
+ "learning_rate": 0.0006,
+ "loss": 4.177850723266602,
+ "step": 6577
+ },
+ {
+ "epoch": 91.36347750109218,
+ "grad_norm": 0.5491278767585754,
+ "learning_rate": 0.0006,
+ "loss": 4.170995712280273,
+ "step": 6578
+ },
+ {
+ "epoch": 91.37745740498035,
+ "grad_norm": 0.5672101974487305,
+ "learning_rate": 0.0006,
+ "loss": 4.231545448303223,
+ "step": 6579
+ },
+ {
+ "epoch": 91.3914373088685,
+ "grad_norm": 0.6280085444450378,
+ "learning_rate": 0.0006,
+ "loss": 4.192296028137207,
+ "step": 6580
+ },
+ {
+ "epoch": 91.40541721275666,
+ "grad_norm": 0.5944945216178894,
+ "learning_rate": 0.0006,
+ "loss": 4.0988969802856445,
+ "step": 6581
+ },
+ {
+ "epoch": 91.41939711664482,
+ "grad_norm": 0.49758782982826233,
+ "learning_rate": 0.0006,
+ "loss": 4.117204189300537,
+ "step": 6582
+ },
+ {
+ "epoch": 91.43337702053299,
+ "grad_norm": 0.5350571274757385,
+ "learning_rate": 0.0006,
+ "loss": 4.22514533996582,
+ "step": 6583
+ },
+ {
+ "epoch": 91.44735692442114,
+ "grad_norm": 0.5463851094245911,
+ "learning_rate": 0.0006,
+ "loss": 4.234988212585449,
+ "step": 6584
+ },
+ {
+ "epoch": 91.4613368283093,
+ "grad_norm": 0.49137967824935913,
+ "learning_rate": 0.0006,
+ "loss": 4.1259918212890625,
+ "step": 6585
+ },
+ {
+ "epoch": 91.47531673219747,
+ "grad_norm": 0.4858478903770447,
+ "learning_rate": 0.0006,
+ "loss": 4.17650842666626,
+ "step": 6586
+ },
+ {
+ "epoch": 91.48929663608563,
+ "grad_norm": 0.48751482367515564,
+ "learning_rate": 0.0006,
+ "loss": 4.1488447189331055,
+ "step": 6587
+ },
+ {
+ "epoch": 91.50327653997378,
+ "grad_norm": 0.48649269342422485,
+ "learning_rate": 0.0006,
+ "loss": 4.138950347900391,
+ "step": 6588
+ },
+ {
+ "epoch": 91.51725644386195,
+ "grad_norm": 0.4758029878139496,
+ "learning_rate": 0.0006,
+ "loss": 4.167637825012207,
+ "step": 6589
+ },
+ {
+ "epoch": 91.53123634775011,
+ "grad_norm": 0.46663451194763184,
+ "learning_rate": 0.0006,
+ "loss": 4.071398735046387,
+ "step": 6590
+ },
+ {
+ "epoch": 91.54521625163827,
+ "grad_norm": 0.4612772762775421,
+ "learning_rate": 0.0006,
+ "loss": 4.144865036010742,
+ "step": 6591
+ },
+ {
+ "epoch": 91.55919615552644,
+ "grad_norm": 0.4695148169994354,
+ "learning_rate": 0.0006,
+ "loss": 4.139881134033203,
+ "step": 6592
+ },
+ {
+ "epoch": 91.57317605941459,
+ "grad_norm": 0.48135271668434143,
+ "learning_rate": 0.0006,
+ "loss": 4.167233467102051,
+ "step": 6593
+ },
+ {
+ "epoch": 91.58715596330275,
+ "grad_norm": 0.5033000707626343,
+ "learning_rate": 0.0006,
+ "loss": 4.166445732116699,
+ "step": 6594
+ },
+ {
+ "epoch": 91.60113586719092,
+ "grad_norm": 0.4646996557712555,
+ "learning_rate": 0.0006,
+ "loss": 4.17877721786499,
+ "step": 6595
+ },
+ {
+ "epoch": 91.61511577107908,
+ "grad_norm": 0.45358705520629883,
+ "learning_rate": 0.0006,
+ "loss": 4.201140403747559,
+ "step": 6596
+ },
+ {
+ "epoch": 91.62909567496723,
+ "grad_norm": 0.45453503727912903,
+ "learning_rate": 0.0006,
+ "loss": 4.249351501464844,
+ "step": 6597
+ },
+ {
+ "epoch": 91.6430755788554,
+ "grad_norm": 0.45279616117477417,
+ "learning_rate": 0.0006,
+ "loss": 4.163040637969971,
+ "step": 6598
+ },
+ {
+ "epoch": 91.65705548274356,
+ "grad_norm": 0.46521562337875366,
+ "learning_rate": 0.0006,
+ "loss": 4.315350532531738,
+ "step": 6599
+ },
+ {
+ "epoch": 91.67103538663171,
+ "grad_norm": 0.4669588506221771,
+ "learning_rate": 0.0006,
+ "loss": 4.141858100891113,
+ "step": 6600
+ },
+ {
+ "epoch": 91.68501529051987,
+ "grad_norm": 0.4884856939315796,
+ "learning_rate": 0.0006,
+ "loss": 4.149525165557861,
+ "step": 6601
+ },
+ {
+ "epoch": 91.69899519440804,
+ "grad_norm": 0.49149787425994873,
+ "learning_rate": 0.0006,
+ "loss": 4.168375015258789,
+ "step": 6602
+ },
+ {
+ "epoch": 91.7129750982962,
+ "grad_norm": 0.49810677766799927,
+ "learning_rate": 0.0006,
+ "loss": 4.066099166870117,
+ "step": 6603
+ },
+ {
+ "epoch": 91.72695500218435,
+ "grad_norm": 0.4675672948360443,
+ "learning_rate": 0.0006,
+ "loss": 4.191736221313477,
+ "step": 6604
+ },
+ {
+ "epoch": 91.74093490607252,
+ "grad_norm": 0.4815864562988281,
+ "learning_rate": 0.0006,
+ "loss": 4.2276716232299805,
+ "step": 6605
+ },
+ {
+ "epoch": 91.75491480996068,
+ "grad_norm": 0.4676399528980255,
+ "learning_rate": 0.0006,
+ "loss": 4.179114818572998,
+ "step": 6606
+ },
+ {
+ "epoch": 91.76889471384884,
+ "grad_norm": 0.43563583493232727,
+ "learning_rate": 0.0006,
+ "loss": 4.153409004211426,
+ "step": 6607
+ },
+ {
+ "epoch": 91.78287461773701,
+ "grad_norm": 0.45204871892929077,
+ "learning_rate": 0.0006,
+ "loss": 4.255942344665527,
+ "step": 6608
+ },
+ {
+ "epoch": 91.79685452162516,
+ "grad_norm": 0.4372783899307251,
+ "learning_rate": 0.0006,
+ "loss": 4.1546735763549805,
+ "step": 6609
+ },
+ {
+ "epoch": 91.81083442551332,
+ "grad_norm": 0.4686015546321869,
+ "learning_rate": 0.0006,
+ "loss": 4.252612113952637,
+ "step": 6610
+ },
+ {
+ "epoch": 91.82481432940149,
+ "grad_norm": 0.4720774292945862,
+ "learning_rate": 0.0006,
+ "loss": 4.244714736938477,
+ "step": 6611
+ },
+ {
+ "epoch": 91.83879423328965,
+ "grad_norm": 0.46509850025177,
+ "learning_rate": 0.0006,
+ "loss": 4.152102470397949,
+ "step": 6612
+ },
+ {
+ "epoch": 91.8527741371778,
+ "grad_norm": 0.4156970679759979,
+ "learning_rate": 0.0006,
+ "loss": 4.135519981384277,
+ "step": 6613
+ },
+ {
+ "epoch": 91.86675404106597,
+ "grad_norm": 0.42507460713386536,
+ "learning_rate": 0.0006,
+ "loss": 4.1698808670043945,
+ "step": 6614
+ },
+ {
+ "epoch": 91.88073394495413,
+ "grad_norm": 0.4491443336009979,
+ "learning_rate": 0.0006,
+ "loss": 4.215681076049805,
+ "step": 6615
+ },
+ {
+ "epoch": 91.89471384884229,
+ "grad_norm": 0.4253392219543457,
+ "learning_rate": 0.0006,
+ "loss": 4.241162300109863,
+ "step": 6616
+ },
+ {
+ "epoch": 91.90869375273044,
+ "grad_norm": 0.4186265170574188,
+ "learning_rate": 0.0006,
+ "loss": 4.219512939453125,
+ "step": 6617
+ },
+ {
+ "epoch": 91.92267365661861,
+ "grad_norm": 0.4518965184688568,
+ "learning_rate": 0.0006,
+ "loss": 4.27060604095459,
+ "step": 6618
+ },
+ {
+ "epoch": 91.93665356050677,
+ "grad_norm": 0.5045844912528992,
+ "learning_rate": 0.0006,
+ "loss": 4.225786209106445,
+ "step": 6619
+ },
+ {
+ "epoch": 91.95063346439493,
+ "grad_norm": 0.4688360393047333,
+ "learning_rate": 0.0006,
+ "loss": 4.243875026702881,
+ "step": 6620
+ },
+ {
+ "epoch": 91.9646133682831,
+ "grad_norm": 0.4428872764110565,
+ "learning_rate": 0.0006,
+ "loss": 4.283898830413818,
+ "step": 6621
+ },
+ {
+ "epoch": 91.97859327217125,
+ "grad_norm": 0.43714380264282227,
+ "learning_rate": 0.0006,
+ "loss": 4.210933685302734,
+ "step": 6622
+ },
+ {
+ "epoch": 91.99257317605941,
+ "grad_norm": 0.45449599623680115,
+ "learning_rate": 0.0006,
+ "loss": 4.220334053039551,
+ "step": 6623
+ },
+ {
+ "epoch": 92.0,
+ "grad_norm": 0.5236840844154358,
+ "learning_rate": 0.0006,
+ "loss": 4.171074867248535,
+ "step": 6624
+ },
+ {
+ "epoch": 92.0,
+ "eval_loss": 6.469951152801514,
+ "eval_runtime": 60.1801,
+ "eval_samples_per_second": 40.578,
+ "eval_steps_per_second": 2.542,
+ "step": 6624
+ },
+ {
+ "epoch": 92.01397990388816,
+ "grad_norm": 0.4578283131122589,
+ "learning_rate": 0.0006,
+ "loss": 4.140115737915039,
+ "step": 6625
+ },
+ {
+ "epoch": 92.02795980777633,
+ "grad_norm": 0.5099372267723083,
+ "learning_rate": 0.0006,
+ "loss": 4.168883323669434,
+ "step": 6626
+ },
+ {
+ "epoch": 92.04193971166448,
+ "grad_norm": 0.5126843452453613,
+ "learning_rate": 0.0006,
+ "loss": 4.073880195617676,
+ "step": 6627
+ },
+ {
+ "epoch": 92.05591961555264,
+ "grad_norm": 0.5174735188484192,
+ "learning_rate": 0.0006,
+ "loss": 4.0006937980651855,
+ "step": 6628
+ },
+ {
+ "epoch": 92.06989951944081,
+ "grad_norm": 0.5243334174156189,
+ "learning_rate": 0.0006,
+ "loss": 4.062863349914551,
+ "step": 6629
+ },
+ {
+ "epoch": 92.08387942332897,
+ "grad_norm": 0.5552330017089844,
+ "learning_rate": 0.0006,
+ "loss": 4.073331832885742,
+ "step": 6630
+ },
+ {
+ "epoch": 92.09785932721712,
+ "grad_norm": 0.5973173975944519,
+ "learning_rate": 0.0006,
+ "loss": 4.131340503692627,
+ "step": 6631
+ },
+ {
+ "epoch": 92.1118392311053,
+ "grad_norm": 0.6493992209434509,
+ "learning_rate": 0.0006,
+ "loss": 4.156520843505859,
+ "step": 6632
+ },
+ {
+ "epoch": 92.12581913499345,
+ "grad_norm": 0.7461282014846802,
+ "learning_rate": 0.0006,
+ "loss": 4.183758735656738,
+ "step": 6633
+ },
+ {
+ "epoch": 92.1397990388816,
+ "grad_norm": 0.9166005849838257,
+ "learning_rate": 0.0006,
+ "loss": 4.18237829208374,
+ "step": 6634
+ },
+ {
+ "epoch": 92.15377894276976,
+ "grad_norm": 1.1280368566513062,
+ "learning_rate": 0.0006,
+ "loss": 4.091880798339844,
+ "step": 6635
+ },
+ {
+ "epoch": 92.16775884665793,
+ "grad_norm": 0.7857232689857483,
+ "learning_rate": 0.0006,
+ "loss": 4.107316017150879,
+ "step": 6636
+ },
+ {
+ "epoch": 92.18173875054609,
+ "grad_norm": 0.5997909903526306,
+ "learning_rate": 0.0006,
+ "loss": 4.103518486022949,
+ "step": 6637
+ },
+ {
+ "epoch": 92.19571865443424,
+ "grad_norm": 0.5990561246871948,
+ "learning_rate": 0.0006,
+ "loss": 4.14054536819458,
+ "step": 6638
+ },
+ {
+ "epoch": 92.20969855832242,
+ "grad_norm": 0.632889986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.177820682525635,
+ "step": 6639
+ },
+ {
+ "epoch": 92.22367846221057,
+ "grad_norm": 0.6220619678497314,
+ "learning_rate": 0.0006,
+ "loss": 4.147603511810303,
+ "step": 6640
+ },
+ {
+ "epoch": 92.23765836609873,
+ "grad_norm": 0.5856587290763855,
+ "learning_rate": 0.0006,
+ "loss": 4.119329452514648,
+ "step": 6641
+ },
+ {
+ "epoch": 92.2516382699869,
+ "grad_norm": 0.549945056438446,
+ "learning_rate": 0.0006,
+ "loss": 4.156400680541992,
+ "step": 6642
+ },
+ {
+ "epoch": 92.26561817387505,
+ "grad_norm": 0.5227542519569397,
+ "learning_rate": 0.0006,
+ "loss": 4.035444259643555,
+ "step": 6643
+ },
+ {
+ "epoch": 92.27959807776321,
+ "grad_norm": 0.49789872765541077,
+ "learning_rate": 0.0006,
+ "loss": 4.12019157409668,
+ "step": 6644
+ },
+ {
+ "epoch": 92.29357798165138,
+ "grad_norm": 0.48676368594169617,
+ "learning_rate": 0.0006,
+ "loss": 4.182903289794922,
+ "step": 6645
+ },
+ {
+ "epoch": 92.30755788553954,
+ "grad_norm": 0.5225623250007629,
+ "learning_rate": 0.0006,
+ "loss": 4.195018291473389,
+ "step": 6646
+ },
+ {
+ "epoch": 92.3215377894277,
+ "grad_norm": 0.4998515546321869,
+ "learning_rate": 0.0006,
+ "loss": 4.091945171356201,
+ "step": 6647
+ },
+ {
+ "epoch": 92.33551769331586,
+ "grad_norm": 0.49748051166534424,
+ "learning_rate": 0.0006,
+ "loss": 4.154091835021973,
+ "step": 6648
+ },
+ {
+ "epoch": 92.34949759720402,
+ "grad_norm": 0.4642797112464905,
+ "learning_rate": 0.0006,
+ "loss": 4.182038307189941,
+ "step": 6649
+ },
+ {
+ "epoch": 92.36347750109218,
+ "grad_norm": 0.46340835094451904,
+ "learning_rate": 0.0006,
+ "loss": 4.126245021820068,
+ "step": 6650
+ },
+ {
+ "epoch": 92.37745740498035,
+ "grad_norm": 0.47189947962760925,
+ "learning_rate": 0.0006,
+ "loss": 4.184294700622559,
+ "step": 6651
+ },
+ {
+ "epoch": 92.3914373088685,
+ "grad_norm": 0.4667476415634155,
+ "learning_rate": 0.0006,
+ "loss": 4.135210037231445,
+ "step": 6652
+ },
+ {
+ "epoch": 92.40541721275666,
+ "grad_norm": 0.46386849880218506,
+ "learning_rate": 0.0006,
+ "loss": 4.149093151092529,
+ "step": 6653
+ },
+ {
+ "epoch": 92.41939711664482,
+ "grad_norm": 0.47531789541244507,
+ "learning_rate": 0.0006,
+ "loss": 4.159546375274658,
+ "step": 6654
+ },
+ {
+ "epoch": 92.43337702053299,
+ "grad_norm": 0.46878159046173096,
+ "learning_rate": 0.0006,
+ "loss": 4.169180870056152,
+ "step": 6655
+ },
+ {
+ "epoch": 92.44735692442114,
+ "grad_norm": 0.4516764283180237,
+ "learning_rate": 0.0006,
+ "loss": 4.170878887176514,
+ "step": 6656
+ },
+ {
+ "epoch": 92.4613368283093,
+ "grad_norm": 0.4563509225845337,
+ "learning_rate": 0.0006,
+ "loss": 4.086219787597656,
+ "step": 6657
+ },
+ {
+ "epoch": 92.47531673219747,
+ "grad_norm": 0.4740903675556183,
+ "learning_rate": 0.0006,
+ "loss": 4.189017295837402,
+ "step": 6658
+ },
+ {
+ "epoch": 92.48929663608563,
+ "grad_norm": 0.47601571679115295,
+ "learning_rate": 0.0006,
+ "loss": 4.098438262939453,
+ "step": 6659
+ },
+ {
+ "epoch": 92.50327653997378,
+ "grad_norm": 0.44878366589546204,
+ "learning_rate": 0.0006,
+ "loss": 4.067294120788574,
+ "step": 6660
+ },
+ {
+ "epoch": 92.51725644386195,
+ "grad_norm": 0.44078147411346436,
+ "learning_rate": 0.0006,
+ "loss": 4.135817527770996,
+ "step": 6661
+ },
+ {
+ "epoch": 92.53123634775011,
+ "grad_norm": 0.4626833200454712,
+ "learning_rate": 0.0006,
+ "loss": 4.2014970779418945,
+ "step": 6662
+ },
+ {
+ "epoch": 92.54521625163827,
+ "grad_norm": 0.4998042583465576,
+ "learning_rate": 0.0006,
+ "loss": 4.209102630615234,
+ "step": 6663
+ },
+ {
+ "epoch": 92.55919615552644,
+ "grad_norm": 0.494067519903183,
+ "learning_rate": 0.0006,
+ "loss": 4.155250549316406,
+ "step": 6664
+ },
+ {
+ "epoch": 92.57317605941459,
+ "grad_norm": 0.47396165132522583,
+ "learning_rate": 0.0006,
+ "loss": 4.0804853439331055,
+ "step": 6665
+ },
+ {
+ "epoch": 92.58715596330275,
+ "grad_norm": 0.45193102955818176,
+ "learning_rate": 0.0006,
+ "loss": 4.221559524536133,
+ "step": 6666
+ },
+ {
+ "epoch": 92.60113586719092,
+ "grad_norm": 0.44620129466056824,
+ "learning_rate": 0.0006,
+ "loss": 4.140511512756348,
+ "step": 6667
+ },
+ {
+ "epoch": 92.61511577107908,
+ "grad_norm": 0.4855911135673523,
+ "learning_rate": 0.0006,
+ "loss": 4.209200859069824,
+ "step": 6668
+ },
+ {
+ "epoch": 92.62909567496723,
+ "grad_norm": 0.4701981544494629,
+ "learning_rate": 0.0006,
+ "loss": 4.2988457679748535,
+ "step": 6669
+ },
+ {
+ "epoch": 92.6430755788554,
+ "grad_norm": 0.45931628346443176,
+ "learning_rate": 0.0006,
+ "loss": 4.146129608154297,
+ "step": 6670
+ },
+ {
+ "epoch": 92.65705548274356,
+ "grad_norm": 0.45640164613723755,
+ "learning_rate": 0.0006,
+ "loss": 4.359881401062012,
+ "step": 6671
+ },
+ {
+ "epoch": 92.67103538663171,
+ "grad_norm": 0.4532800614833832,
+ "learning_rate": 0.0006,
+ "loss": 4.156559467315674,
+ "step": 6672
+ },
+ {
+ "epoch": 92.68501529051987,
+ "grad_norm": 0.44602230191230774,
+ "learning_rate": 0.0006,
+ "loss": 4.209829807281494,
+ "step": 6673
+ },
+ {
+ "epoch": 92.69899519440804,
+ "grad_norm": 0.45484063029289246,
+ "learning_rate": 0.0006,
+ "loss": 4.192949295043945,
+ "step": 6674
+ },
+ {
+ "epoch": 92.7129750982962,
+ "grad_norm": 0.43604379892349243,
+ "learning_rate": 0.0006,
+ "loss": 4.191207408905029,
+ "step": 6675
+ },
+ {
+ "epoch": 92.72695500218435,
+ "grad_norm": 0.4281303584575653,
+ "learning_rate": 0.0006,
+ "loss": 4.169486999511719,
+ "step": 6676
+ },
+ {
+ "epoch": 92.74093490607252,
+ "grad_norm": 0.4356819987297058,
+ "learning_rate": 0.0006,
+ "loss": 4.1370086669921875,
+ "step": 6677
+ },
+ {
+ "epoch": 92.75491480996068,
+ "grad_norm": 0.44613754749298096,
+ "learning_rate": 0.0006,
+ "loss": 4.187329292297363,
+ "step": 6678
+ },
+ {
+ "epoch": 92.76889471384884,
+ "grad_norm": 0.45790401101112366,
+ "learning_rate": 0.0006,
+ "loss": 4.236572265625,
+ "step": 6679
+ },
+ {
+ "epoch": 92.78287461773701,
+ "grad_norm": 0.45107555389404297,
+ "learning_rate": 0.0006,
+ "loss": 4.242689609527588,
+ "step": 6680
+ },
+ {
+ "epoch": 92.79685452162516,
+ "grad_norm": 0.4225943088531494,
+ "learning_rate": 0.0006,
+ "loss": 4.1806960105896,
+ "step": 6681
+ },
+ {
+ "epoch": 92.81083442551332,
+ "grad_norm": 0.4351981580257416,
+ "learning_rate": 0.0006,
+ "loss": 4.198762893676758,
+ "step": 6682
+ },
+ {
+ "epoch": 92.82481432940149,
+ "grad_norm": 0.4404393434524536,
+ "learning_rate": 0.0006,
+ "loss": 4.174687385559082,
+ "step": 6683
+ },
+ {
+ "epoch": 92.83879423328965,
+ "grad_norm": 0.4501766562461853,
+ "learning_rate": 0.0006,
+ "loss": 4.20904016494751,
+ "step": 6684
+ },
+ {
+ "epoch": 92.8527741371778,
+ "grad_norm": 0.4487316906452179,
+ "learning_rate": 0.0006,
+ "loss": 4.23588752746582,
+ "step": 6685
+ },
+ {
+ "epoch": 92.86675404106597,
+ "grad_norm": 0.4303079843521118,
+ "learning_rate": 0.0006,
+ "loss": 4.194258213043213,
+ "step": 6686
+ },
+ {
+ "epoch": 92.88073394495413,
+ "grad_norm": 0.43563830852508545,
+ "learning_rate": 0.0006,
+ "loss": 4.275378227233887,
+ "step": 6687
+ },
+ {
+ "epoch": 92.89471384884229,
+ "grad_norm": 0.4283250868320465,
+ "learning_rate": 0.0006,
+ "loss": 4.225555419921875,
+ "step": 6688
+ },
+ {
+ "epoch": 92.90869375273044,
+ "grad_norm": 0.4105052649974823,
+ "learning_rate": 0.0006,
+ "loss": 4.204162120819092,
+ "step": 6689
+ },
+ {
+ "epoch": 92.92267365661861,
+ "grad_norm": 0.4446575343608856,
+ "learning_rate": 0.0006,
+ "loss": 4.2873358726501465,
+ "step": 6690
+ },
+ {
+ "epoch": 92.93665356050677,
+ "grad_norm": 0.45260751247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.243109703063965,
+ "step": 6691
+ },
+ {
+ "epoch": 92.95063346439493,
+ "grad_norm": 0.4449608623981476,
+ "learning_rate": 0.0006,
+ "loss": 4.176984786987305,
+ "step": 6692
+ },
+ {
+ "epoch": 92.9646133682831,
+ "grad_norm": 0.43001097440719604,
+ "learning_rate": 0.0006,
+ "loss": 4.21728515625,
+ "step": 6693
+ },
+ {
+ "epoch": 92.97859327217125,
+ "grad_norm": 0.46151459217071533,
+ "learning_rate": 0.0006,
+ "loss": 4.252613067626953,
+ "step": 6694
+ },
+ {
+ "epoch": 92.99257317605941,
+ "grad_norm": 0.4348209500312805,
+ "learning_rate": 0.0006,
+ "loss": 4.17473840713501,
+ "step": 6695
+ },
+ {
+ "epoch": 93.0,
+ "grad_norm": 0.5008269548416138,
+ "learning_rate": 0.0006,
+ "loss": 4.233550548553467,
+ "step": 6696
+ },
+ {
+ "epoch": 93.0,
+ "eval_loss": 6.519959926605225,
+ "eval_runtime": 63.3251,
+ "eval_samples_per_second": 38.563,
+ "eval_steps_per_second": 2.416,
+ "step": 6696
+ },
+ {
+ "epoch": 93.01397990388816,
+ "grad_norm": 0.4617251455783844,
+ "learning_rate": 0.0006,
+ "loss": 4.085988998413086,
+ "step": 6697
+ },
+ {
+ "epoch": 93.02795980777633,
+ "grad_norm": 0.5370984077453613,
+ "learning_rate": 0.0006,
+ "loss": 4.075861930847168,
+ "step": 6698
+ },
+ {
+ "epoch": 93.04193971166448,
+ "grad_norm": 0.5422016978263855,
+ "learning_rate": 0.0006,
+ "loss": 4.158822059631348,
+ "step": 6699
+ },
+ {
+ "epoch": 93.05591961555264,
+ "grad_norm": 0.5784112215042114,
+ "learning_rate": 0.0006,
+ "loss": 4.097670555114746,
+ "step": 6700
+ },
+ {
+ "epoch": 93.06989951944081,
+ "grad_norm": 0.6625284552574158,
+ "learning_rate": 0.0006,
+ "loss": 4.0941572189331055,
+ "step": 6701
+ },
+ {
+ "epoch": 93.08387942332897,
+ "grad_norm": 0.732620120048523,
+ "learning_rate": 0.0006,
+ "loss": 4.102657318115234,
+ "step": 6702
+ },
+ {
+ "epoch": 93.09785932721712,
+ "grad_norm": 0.8737137913703918,
+ "learning_rate": 0.0006,
+ "loss": 4.072106838226318,
+ "step": 6703
+ },
+ {
+ "epoch": 93.1118392311053,
+ "grad_norm": 1.1315202713012695,
+ "learning_rate": 0.0006,
+ "loss": 4.178171157836914,
+ "step": 6704
+ },
+ {
+ "epoch": 93.12581913499345,
+ "grad_norm": 0.9865092635154724,
+ "learning_rate": 0.0006,
+ "loss": 4.220589637756348,
+ "step": 6705
+ },
+ {
+ "epoch": 93.1397990388816,
+ "grad_norm": 0.95701664686203,
+ "learning_rate": 0.0006,
+ "loss": 4.210036754608154,
+ "step": 6706
+ },
+ {
+ "epoch": 93.15377894276976,
+ "grad_norm": 0.8259546160697937,
+ "learning_rate": 0.0006,
+ "loss": 4.109549522399902,
+ "step": 6707
+ },
+ {
+ "epoch": 93.16775884665793,
+ "grad_norm": 0.6793416142463684,
+ "learning_rate": 0.0006,
+ "loss": 4.204812049865723,
+ "step": 6708
+ },
+ {
+ "epoch": 93.18173875054609,
+ "grad_norm": 0.5950173139572144,
+ "learning_rate": 0.0006,
+ "loss": 4.097187042236328,
+ "step": 6709
+ },
+ {
+ "epoch": 93.19571865443424,
+ "grad_norm": 0.5783600211143494,
+ "learning_rate": 0.0006,
+ "loss": 4.093636512756348,
+ "step": 6710
+ },
+ {
+ "epoch": 93.20969855832242,
+ "grad_norm": 0.6058599352836609,
+ "learning_rate": 0.0006,
+ "loss": 4.152331352233887,
+ "step": 6711
+ },
+ {
+ "epoch": 93.22367846221057,
+ "grad_norm": 0.5733161568641663,
+ "learning_rate": 0.0006,
+ "loss": 4.188261985778809,
+ "step": 6712
+ },
+ {
+ "epoch": 93.23765836609873,
+ "grad_norm": 0.518713116645813,
+ "learning_rate": 0.0006,
+ "loss": 4.121092796325684,
+ "step": 6713
+ },
+ {
+ "epoch": 93.2516382699869,
+ "grad_norm": 0.5400905013084412,
+ "learning_rate": 0.0006,
+ "loss": 4.172319412231445,
+ "step": 6714
+ },
+ {
+ "epoch": 93.26561817387505,
+ "grad_norm": 0.5308226943016052,
+ "learning_rate": 0.0006,
+ "loss": 4.153152942657471,
+ "step": 6715
+ },
+ {
+ "epoch": 93.27959807776321,
+ "grad_norm": 0.5869466066360474,
+ "learning_rate": 0.0006,
+ "loss": 4.132747650146484,
+ "step": 6716
+ },
+ {
+ "epoch": 93.29357798165138,
+ "grad_norm": 0.5807886123657227,
+ "learning_rate": 0.0006,
+ "loss": 4.114269256591797,
+ "step": 6717
+ },
+ {
+ "epoch": 93.30755788553954,
+ "grad_norm": 0.5260794758796692,
+ "learning_rate": 0.0006,
+ "loss": 4.170077800750732,
+ "step": 6718
+ },
+ {
+ "epoch": 93.3215377894277,
+ "grad_norm": 0.5076675415039062,
+ "learning_rate": 0.0006,
+ "loss": 4.153864860534668,
+ "step": 6719
+ },
+ {
+ "epoch": 93.33551769331586,
+ "grad_norm": 0.527502715587616,
+ "learning_rate": 0.0006,
+ "loss": 4.137730598449707,
+ "step": 6720
+ },
+ {
+ "epoch": 93.34949759720402,
+ "grad_norm": 0.5096501708030701,
+ "learning_rate": 0.0006,
+ "loss": 4.078490257263184,
+ "step": 6721
+ },
+ {
+ "epoch": 93.36347750109218,
+ "grad_norm": 0.4965399503707886,
+ "learning_rate": 0.0006,
+ "loss": 4.188817024230957,
+ "step": 6722
+ },
+ {
+ "epoch": 93.37745740498035,
+ "grad_norm": 0.470617413520813,
+ "learning_rate": 0.0006,
+ "loss": 4.198916435241699,
+ "step": 6723
+ },
+ {
+ "epoch": 93.3914373088685,
+ "grad_norm": 0.5136640667915344,
+ "learning_rate": 0.0006,
+ "loss": 4.1623992919921875,
+ "step": 6724
+ },
+ {
+ "epoch": 93.40541721275666,
+ "grad_norm": 0.4889892041683197,
+ "learning_rate": 0.0006,
+ "loss": 4.1161298751831055,
+ "step": 6725
+ },
+ {
+ "epoch": 93.41939711664482,
+ "grad_norm": 0.48139041662216187,
+ "learning_rate": 0.0006,
+ "loss": 4.1785783767700195,
+ "step": 6726
+ },
+ {
+ "epoch": 93.43337702053299,
+ "grad_norm": 0.4519556164741516,
+ "learning_rate": 0.0006,
+ "loss": 4.106186389923096,
+ "step": 6727
+ },
+ {
+ "epoch": 93.44735692442114,
+ "grad_norm": 0.45652639865875244,
+ "learning_rate": 0.0006,
+ "loss": 4.187058448791504,
+ "step": 6728
+ },
+ {
+ "epoch": 93.4613368283093,
+ "grad_norm": 0.48742297291755676,
+ "learning_rate": 0.0006,
+ "loss": 4.203413486480713,
+ "step": 6729
+ },
+ {
+ "epoch": 93.47531673219747,
+ "grad_norm": 0.4952318072319031,
+ "learning_rate": 0.0006,
+ "loss": 4.185919761657715,
+ "step": 6730
+ },
+ {
+ "epoch": 93.48929663608563,
+ "grad_norm": 0.48744967579841614,
+ "learning_rate": 0.0006,
+ "loss": 4.184289932250977,
+ "step": 6731
+ },
+ {
+ "epoch": 93.50327653997378,
+ "grad_norm": 0.4749008119106293,
+ "learning_rate": 0.0006,
+ "loss": 4.119291305541992,
+ "step": 6732
+ },
+ {
+ "epoch": 93.51725644386195,
+ "grad_norm": 0.4655332565307617,
+ "learning_rate": 0.0006,
+ "loss": 4.153029441833496,
+ "step": 6733
+ },
+ {
+ "epoch": 93.53123634775011,
+ "grad_norm": 0.4466649889945984,
+ "learning_rate": 0.0006,
+ "loss": 4.088071823120117,
+ "step": 6734
+ },
+ {
+ "epoch": 93.54521625163827,
+ "grad_norm": 0.443222314119339,
+ "learning_rate": 0.0006,
+ "loss": 4.084128379821777,
+ "step": 6735
+ },
+ {
+ "epoch": 93.55919615552644,
+ "grad_norm": 0.462419718503952,
+ "learning_rate": 0.0006,
+ "loss": 4.1618194580078125,
+ "step": 6736
+ },
+ {
+ "epoch": 93.57317605941459,
+ "grad_norm": 0.4391580820083618,
+ "learning_rate": 0.0006,
+ "loss": 4.1149091720581055,
+ "step": 6737
+ },
+ {
+ "epoch": 93.58715596330275,
+ "grad_norm": 0.42679905891418457,
+ "learning_rate": 0.0006,
+ "loss": 4.204461097717285,
+ "step": 6738
+ },
+ {
+ "epoch": 93.60113586719092,
+ "grad_norm": 0.43574175238609314,
+ "learning_rate": 0.0006,
+ "loss": 4.170613765716553,
+ "step": 6739
+ },
+ {
+ "epoch": 93.61511577107908,
+ "grad_norm": 0.4494042992591858,
+ "learning_rate": 0.0006,
+ "loss": 4.184232711791992,
+ "step": 6740
+ },
+ {
+ "epoch": 93.62909567496723,
+ "grad_norm": 0.4476962089538574,
+ "learning_rate": 0.0006,
+ "loss": 4.214268684387207,
+ "step": 6741
+ },
+ {
+ "epoch": 93.6430755788554,
+ "grad_norm": 0.45630091428756714,
+ "learning_rate": 0.0006,
+ "loss": 4.092458724975586,
+ "step": 6742
+ },
+ {
+ "epoch": 93.65705548274356,
+ "grad_norm": 0.46159541606903076,
+ "learning_rate": 0.0006,
+ "loss": 4.104642391204834,
+ "step": 6743
+ },
+ {
+ "epoch": 93.67103538663171,
+ "grad_norm": 0.470024049282074,
+ "learning_rate": 0.0006,
+ "loss": 4.1928558349609375,
+ "step": 6744
+ },
+ {
+ "epoch": 93.68501529051987,
+ "grad_norm": 0.4541080594062805,
+ "learning_rate": 0.0006,
+ "loss": 4.209540843963623,
+ "step": 6745
+ },
+ {
+ "epoch": 93.69899519440804,
+ "grad_norm": 0.43244633078575134,
+ "learning_rate": 0.0006,
+ "loss": 4.137758255004883,
+ "step": 6746
+ },
+ {
+ "epoch": 93.7129750982962,
+ "grad_norm": 0.43841874599456787,
+ "learning_rate": 0.0006,
+ "loss": 4.168188571929932,
+ "step": 6747
+ },
+ {
+ "epoch": 93.72695500218435,
+ "grad_norm": 0.4578094482421875,
+ "learning_rate": 0.0006,
+ "loss": 4.161255836486816,
+ "step": 6748
+ },
+ {
+ "epoch": 93.74093490607252,
+ "grad_norm": 0.4311692714691162,
+ "learning_rate": 0.0006,
+ "loss": 4.198974609375,
+ "step": 6749
+ },
+ {
+ "epoch": 93.75491480996068,
+ "grad_norm": 0.4296444356441498,
+ "learning_rate": 0.0006,
+ "loss": 4.163196563720703,
+ "step": 6750
+ },
+ {
+ "epoch": 93.76889471384884,
+ "grad_norm": 0.44610607624053955,
+ "learning_rate": 0.0006,
+ "loss": 4.199775695800781,
+ "step": 6751
+ },
+ {
+ "epoch": 93.78287461773701,
+ "grad_norm": 0.4333937168121338,
+ "learning_rate": 0.0006,
+ "loss": 4.202628135681152,
+ "step": 6752
+ },
+ {
+ "epoch": 93.79685452162516,
+ "grad_norm": 0.4453052580356598,
+ "learning_rate": 0.0006,
+ "loss": 4.191913604736328,
+ "step": 6753
+ },
+ {
+ "epoch": 93.81083442551332,
+ "grad_norm": 0.4554404616355896,
+ "learning_rate": 0.0006,
+ "loss": 4.1654052734375,
+ "step": 6754
+ },
+ {
+ "epoch": 93.82481432940149,
+ "grad_norm": 0.4619498550891876,
+ "learning_rate": 0.0006,
+ "loss": 4.251041889190674,
+ "step": 6755
+ },
+ {
+ "epoch": 93.83879423328965,
+ "grad_norm": 0.4444896876811981,
+ "learning_rate": 0.0006,
+ "loss": 4.178712368011475,
+ "step": 6756
+ },
+ {
+ "epoch": 93.8527741371778,
+ "grad_norm": 0.4188700318336487,
+ "learning_rate": 0.0006,
+ "loss": 4.236794948577881,
+ "step": 6757
+ },
+ {
+ "epoch": 93.86675404106597,
+ "grad_norm": 0.45948484539985657,
+ "learning_rate": 0.0006,
+ "loss": 4.1369309425354,
+ "step": 6758
+ },
+ {
+ "epoch": 93.88073394495413,
+ "grad_norm": 0.4385707676410675,
+ "learning_rate": 0.0006,
+ "loss": 4.21196174621582,
+ "step": 6759
+ },
+ {
+ "epoch": 93.89471384884229,
+ "grad_norm": 0.4491344094276428,
+ "learning_rate": 0.0006,
+ "loss": 4.230751991271973,
+ "step": 6760
+ },
+ {
+ "epoch": 93.90869375273044,
+ "grad_norm": 0.47145071625709534,
+ "learning_rate": 0.0006,
+ "loss": 4.2278733253479,
+ "step": 6761
+ },
+ {
+ "epoch": 93.92267365661861,
+ "grad_norm": 0.46541526913642883,
+ "learning_rate": 0.0006,
+ "loss": 4.125926971435547,
+ "step": 6762
+ },
+ {
+ "epoch": 93.93665356050677,
+ "grad_norm": 0.4199608862400055,
+ "learning_rate": 0.0006,
+ "loss": 4.257157325744629,
+ "step": 6763
+ },
+ {
+ "epoch": 93.95063346439493,
+ "grad_norm": 0.438938707113266,
+ "learning_rate": 0.0006,
+ "loss": 4.245532989501953,
+ "step": 6764
+ },
+ {
+ "epoch": 93.9646133682831,
+ "grad_norm": 0.44459059834480286,
+ "learning_rate": 0.0006,
+ "loss": 4.1860504150390625,
+ "step": 6765
+ },
+ {
+ "epoch": 93.97859327217125,
+ "grad_norm": 0.46545299887657166,
+ "learning_rate": 0.0006,
+ "loss": 4.3102617263793945,
+ "step": 6766
+ },
+ {
+ "epoch": 93.99257317605941,
+ "grad_norm": 0.4773047864437103,
+ "learning_rate": 0.0006,
+ "loss": 4.078923225402832,
+ "step": 6767
+ },
+ {
+ "epoch": 94.0,
+ "grad_norm": 0.5514643788337708,
+ "learning_rate": 0.0006,
+ "loss": 4.276580810546875,
+ "step": 6768
+ },
+ {
+ "epoch": 94.0,
+ "eval_loss": 6.551272869110107,
+ "eval_runtime": 63.4887,
+ "eval_samples_per_second": 38.464,
+ "eval_steps_per_second": 2.41,
+ "step": 6768
+ },
+ {
+ "epoch": 94.01397990388816,
+ "grad_norm": 0.47039031982421875,
+ "learning_rate": 0.0006,
+ "loss": 4.007132530212402,
+ "step": 6769
+ },
+ {
+ "epoch": 94.02795980777633,
+ "grad_norm": 0.5764750838279724,
+ "learning_rate": 0.0006,
+ "loss": 4.084009170532227,
+ "step": 6770
+ },
+ {
+ "epoch": 94.04193971166448,
+ "grad_norm": 0.5629863739013672,
+ "learning_rate": 0.0006,
+ "loss": 4.163414478302002,
+ "step": 6771
+ },
+ {
+ "epoch": 94.05591961555264,
+ "grad_norm": 0.528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 4.147699356079102,
+ "step": 6772
+ },
+ {
+ "epoch": 94.06989951944081,
+ "grad_norm": 0.5141040086746216,
+ "learning_rate": 0.0006,
+ "loss": 4.104916572570801,
+ "step": 6773
+ },
+ {
+ "epoch": 94.08387942332897,
+ "grad_norm": 0.6509723663330078,
+ "learning_rate": 0.0006,
+ "loss": 4.178592205047607,
+ "step": 6774
+ },
+ {
+ "epoch": 94.09785932721712,
+ "grad_norm": 0.7362110614776611,
+ "learning_rate": 0.0006,
+ "loss": 4.042470932006836,
+ "step": 6775
+ },
+ {
+ "epoch": 94.1118392311053,
+ "grad_norm": 0.8672369718551636,
+ "learning_rate": 0.0006,
+ "loss": 4.083386421203613,
+ "step": 6776
+ },
+ {
+ "epoch": 94.12581913499345,
+ "grad_norm": 1.0653108358383179,
+ "learning_rate": 0.0006,
+ "loss": 4.134354591369629,
+ "step": 6777
+ },
+ {
+ "epoch": 94.1397990388816,
+ "grad_norm": 1.0296201705932617,
+ "learning_rate": 0.0006,
+ "loss": 4.1243510246276855,
+ "step": 6778
+ },
+ {
+ "epoch": 94.15377894276976,
+ "grad_norm": 0.8544971942901611,
+ "learning_rate": 0.0006,
+ "loss": 4.207662105560303,
+ "step": 6779
+ },
+ {
+ "epoch": 94.16775884665793,
+ "grad_norm": 0.7648150324821472,
+ "learning_rate": 0.0006,
+ "loss": 4.1454057693481445,
+ "step": 6780
+ },
+ {
+ "epoch": 94.18173875054609,
+ "grad_norm": 0.7310001850128174,
+ "learning_rate": 0.0006,
+ "loss": 4.0937957763671875,
+ "step": 6781
+ },
+ {
+ "epoch": 94.19571865443424,
+ "grad_norm": 0.6844931244850159,
+ "learning_rate": 0.0006,
+ "loss": 4.048280715942383,
+ "step": 6782
+ },
+ {
+ "epoch": 94.20969855832242,
+ "grad_norm": 0.5635718107223511,
+ "learning_rate": 0.0006,
+ "loss": 4.024993419647217,
+ "step": 6783
+ },
+ {
+ "epoch": 94.22367846221057,
+ "grad_norm": 0.6640156507492065,
+ "learning_rate": 0.0006,
+ "loss": 4.08033561706543,
+ "step": 6784
+ },
+ {
+ "epoch": 94.23765836609873,
+ "grad_norm": 0.5887769460678101,
+ "learning_rate": 0.0006,
+ "loss": 4.202587127685547,
+ "step": 6785
+ },
+ {
+ "epoch": 94.2516382699869,
+ "grad_norm": 0.5525524616241455,
+ "learning_rate": 0.0006,
+ "loss": 4.104559898376465,
+ "step": 6786
+ },
+ {
+ "epoch": 94.26561817387505,
+ "grad_norm": 0.5675064325332642,
+ "learning_rate": 0.0006,
+ "loss": 4.114745616912842,
+ "step": 6787
+ },
+ {
+ "epoch": 94.27959807776321,
+ "grad_norm": 0.5262162089347839,
+ "learning_rate": 0.0006,
+ "loss": 4.141836166381836,
+ "step": 6788
+ },
+ {
+ "epoch": 94.29357798165138,
+ "grad_norm": 0.5173436999320984,
+ "learning_rate": 0.0006,
+ "loss": 4.191330432891846,
+ "step": 6789
+ },
+ {
+ "epoch": 94.30755788553954,
+ "grad_norm": 0.49230462312698364,
+ "learning_rate": 0.0006,
+ "loss": 4.172584533691406,
+ "step": 6790
+ },
+ {
+ "epoch": 94.3215377894277,
+ "grad_norm": 0.4957887828350067,
+ "learning_rate": 0.0006,
+ "loss": 4.1476593017578125,
+ "step": 6791
+ },
+ {
+ "epoch": 94.33551769331586,
+ "grad_norm": 0.4976184368133545,
+ "learning_rate": 0.0006,
+ "loss": 4.156308174133301,
+ "step": 6792
+ },
+ {
+ "epoch": 94.34949759720402,
+ "grad_norm": 0.4829961061477661,
+ "learning_rate": 0.0006,
+ "loss": 4.161005973815918,
+ "step": 6793
+ },
+ {
+ "epoch": 94.36347750109218,
+ "grad_norm": 0.5071393251419067,
+ "learning_rate": 0.0006,
+ "loss": 4.125982761383057,
+ "step": 6794
+ },
+ {
+ "epoch": 94.37745740498035,
+ "grad_norm": 0.47981470823287964,
+ "learning_rate": 0.0006,
+ "loss": 4.084125518798828,
+ "step": 6795
+ },
+ {
+ "epoch": 94.3914373088685,
+ "grad_norm": 0.47377970814704895,
+ "learning_rate": 0.0006,
+ "loss": 4.138985633850098,
+ "step": 6796
+ },
+ {
+ "epoch": 94.40541721275666,
+ "grad_norm": 0.4774772524833679,
+ "learning_rate": 0.0006,
+ "loss": 4.207159519195557,
+ "step": 6797
+ },
+ {
+ "epoch": 94.41939711664482,
+ "grad_norm": 0.47720399498939514,
+ "learning_rate": 0.0006,
+ "loss": 4.155617713928223,
+ "step": 6798
+ },
+ {
+ "epoch": 94.43337702053299,
+ "grad_norm": 0.4447745680809021,
+ "learning_rate": 0.0006,
+ "loss": 4.089460372924805,
+ "step": 6799
+ },
+ {
+ "epoch": 94.44735692442114,
+ "grad_norm": 0.4387582540512085,
+ "learning_rate": 0.0006,
+ "loss": 4.06248664855957,
+ "step": 6800
+ },
+ {
+ "epoch": 94.4613368283093,
+ "grad_norm": 0.43859368562698364,
+ "learning_rate": 0.0006,
+ "loss": 4.153326034545898,
+ "step": 6801
+ },
+ {
+ "epoch": 94.47531673219747,
+ "grad_norm": 0.4720434844493866,
+ "learning_rate": 0.0006,
+ "loss": 4.159944534301758,
+ "step": 6802
+ },
+ {
+ "epoch": 94.48929663608563,
+ "grad_norm": 0.4751245379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.198112487792969,
+ "step": 6803
+ },
+ {
+ "epoch": 94.50327653997378,
+ "grad_norm": 0.44865724444389343,
+ "learning_rate": 0.0006,
+ "loss": 4.129387855529785,
+ "step": 6804
+ },
+ {
+ "epoch": 94.51725644386195,
+ "grad_norm": 0.4543623924255371,
+ "learning_rate": 0.0006,
+ "loss": 4.166349411010742,
+ "step": 6805
+ },
+ {
+ "epoch": 94.53123634775011,
+ "grad_norm": 0.4518912136554718,
+ "learning_rate": 0.0006,
+ "loss": 4.1921892166137695,
+ "step": 6806
+ },
+ {
+ "epoch": 94.54521625163827,
+ "grad_norm": 0.43021276593208313,
+ "learning_rate": 0.0006,
+ "loss": 4.186769008636475,
+ "step": 6807
+ },
+ {
+ "epoch": 94.55919615552644,
+ "grad_norm": 0.4603467881679535,
+ "learning_rate": 0.0006,
+ "loss": 4.218608856201172,
+ "step": 6808
+ },
+ {
+ "epoch": 94.57317605941459,
+ "grad_norm": 0.4297736585140228,
+ "learning_rate": 0.0006,
+ "loss": 4.147751331329346,
+ "step": 6809
+ },
+ {
+ "epoch": 94.58715596330275,
+ "grad_norm": 0.44581538438796997,
+ "learning_rate": 0.0006,
+ "loss": 4.25939416885376,
+ "step": 6810
+ },
+ {
+ "epoch": 94.60113586719092,
+ "grad_norm": 0.43693089485168457,
+ "learning_rate": 0.0006,
+ "loss": 4.116797924041748,
+ "step": 6811
+ },
+ {
+ "epoch": 94.61511577107908,
+ "grad_norm": 0.4358426332473755,
+ "learning_rate": 0.0006,
+ "loss": 4.198864459991455,
+ "step": 6812
+ },
+ {
+ "epoch": 94.62909567496723,
+ "grad_norm": 0.4534723460674286,
+ "learning_rate": 0.0006,
+ "loss": 4.16396951675415,
+ "step": 6813
+ },
+ {
+ "epoch": 94.6430755788554,
+ "grad_norm": 0.4272654950618744,
+ "learning_rate": 0.0006,
+ "loss": 4.135400295257568,
+ "step": 6814
+ },
+ {
+ "epoch": 94.65705548274356,
+ "grad_norm": 0.4433833658695221,
+ "learning_rate": 0.0006,
+ "loss": 4.067310333251953,
+ "step": 6815
+ },
+ {
+ "epoch": 94.67103538663171,
+ "grad_norm": 0.451760470867157,
+ "learning_rate": 0.0006,
+ "loss": 4.162823677062988,
+ "step": 6816
+ },
+ {
+ "epoch": 94.68501529051987,
+ "grad_norm": 0.45587676763534546,
+ "learning_rate": 0.0006,
+ "loss": 4.093784332275391,
+ "step": 6817
+ },
+ {
+ "epoch": 94.69899519440804,
+ "grad_norm": 0.4539637863636017,
+ "learning_rate": 0.0006,
+ "loss": 4.187982082366943,
+ "step": 6818
+ },
+ {
+ "epoch": 94.7129750982962,
+ "grad_norm": 0.46095454692840576,
+ "learning_rate": 0.0006,
+ "loss": 4.113205909729004,
+ "step": 6819
+ },
+ {
+ "epoch": 94.72695500218435,
+ "grad_norm": 0.46080538630485535,
+ "learning_rate": 0.0006,
+ "loss": 4.176076889038086,
+ "step": 6820
+ },
+ {
+ "epoch": 94.74093490607252,
+ "grad_norm": 0.4813077449798584,
+ "learning_rate": 0.0006,
+ "loss": 4.191545486450195,
+ "step": 6821
+ },
+ {
+ "epoch": 94.75491480996068,
+ "grad_norm": 0.4791409969329834,
+ "learning_rate": 0.0006,
+ "loss": 4.156200408935547,
+ "step": 6822
+ },
+ {
+ "epoch": 94.76889471384884,
+ "grad_norm": 0.4560452699661255,
+ "learning_rate": 0.0006,
+ "loss": 4.23425817489624,
+ "step": 6823
+ },
+ {
+ "epoch": 94.78287461773701,
+ "grad_norm": 0.44062307476997375,
+ "learning_rate": 0.0006,
+ "loss": 4.247008323669434,
+ "step": 6824
+ },
+ {
+ "epoch": 94.79685452162516,
+ "grad_norm": 0.4222586154937744,
+ "learning_rate": 0.0006,
+ "loss": 4.17763614654541,
+ "step": 6825
+ },
+ {
+ "epoch": 94.81083442551332,
+ "grad_norm": 0.42270949482917786,
+ "learning_rate": 0.0006,
+ "loss": 4.111972808837891,
+ "step": 6826
+ },
+ {
+ "epoch": 94.82481432940149,
+ "grad_norm": 0.4353210926055908,
+ "learning_rate": 0.0006,
+ "loss": 4.127784729003906,
+ "step": 6827
+ },
+ {
+ "epoch": 94.83879423328965,
+ "grad_norm": 0.4246017634868622,
+ "learning_rate": 0.0006,
+ "loss": 4.094331741333008,
+ "step": 6828
+ },
+ {
+ "epoch": 94.8527741371778,
+ "grad_norm": 0.4365920424461365,
+ "learning_rate": 0.0006,
+ "loss": 4.23120641708374,
+ "step": 6829
+ },
+ {
+ "epoch": 94.86675404106597,
+ "grad_norm": 0.459832102060318,
+ "learning_rate": 0.0006,
+ "loss": 4.197485446929932,
+ "step": 6830
+ },
+ {
+ "epoch": 94.88073394495413,
+ "grad_norm": 0.4367716610431671,
+ "learning_rate": 0.0006,
+ "loss": 4.21002197265625,
+ "step": 6831
+ },
+ {
+ "epoch": 94.89471384884229,
+ "grad_norm": 0.4294082224369049,
+ "learning_rate": 0.0006,
+ "loss": 4.2008209228515625,
+ "step": 6832
+ },
+ {
+ "epoch": 94.90869375273044,
+ "grad_norm": 0.42561233043670654,
+ "learning_rate": 0.0006,
+ "loss": 4.111930847167969,
+ "step": 6833
+ },
+ {
+ "epoch": 94.92267365661861,
+ "grad_norm": 0.4307434558868408,
+ "learning_rate": 0.0006,
+ "loss": 4.145732402801514,
+ "step": 6834
+ },
+ {
+ "epoch": 94.93665356050677,
+ "grad_norm": 0.4107128381729126,
+ "learning_rate": 0.0006,
+ "loss": 4.262533187866211,
+ "step": 6835
+ },
+ {
+ "epoch": 94.95063346439493,
+ "grad_norm": 0.44187504053115845,
+ "learning_rate": 0.0006,
+ "loss": 4.249768257141113,
+ "step": 6836
+ },
+ {
+ "epoch": 94.9646133682831,
+ "grad_norm": 0.42857134342193604,
+ "learning_rate": 0.0006,
+ "loss": 4.144186019897461,
+ "step": 6837
+ },
+ {
+ "epoch": 94.97859327217125,
+ "grad_norm": 0.421383261680603,
+ "learning_rate": 0.0006,
+ "loss": 4.121860980987549,
+ "step": 6838
+ },
+ {
+ "epoch": 94.99257317605941,
+ "grad_norm": 0.46091943979263306,
+ "learning_rate": 0.0006,
+ "loss": 4.339262962341309,
+ "step": 6839
+ },
+ {
+ "epoch": 95.0,
+ "grad_norm": 0.5088675618171692,
+ "learning_rate": 0.0006,
+ "loss": 4.206243515014648,
+ "step": 6840
+ },
+ {
+ "epoch": 95.0,
+ "eval_loss": 6.5428972244262695,
+ "eval_runtime": 44.2683,
+ "eval_samples_per_second": 55.164,
+ "eval_steps_per_second": 3.456,
+ "step": 6840
+ },
+ {
+ "epoch": 95.01397990388816,
+ "grad_norm": 0.47629159688949585,
+ "learning_rate": 0.0006,
+ "loss": 4.1371917724609375,
+ "step": 6841
+ },
+ {
+ "epoch": 95.02795980777633,
+ "grad_norm": 0.4860699772834778,
+ "learning_rate": 0.0006,
+ "loss": 4.0605010986328125,
+ "step": 6842
+ },
+ {
+ "epoch": 95.04193971166448,
+ "grad_norm": 0.5068523287773132,
+ "learning_rate": 0.0006,
+ "loss": 3.9951086044311523,
+ "step": 6843
+ },
+ {
+ "epoch": 95.05591961555264,
+ "grad_norm": 0.5174555778503418,
+ "learning_rate": 0.0006,
+ "loss": 4.153883934020996,
+ "step": 6844
+ },
+ {
+ "epoch": 95.06989951944081,
+ "grad_norm": 0.48299622535705566,
+ "learning_rate": 0.0006,
+ "loss": 4.072522163391113,
+ "step": 6845
+ },
+ {
+ "epoch": 95.08387942332897,
+ "grad_norm": 0.5154499411582947,
+ "learning_rate": 0.0006,
+ "loss": 4.076699256896973,
+ "step": 6846
+ },
+ {
+ "epoch": 95.09785932721712,
+ "grad_norm": 0.5421119332313538,
+ "learning_rate": 0.0006,
+ "loss": 4.054714679718018,
+ "step": 6847
+ },
+ {
+ "epoch": 95.1118392311053,
+ "grad_norm": 0.5453760027885437,
+ "learning_rate": 0.0006,
+ "loss": 4.099617004394531,
+ "step": 6848
+ },
+ {
+ "epoch": 95.12581913499345,
+ "grad_norm": 0.570228099822998,
+ "learning_rate": 0.0006,
+ "loss": 4.116765975952148,
+ "step": 6849
+ },
+ {
+ "epoch": 95.1397990388816,
+ "grad_norm": 0.6594432592391968,
+ "learning_rate": 0.0006,
+ "loss": 4.1107635498046875,
+ "step": 6850
+ },
+ {
+ "epoch": 95.15377894276976,
+ "grad_norm": 0.7619166374206543,
+ "learning_rate": 0.0006,
+ "loss": 4.056267261505127,
+ "step": 6851
+ },
+ {
+ "epoch": 95.16775884665793,
+ "grad_norm": 0.8866838812828064,
+ "learning_rate": 0.0006,
+ "loss": 4.14144229888916,
+ "step": 6852
+ },
+ {
+ "epoch": 95.18173875054609,
+ "grad_norm": 0.9399778246879578,
+ "learning_rate": 0.0006,
+ "loss": 4.074902534484863,
+ "step": 6853
+ },
+ {
+ "epoch": 95.19571865443424,
+ "grad_norm": 0.8083099126815796,
+ "learning_rate": 0.0006,
+ "loss": 4.199965476989746,
+ "step": 6854
+ },
+ {
+ "epoch": 95.20969855832242,
+ "grad_norm": 0.7218199372291565,
+ "learning_rate": 0.0006,
+ "loss": 4.164974212646484,
+ "step": 6855
+ },
+ {
+ "epoch": 95.22367846221057,
+ "grad_norm": 0.6853331923484802,
+ "learning_rate": 0.0006,
+ "loss": 4.042540550231934,
+ "step": 6856
+ },
+ {
+ "epoch": 95.23765836609873,
+ "grad_norm": 0.6632657647132874,
+ "learning_rate": 0.0006,
+ "loss": 4.067739486694336,
+ "step": 6857
+ },
+ {
+ "epoch": 95.2516382699869,
+ "grad_norm": 0.5614999532699585,
+ "learning_rate": 0.0006,
+ "loss": 4.168394088745117,
+ "step": 6858
+ },
+ {
+ "epoch": 95.26561817387505,
+ "grad_norm": 0.5466957092285156,
+ "learning_rate": 0.0006,
+ "loss": 4.064231872558594,
+ "step": 6859
+ },
+ {
+ "epoch": 95.27959807776321,
+ "grad_norm": 0.5275687575340271,
+ "learning_rate": 0.0006,
+ "loss": 3.995577096939087,
+ "step": 6860
+ },
+ {
+ "epoch": 95.29357798165138,
+ "grad_norm": 0.5507028698921204,
+ "learning_rate": 0.0006,
+ "loss": 4.1036763191223145,
+ "step": 6861
+ },
+ {
+ "epoch": 95.30755788553954,
+ "grad_norm": 0.5088850259780884,
+ "learning_rate": 0.0006,
+ "loss": 4.108875274658203,
+ "step": 6862
+ },
+ {
+ "epoch": 95.3215377894277,
+ "grad_norm": 0.5197715163230896,
+ "learning_rate": 0.0006,
+ "loss": 4.087859630584717,
+ "step": 6863
+ },
+ {
+ "epoch": 95.33551769331586,
+ "grad_norm": 0.5089393258094788,
+ "learning_rate": 0.0006,
+ "loss": 4.1831207275390625,
+ "step": 6864
+ },
+ {
+ "epoch": 95.34949759720402,
+ "grad_norm": 0.4992108643054962,
+ "learning_rate": 0.0006,
+ "loss": 4.13450813293457,
+ "step": 6865
+ },
+ {
+ "epoch": 95.36347750109218,
+ "grad_norm": 0.48714372515678406,
+ "learning_rate": 0.0006,
+ "loss": 4.073522567749023,
+ "step": 6866
+ },
+ {
+ "epoch": 95.37745740498035,
+ "grad_norm": 0.5265013575553894,
+ "learning_rate": 0.0006,
+ "loss": 4.125735282897949,
+ "step": 6867
+ },
+ {
+ "epoch": 95.3914373088685,
+ "grad_norm": 0.5132632851600647,
+ "learning_rate": 0.0006,
+ "loss": 4.054095268249512,
+ "step": 6868
+ },
+ {
+ "epoch": 95.40541721275666,
+ "grad_norm": 0.512633204460144,
+ "learning_rate": 0.0006,
+ "loss": 4.135960102081299,
+ "step": 6869
+ },
+ {
+ "epoch": 95.41939711664482,
+ "grad_norm": 0.5068862438201904,
+ "learning_rate": 0.0006,
+ "loss": 4.096134185791016,
+ "step": 6870
+ },
+ {
+ "epoch": 95.43337702053299,
+ "grad_norm": 0.5249714851379395,
+ "learning_rate": 0.0006,
+ "loss": 4.084434509277344,
+ "step": 6871
+ },
+ {
+ "epoch": 95.44735692442114,
+ "grad_norm": 0.5165737271308899,
+ "learning_rate": 0.0006,
+ "loss": 4.142446041107178,
+ "step": 6872
+ },
+ {
+ "epoch": 95.4613368283093,
+ "grad_norm": 0.48951077461242676,
+ "learning_rate": 0.0006,
+ "loss": 4.170736312866211,
+ "step": 6873
+ },
+ {
+ "epoch": 95.47531673219747,
+ "grad_norm": 0.48471155762672424,
+ "learning_rate": 0.0006,
+ "loss": 4.172013282775879,
+ "step": 6874
+ },
+ {
+ "epoch": 95.48929663608563,
+ "grad_norm": 0.47400999069213867,
+ "learning_rate": 0.0006,
+ "loss": 4.095659255981445,
+ "step": 6875
+ },
+ {
+ "epoch": 95.50327653997378,
+ "grad_norm": 0.4577101469039917,
+ "learning_rate": 0.0006,
+ "loss": 4.068535804748535,
+ "step": 6876
+ },
+ {
+ "epoch": 95.51725644386195,
+ "grad_norm": 0.47317007184028625,
+ "learning_rate": 0.0006,
+ "loss": 4.19393253326416,
+ "step": 6877
+ },
+ {
+ "epoch": 95.53123634775011,
+ "grad_norm": 0.47511136531829834,
+ "learning_rate": 0.0006,
+ "loss": 4.174132823944092,
+ "step": 6878
+ },
+ {
+ "epoch": 95.54521625163827,
+ "grad_norm": 0.4574567675590515,
+ "learning_rate": 0.0006,
+ "loss": 4.189523696899414,
+ "step": 6879
+ },
+ {
+ "epoch": 95.55919615552644,
+ "grad_norm": 0.4483296573162079,
+ "learning_rate": 0.0006,
+ "loss": 4.100164413452148,
+ "step": 6880
+ },
+ {
+ "epoch": 95.57317605941459,
+ "grad_norm": 0.4459962844848633,
+ "learning_rate": 0.0006,
+ "loss": 4.108081817626953,
+ "step": 6881
+ },
+ {
+ "epoch": 95.58715596330275,
+ "grad_norm": 0.44342491030693054,
+ "learning_rate": 0.0006,
+ "loss": 4.198594093322754,
+ "step": 6882
+ },
+ {
+ "epoch": 95.60113586719092,
+ "grad_norm": 0.4531255066394806,
+ "learning_rate": 0.0006,
+ "loss": 4.147405624389648,
+ "step": 6883
+ },
+ {
+ "epoch": 95.61511577107908,
+ "grad_norm": 0.4644201993942261,
+ "learning_rate": 0.0006,
+ "loss": 4.1198225021362305,
+ "step": 6884
+ },
+ {
+ "epoch": 95.62909567496723,
+ "grad_norm": 0.4796750843524933,
+ "learning_rate": 0.0006,
+ "loss": 4.198688983917236,
+ "step": 6885
+ },
+ {
+ "epoch": 95.6430755788554,
+ "grad_norm": 0.47686126828193665,
+ "learning_rate": 0.0006,
+ "loss": 4.219273567199707,
+ "step": 6886
+ },
+ {
+ "epoch": 95.65705548274356,
+ "grad_norm": 0.45663920044898987,
+ "learning_rate": 0.0006,
+ "loss": 4.11749267578125,
+ "step": 6887
+ },
+ {
+ "epoch": 95.67103538663171,
+ "grad_norm": 0.44049474596977234,
+ "learning_rate": 0.0006,
+ "loss": 4.215906143188477,
+ "step": 6888
+ },
+ {
+ "epoch": 95.68501529051987,
+ "grad_norm": 0.4287659823894501,
+ "learning_rate": 0.0006,
+ "loss": 4.189912796020508,
+ "step": 6889
+ },
+ {
+ "epoch": 95.69899519440804,
+ "grad_norm": 0.44612404704093933,
+ "learning_rate": 0.0006,
+ "loss": 4.130494117736816,
+ "step": 6890
+ },
+ {
+ "epoch": 95.7129750982962,
+ "grad_norm": 0.45957738161087036,
+ "learning_rate": 0.0006,
+ "loss": 4.14907169342041,
+ "step": 6891
+ },
+ {
+ "epoch": 95.72695500218435,
+ "grad_norm": 0.5050562024116516,
+ "learning_rate": 0.0006,
+ "loss": 4.134866714477539,
+ "step": 6892
+ },
+ {
+ "epoch": 95.74093490607252,
+ "grad_norm": 0.5289379954338074,
+ "learning_rate": 0.0006,
+ "loss": 4.1987152099609375,
+ "step": 6893
+ },
+ {
+ "epoch": 95.75491480996068,
+ "grad_norm": 0.5022200345993042,
+ "learning_rate": 0.0006,
+ "loss": 4.14801549911499,
+ "step": 6894
+ },
+ {
+ "epoch": 95.76889471384884,
+ "grad_norm": 0.45263758301734924,
+ "learning_rate": 0.0006,
+ "loss": 4.122977256774902,
+ "step": 6895
+ },
+ {
+ "epoch": 95.78287461773701,
+ "grad_norm": 0.43757519125938416,
+ "learning_rate": 0.0006,
+ "loss": 4.23306941986084,
+ "step": 6896
+ },
+ {
+ "epoch": 95.79685452162516,
+ "grad_norm": 0.4655337333679199,
+ "learning_rate": 0.0006,
+ "loss": 4.133179664611816,
+ "step": 6897
+ },
+ {
+ "epoch": 95.81083442551332,
+ "grad_norm": 0.5189670324325562,
+ "learning_rate": 0.0006,
+ "loss": 4.217549800872803,
+ "step": 6898
+ },
+ {
+ "epoch": 95.82481432940149,
+ "grad_norm": 0.5370217561721802,
+ "learning_rate": 0.0006,
+ "loss": 4.1656975746154785,
+ "step": 6899
+ },
+ {
+ "epoch": 95.83879423328965,
+ "grad_norm": 0.5483759641647339,
+ "learning_rate": 0.0006,
+ "loss": 4.267925262451172,
+ "step": 6900
+ },
+ {
+ "epoch": 95.8527741371778,
+ "grad_norm": 0.5216960310935974,
+ "learning_rate": 0.0006,
+ "loss": 4.155750274658203,
+ "step": 6901
+ },
+ {
+ "epoch": 95.86675404106597,
+ "grad_norm": 0.4929947257041931,
+ "learning_rate": 0.0006,
+ "loss": 4.261270046234131,
+ "step": 6902
+ },
+ {
+ "epoch": 95.88073394495413,
+ "grad_norm": 0.4465656578540802,
+ "learning_rate": 0.0006,
+ "loss": 4.092657566070557,
+ "step": 6903
+ },
+ {
+ "epoch": 95.89471384884229,
+ "grad_norm": 0.4376829266548157,
+ "learning_rate": 0.0006,
+ "loss": 4.187044143676758,
+ "step": 6904
+ },
+ {
+ "epoch": 95.90869375273044,
+ "grad_norm": 0.4521138072013855,
+ "learning_rate": 0.0006,
+ "loss": 4.220088958740234,
+ "step": 6905
+ },
+ {
+ "epoch": 95.92267365661861,
+ "grad_norm": 0.4758683741092682,
+ "learning_rate": 0.0006,
+ "loss": 4.11916971206665,
+ "step": 6906
+ },
+ {
+ "epoch": 95.93665356050677,
+ "grad_norm": 0.4840446710586548,
+ "learning_rate": 0.0006,
+ "loss": 4.2120513916015625,
+ "step": 6907
+ },
+ {
+ "epoch": 95.95063346439493,
+ "grad_norm": 0.4849572479724884,
+ "learning_rate": 0.0006,
+ "loss": 4.195476055145264,
+ "step": 6908
+ },
+ {
+ "epoch": 95.9646133682831,
+ "grad_norm": 0.4654180407524109,
+ "learning_rate": 0.0006,
+ "loss": 4.226565837860107,
+ "step": 6909
+ },
+ {
+ "epoch": 95.97859327217125,
+ "grad_norm": 0.4830659329891205,
+ "learning_rate": 0.0006,
+ "loss": 4.174907684326172,
+ "step": 6910
+ },
+ {
+ "epoch": 95.99257317605941,
+ "grad_norm": 0.46775931119918823,
+ "learning_rate": 0.0006,
+ "loss": 4.211753845214844,
+ "step": 6911
+ },
+ {
+ "epoch": 96.0,
+ "grad_norm": 0.535663366317749,
+ "learning_rate": 0.0006,
+ "loss": 4.181452751159668,
+ "step": 6912
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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": 2.945542002063704e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-6912/training_args.bin b/runs/i5-fulle-lm/checkpoint-6912/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-6912/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-7200/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-7200/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/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/i5-fulle-lm/checkpoint-7200/config.json b/runs/i5-fulle-lm/checkpoint-7200/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-7200/generation_config.json b/runs/i5-fulle-lm/checkpoint-7200/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-7200/model.safetensors b/runs/i5-fulle-lm/checkpoint-7200/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..48076bc232456cccde0b87c726c5d534742c9264
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:205dd57548dddf7ece333e2319c5f147412c6f6bb4495fdb22db51986426b6e1
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-7200/optimizer.pt b/runs/i5-fulle-lm/checkpoint-7200/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5c706d9e11efa6d223e5e9a6e805d04bdb3d55b6
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3924dbf79c26bd3e695f8332b15d53e0ad258cf272b8f544b3152ea690b846c8
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-7200/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-7200/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1f995cf2c575a8da03c8a7ee7046d3efc53925bf
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:51d0ea2ed096230d84d1223f453400e80d654602cb6691b8a335e025295056d8
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-7200/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-7200/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c542869de69881a0e30f5d6f006f992ac27bcb89
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:399b9e473af9f5923d2a72d5a3e5e0b4913f918f6e7cc70cab3f8a171cefe8e2
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-7200/scheduler.pt b/runs/i5-fulle-lm/checkpoint-7200/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..624c26e041c29e4eef4955201869827f6f6a567e
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3f84784070f59d3d6db22567a60409a64f07923bdf1c69e2acde1a156c945423
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-7200/tokenizer.json b/runs/i5-fulle-lm/checkpoint-7200/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-7200/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-7200/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-7200/trainer_state.json b/runs/i5-fulle-lm/checkpoint-7200/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..b9858592c7fa8393f18e618b2e5e1e55db5d442b
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/trainer_state.json
@@ -0,0 +1,51218 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 100.0,
+ "eval_steps": 500,
+ "global_step": 7200,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 5.876723766326904,
+ "eval_runtime": 63.5252,
+ "eval_samples_per_second": 38.441,
+ "eval_steps_per_second": 2.408,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.3747001588344574,
+ "learning_rate": 0.0006,
+ "loss": 5.629271984100342,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3391074240207672,
+ "learning_rate": 0.0006,
+ "loss": 5.626246452331543,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.3225712776184082,
+ "learning_rate": 0.0006,
+ "loss": 5.610185623168945,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.2868952751159668,
+ "learning_rate": 0.0006,
+ "loss": 5.642242908477783,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.3030626177787781,
+ "learning_rate": 0.0006,
+ "loss": 5.6859517097473145,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.27724650502204895,
+ "learning_rate": 0.0006,
+ "loss": 5.724556922912598,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.239713653922081,
+ "learning_rate": 0.0006,
+ "loss": 5.696896553039551,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.2906484305858612,
+ "learning_rate": 0.0006,
+ "loss": 5.672391891479492,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.2922009527683258,
+ "learning_rate": 0.0006,
+ "loss": 5.7032647132873535,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.26374009251594543,
+ "learning_rate": 0.0006,
+ "loss": 5.567514419555664,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.23883885145187378,
+ "learning_rate": 0.0006,
+ "loss": 5.658847808837891,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.23234373331069946,
+ "learning_rate": 0.0006,
+ "loss": 5.643807888031006,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.2289019674062729,
+ "learning_rate": 0.0006,
+ "loss": 5.714539527893066,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.21511591970920563,
+ "learning_rate": 0.0006,
+ "loss": 5.706784248352051,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.20908993482589722,
+ "learning_rate": 0.0006,
+ "loss": 5.640445709228516,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.19814635813236237,
+ "learning_rate": 0.0006,
+ "loss": 5.698519706726074,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.18915721774101257,
+ "learning_rate": 0.0006,
+ "loss": 5.658590316772461,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.19462232291698456,
+ "learning_rate": 0.0006,
+ "loss": 5.687912940979004,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.18303507566452026,
+ "learning_rate": 0.0006,
+ "loss": 5.609930515289307,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.18535007536411285,
+ "learning_rate": 0.0006,
+ "loss": 5.534708023071289,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.17250879108905792,
+ "learning_rate": 0.0006,
+ "loss": 5.718664646148682,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.18994152545928955,
+ "learning_rate": 0.0006,
+ "loss": 5.7014970779418945,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.19673867523670197,
+ "learning_rate": 0.0006,
+ "loss": 5.6210174560546875,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.20704767107963562,
+ "learning_rate": 0.0006,
+ "loss": 5.547924041748047,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.20524919033050537,
+ "learning_rate": 0.0006,
+ "loss": 5.660937309265137,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.22259685397148132,
+ "learning_rate": 0.0006,
+ "loss": 5.798741340637207,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.23062147200107574,
+ "learning_rate": 0.0006,
+ "loss": 5.637441635131836,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.18916305899620056,
+ "learning_rate": 0.0006,
+ "loss": 5.605311393737793,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.2083982229232788,
+ "learning_rate": 0.0006,
+ "loss": 5.669430732727051,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.2080785483121872,
+ "learning_rate": 0.0006,
+ "loss": 5.604023456573486,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.22774772346019745,
+ "learning_rate": 0.0006,
+ "loss": 5.57552433013916,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.23653045296669006,
+ "learning_rate": 0.0006,
+ "loss": 5.568866729736328,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.21537624299526215,
+ "learning_rate": 0.0006,
+ "loss": 5.5688605308532715,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.21678060293197632,
+ "learning_rate": 0.0006,
+ "loss": 5.728165149688721,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.21264362335205078,
+ "learning_rate": 0.0006,
+ "loss": 5.579315185546875,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.20599518716335297,
+ "learning_rate": 0.0006,
+ "loss": 5.549944877624512,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.21258755028247833,
+ "learning_rate": 0.0006,
+ "loss": 5.624704360961914,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.220892071723938,
+ "learning_rate": 0.0006,
+ "loss": 5.539329528808594,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.20736725628376007,
+ "learning_rate": 0.0006,
+ "loss": 5.591736793518066,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.21518689393997192,
+ "learning_rate": 0.0006,
+ "loss": 5.594705581665039,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.2175626903772354,
+ "learning_rate": 0.0006,
+ "loss": 5.694128036499023,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2374536246061325,
+ "learning_rate": 0.0006,
+ "loss": 5.709114074707031,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.25088316202163696,
+ "learning_rate": 0.0006,
+ "loss": 5.53359317779541,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.2367500513792038,
+ "learning_rate": 0.0006,
+ "loss": 5.536508560180664,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.2425699234008789,
+ "learning_rate": 0.0006,
+ "loss": 5.667490005493164,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.22313112020492554,
+ "learning_rate": 0.0006,
+ "loss": 5.691762924194336,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.2637753486633301,
+ "learning_rate": 0.0006,
+ "loss": 5.61480188369751,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.2951928973197937,
+ "learning_rate": 0.0006,
+ "loss": 5.803413391113281,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.3163972795009613,
+ "learning_rate": 0.0006,
+ "loss": 5.770205497741699,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.25544315576553345,
+ "learning_rate": 0.0006,
+ "loss": 5.6751708984375,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.23041220009326935,
+ "learning_rate": 0.0006,
+ "loss": 5.600106716156006,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.22606100142002106,
+ "learning_rate": 0.0006,
+ "loss": 5.636742115020752,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.19932910799980164,
+ "learning_rate": 0.0006,
+ "loss": 5.648792743682861,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.18530866503715515,
+ "learning_rate": 0.0006,
+ "loss": 5.525490760803223,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.18113933503627777,
+ "learning_rate": 0.0006,
+ "loss": 5.626055717468262,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.19911661744117737,
+ "learning_rate": 0.0006,
+ "loss": 5.637795448303223,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.21706321835517883,
+ "learning_rate": 0.0006,
+ "loss": 5.6207780838012695,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.2119757980108261,
+ "learning_rate": 0.0006,
+ "loss": 5.713021278381348,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.21578724682331085,
+ "learning_rate": 0.0006,
+ "loss": 5.659908771514893,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.22551719844341278,
+ "learning_rate": 0.0006,
+ "loss": 5.667254447937012,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.22824673354625702,
+ "learning_rate": 0.0006,
+ "loss": 5.654333114624023,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.22917406260967255,
+ "learning_rate": 0.0006,
+ "loss": 5.624526023864746,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.22362196445465088,
+ "learning_rate": 0.0006,
+ "loss": 5.592640399932861,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.21946556866168976,
+ "learning_rate": 0.0006,
+ "loss": 5.619471073150635,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.22395861148834229,
+ "learning_rate": 0.0006,
+ "loss": 5.6059651374816895,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.2483028769493103,
+ "learning_rate": 0.0006,
+ "loss": 5.643016338348389,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.25447574257850647,
+ "learning_rate": 0.0006,
+ "loss": 5.586182594299316,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.22299931943416595,
+ "learning_rate": 0.0006,
+ "loss": 5.576699733734131,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.22573456168174744,
+ "learning_rate": 0.0006,
+ "loss": 5.698945045471191,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.1956598460674286,
+ "learning_rate": 0.0006,
+ "loss": 5.708704948425293,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.21984371542930603,
+ "learning_rate": 0.0006,
+ "loss": 5.675032615661621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.22271613776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.656550407409668,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 5.845527172088623,
+ "eval_runtime": 43.8102,
+ "eval_samples_per_second": 55.74,
+ "eval_steps_per_second": 3.492,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.2170790433883667,
+ "learning_rate": 0.0006,
+ "loss": 5.61482572555542,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.21382899582386017,
+ "learning_rate": 0.0006,
+ "loss": 5.624715805053711,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.23434144258499146,
+ "learning_rate": 0.0006,
+ "loss": 5.652092933654785,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2637452483177185,
+ "learning_rate": 0.0006,
+ "loss": 5.59299898147583,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.3520928621292114,
+ "learning_rate": 0.0006,
+ "loss": 5.52957010269165,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.42308101058006287,
+ "learning_rate": 0.0006,
+ "loss": 5.507293224334717,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.38217484951019287,
+ "learning_rate": 0.0006,
+ "loss": 5.588788986206055,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.37677526473999023,
+ "learning_rate": 0.0006,
+ "loss": 5.5433759689331055,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.3504759967327118,
+ "learning_rate": 0.0006,
+ "loss": 5.538632869720459,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.3287700116634369,
+ "learning_rate": 0.0006,
+ "loss": 5.592975616455078,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.3110015392303467,
+ "learning_rate": 0.0006,
+ "loss": 5.598236560821533,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.3251343071460724,
+ "learning_rate": 0.0006,
+ "loss": 5.670173645019531,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.25595608353614807,
+ "learning_rate": 0.0006,
+ "loss": 5.6215128898620605,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.26738348603248596,
+ "learning_rate": 0.0006,
+ "loss": 5.581784248352051,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.2703273892402649,
+ "learning_rate": 0.0006,
+ "loss": 5.649683952331543,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.2701680362224579,
+ "learning_rate": 0.0006,
+ "loss": 5.50642728805542,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.28630489110946655,
+ "learning_rate": 0.0006,
+ "loss": 5.664239883422852,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.30259397625923157,
+ "learning_rate": 0.0006,
+ "loss": 5.611912727355957,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.27073922753334045,
+ "learning_rate": 0.0006,
+ "loss": 5.604281425476074,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.26925548911094666,
+ "learning_rate": 0.0006,
+ "loss": 5.522679805755615,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.2734437882900238,
+ "learning_rate": 0.0006,
+ "loss": 5.566070556640625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.26864391565322876,
+ "learning_rate": 0.0006,
+ "loss": 5.652739524841309,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.2483508437871933,
+ "learning_rate": 0.0006,
+ "loss": 5.6469573974609375,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.25025492906570435,
+ "learning_rate": 0.0006,
+ "loss": 5.563111305236816,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2206210047006607,
+ "learning_rate": 0.0006,
+ "loss": 5.63279390335083,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.20883360505104065,
+ "learning_rate": 0.0006,
+ "loss": 5.554442405700684,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.18739846348762512,
+ "learning_rate": 0.0006,
+ "loss": 5.600037097930908,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.19838306307792664,
+ "learning_rate": 0.0006,
+ "loss": 5.620741844177246,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.1944916546344757,
+ "learning_rate": 0.0006,
+ "loss": 5.569000720977783,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.1988416612148285,
+ "learning_rate": 0.0006,
+ "loss": 5.5679216384887695,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.20402124524116516,
+ "learning_rate": 0.0006,
+ "loss": 5.547119140625,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.20148202776908875,
+ "learning_rate": 0.0006,
+ "loss": 5.611668586730957,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.1967492699623108,
+ "learning_rate": 0.0006,
+ "loss": 5.63364315032959,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.1962510496377945,
+ "learning_rate": 0.0006,
+ "loss": 5.519033432006836,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.2083357721567154,
+ "learning_rate": 0.0006,
+ "loss": 5.564805030822754,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.20547416806221008,
+ "learning_rate": 0.0006,
+ "loss": 5.524559020996094,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.19884023070335388,
+ "learning_rate": 0.0006,
+ "loss": 5.574398994445801,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.1972484439611435,
+ "learning_rate": 0.0006,
+ "loss": 5.564923286437988,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2193251997232437,
+ "learning_rate": 0.0006,
+ "loss": 5.522675037384033,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.24854084849357605,
+ "learning_rate": 0.0006,
+ "loss": 5.655223846435547,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.26785019040107727,
+ "learning_rate": 0.0006,
+ "loss": 5.5352277755737305,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.27974796295166016,
+ "learning_rate": 0.0006,
+ "loss": 5.436267852783203,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.26955536007881165,
+ "learning_rate": 0.0006,
+ "loss": 5.649114608764648,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.27163928747177124,
+ "learning_rate": 0.0006,
+ "loss": 5.550527572631836,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.26006239652633667,
+ "learning_rate": 0.0006,
+ "loss": 5.624131202697754,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.2620175778865814,
+ "learning_rate": 0.0006,
+ "loss": 5.5596923828125,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.2721046805381775,
+ "learning_rate": 0.0006,
+ "loss": 5.571986198425293,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.303007036447525,
+ "learning_rate": 0.0006,
+ "loss": 5.617932319641113,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.28765591979026794,
+ "learning_rate": 0.0006,
+ "loss": 5.621812343597412,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.26693493127822876,
+ "learning_rate": 0.0006,
+ "loss": 5.589917182922363,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.2378888875246048,
+ "learning_rate": 0.0006,
+ "loss": 5.556728363037109,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.23565872013568878,
+ "learning_rate": 0.0006,
+ "loss": 5.526758193969727,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.22685758769512177,
+ "learning_rate": 0.0006,
+ "loss": 5.57910680770874,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.19656729698181152,
+ "learning_rate": 0.0006,
+ "loss": 5.654025554656982,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.18525683879852295,
+ "learning_rate": 0.0006,
+ "loss": 5.529152870178223,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.1976957470178604,
+ "learning_rate": 0.0006,
+ "loss": 5.518023490905762,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.20933350920677185,
+ "learning_rate": 0.0006,
+ "loss": 5.562268257141113,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.19720788300037384,
+ "learning_rate": 0.0006,
+ "loss": 5.469079494476318,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.19920574128627777,
+ "learning_rate": 0.0006,
+ "loss": 5.604212284088135,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.20482774078845978,
+ "learning_rate": 0.0006,
+ "loss": 5.612029075622559,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.2111106514930725,
+ "learning_rate": 0.0006,
+ "loss": 5.615732192993164,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.2041655033826828,
+ "learning_rate": 0.0006,
+ "loss": 5.52413272857666,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.1916956603527069,
+ "learning_rate": 0.0006,
+ "loss": 5.501478672027588,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.2069409042596817,
+ "learning_rate": 0.0006,
+ "loss": 5.542263507843018,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.2287508249282837,
+ "learning_rate": 0.0006,
+ "loss": 5.535327434539795,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.23954430222511292,
+ "learning_rate": 0.0006,
+ "loss": 5.614073276519775,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2507038116455078,
+ "learning_rate": 0.0006,
+ "loss": 5.522680759429932,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.2382838875055313,
+ "learning_rate": 0.0006,
+ "loss": 5.557735443115234,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2517968416213989,
+ "learning_rate": 0.0006,
+ "loss": 5.5174970626831055,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.27377498149871826,
+ "learning_rate": 0.0006,
+ "loss": 5.60447883605957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.28439468145370483,
+ "learning_rate": 0.0006,
+ "loss": 5.563228607177734,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.26239919662475586,
+ "learning_rate": 0.0006,
+ "loss": 5.43831729888916,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 5.784883499145508,
+ "eval_runtime": 43.9201,
+ "eval_samples_per_second": 55.601,
+ "eval_steps_per_second": 3.484,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.25057145953178406,
+ "learning_rate": 0.0006,
+ "loss": 5.430203914642334,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2657968997955322,
+ "learning_rate": 0.0006,
+ "loss": 5.515050888061523,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2847200632095337,
+ "learning_rate": 0.0006,
+ "loss": 5.4741411209106445,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.2766058146953583,
+ "learning_rate": 0.0006,
+ "loss": 5.578679084777832,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.29060763120651245,
+ "learning_rate": 0.0006,
+ "loss": 5.571724891662598,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.27702516317367554,
+ "learning_rate": 0.0006,
+ "loss": 5.494494438171387,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.29987409710884094,
+ "learning_rate": 0.0006,
+ "loss": 5.512990951538086,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.33289220929145813,
+ "learning_rate": 0.0006,
+ "loss": 5.474607467651367,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.40809786319732666,
+ "learning_rate": 0.0006,
+ "loss": 5.518467426300049,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.42144203186035156,
+ "learning_rate": 0.0006,
+ "loss": 5.548374176025391,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.4288803040981293,
+ "learning_rate": 0.0006,
+ "loss": 5.460011959075928,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.4079797565937042,
+ "learning_rate": 0.0006,
+ "loss": 5.533100128173828,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.3407399654388428,
+ "learning_rate": 0.0006,
+ "loss": 5.515357494354248,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.33858805894851685,
+ "learning_rate": 0.0006,
+ "loss": 5.531440734863281,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.3356950581073761,
+ "learning_rate": 0.0006,
+ "loss": 5.5554704666137695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.2899002730846405,
+ "learning_rate": 0.0006,
+ "loss": 5.43456506729126,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.28593429923057556,
+ "learning_rate": 0.0006,
+ "loss": 5.517940998077393,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.2641269564628601,
+ "learning_rate": 0.0006,
+ "loss": 5.532774925231934,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2481418401002884,
+ "learning_rate": 0.0006,
+ "loss": 5.573941230773926,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.23128636181354523,
+ "learning_rate": 0.0006,
+ "loss": 5.553715705871582,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.2228732705116272,
+ "learning_rate": 0.0006,
+ "loss": 5.4840288162231445,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.20080532133579254,
+ "learning_rate": 0.0006,
+ "loss": 5.444486618041992,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.2064528614282608,
+ "learning_rate": 0.0006,
+ "loss": 5.483327865600586,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.2215282917022705,
+ "learning_rate": 0.0006,
+ "loss": 5.441435813903809,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.22509410977363586,
+ "learning_rate": 0.0006,
+ "loss": 5.502352714538574,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.22805538773536682,
+ "learning_rate": 0.0006,
+ "loss": 5.465072154998779,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.22567331790924072,
+ "learning_rate": 0.0006,
+ "loss": 5.49654483795166,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.22276251018047333,
+ "learning_rate": 0.0006,
+ "loss": 5.472600936889648,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.21428382396697998,
+ "learning_rate": 0.0006,
+ "loss": 5.490682601928711,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.22183960676193237,
+ "learning_rate": 0.0006,
+ "loss": 5.450038909912109,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.20472374558448792,
+ "learning_rate": 0.0006,
+ "loss": 5.53350830078125,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.18576008081436157,
+ "learning_rate": 0.0006,
+ "loss": 5.554445743560791,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.18569298088550568,
+ "learning_rate": 0.0006,
+ "loss": 5.598626136779785,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2042725533246994,
+ "learning_rate": 0.0006,
+ "loss": 5.416242599487305,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.22967590391635895,
+ "learning_rate": 0.0006,
+ "loss": 5.523380279541016,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.24322649836540222,
+ "learning_rate": 0.0006,
+ "loss": 5.427528381347656,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.25487369298934937,
+ "learning_rate": 0.0006,
+ "loss": 5.530077934265137,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.23339726030826569,
+ "learning_rate": 0.0006,
+ "loss": 5.3618621826171875,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.2200823724269867,
+ "learning_rate": 0.0006,
+ "loss": 5.458024024963379,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2214350700378418,
+ "learning_rate": 0.0006,
+ "loss": 5.639638900756836,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.2389301061630249,
+ "learning_rate": 0.0006,
+ "loss": 5.569904327392578,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.229081928730011,
+ "learning_rate": 0.0006,
+ "loss": 5.5459113121032715,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.24053724110126495,
+ "learning_rate": 0.0006,
+ "loss": 5.553205966949463,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.23382005095481873,
+ "learning_rate": 0.0006,
+ "loss": 5.569269180297852,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.21243859827518463,
+ "learning_rate": 0.0006,
+ "loss": 5.4803266525268555,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.2307850569486618,
+ "learning_rate": 0.0006,
+ "loss": 5.619441986083984,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.23941534757614136,
+ "learning_rate": 0.0006,
+ "loss": 5.549844741821289,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.23943814635276794,
+ "learning_rate": 0.0006,
+ "loss": 5.562811851501465,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.23154334723949432,
+ "learning_rate": 0.0006,
+ "loss": 5.540063858032227,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.24347646534442902,
+ "learning_rate": 0.0006,
+ "loss": 5.540484428405762,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2204650491476059,
+ "learning_rate": 0.0006,
+ "loss": 5.431697368621826,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.19243118166923523,
+ "learning_rate": 0.0006,
+ "loss": 5.5821099281311035,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.19748550653457642,
+ "learning_rate": 0.0006,
+ "loss": 5.552068710327148,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.21486026048660278,
+ "learning_rate": 0.0006,
+ "loss": 5.446531772613525,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.20809468626976013,
+ "learning_rate": 0.0006,
+ "loss": 5.508407115936279,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.19455254077911377,
+ "learning_rate": 0.0006,
+ "loss": 5.526238441467285,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.19453269243240356,
+ "learning_rate": 0.0006,
+ "loss": 5.435483932495117,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.18028554320335388,
+ "learning_rate": 0.0006,
+ "loss": 5.630495071411133,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.21305815875530243,
+ "learning_rate": 0.0006,
+ "loss": 5.401473045349121,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.2587052583694458,
+ "learning_rate": 0.0006,
+ "loss": 5.46059513092041,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.27265894412994385,
+ "learning_rate": 0.0006,
+ "loss": 5.545883655548096,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2382095605134964,
+ "learning_rate": 0.0006,
+ "loss": 5.46323823928833,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.2146337926387787,
+ "learning_rate": 0.0006,
+ "loss": 5.522434711456299,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.22202353179454803,
+ "learning_rate": 0.0006,
+ "loss": 5.542125701904297,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.2105122059583664,
+ "learning_rate": 0.0006,
+ "loss": 5.472431659698486,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.21044376492500305,
+ "learning_rate": 0.0006,
+ "loss": 5.536632537841797,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.212728351354599,
+ "learning_rate": 0.0006,
+ "loss": 5.540079593658447,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.2532452344894409,
+ "learning_rate": 0.0006,
+ "loss": 5.51716423034668,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.3111310601234436,
+ "learning_rate": 0.0006,
+ "loss": 5.467278003692627,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.3353366553783417,
+ "learning_rate": 0.0006,
+ "loss": 5.55424165725708,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.36013737320899963,
+ "learning_rate": 0.0006,
+ "loss": 5.4880218505859375,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.347847580909729,
+ "learning_rate": 0.0006,
+ "loss": 5.495395660400391,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 5.792633533477783,
+ "eval_runtime": 43.8631,
+ "eval_samples_per_second": 55.673,
+ "eval_steps_per_second": 3.488,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.28433653712272644,
+ "learning_rate": 0.0006,
+ "loss": 5.520609378814697,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.28355616331100464,
+ "learning_rate": 0.0006,
+ "loss": 5.4515814781188965,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.332038015127182,
+ "learning_rate": 0.0006,
+ "loss": 5.47999382019043,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.32218387722969055,
+ "learning_rate": 0.0006,
+ "loss": 5.46429443359375,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.28368157148361206,
+ "learning_rate": 0.0006,
+ "loss": 5.3327789306640625,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2871955335140228,
+ "learning_rate": 0.0006,
+ "loss": 5.511331558227539,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.28333616256713867,
+ "learning_rate": 0.0006,
+ "loss": 5.556880950927734,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.27789416909217834,
+ "learning_rate": 0.0006,
+ "loss": 5.397598743438721,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.28488415479660034,
+ "learning_rate": 0.0006,
+ "loss": 5.343051910400391,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2682734727859497,
+ "learning_rate": 0.0006,
+ "loss": 5.415733337402344,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.2790130078792572,
+ "learning_rate": 0.0006,
+ "loss": 5.399417877197266,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.32790759205818176,
+ "learning_rate": 0.0006,
+ "loss": 5.489166259765625,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.3308278024196625,
+ "learning_rate": 0.0006,
+ "loss": 5.47331428527832,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.33337074518203735,
+ "learning_rate": 0.0006,
+ "loss": 5.515623092651367,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.3027055561542511,
+ "learning_rate": 0.0006,
+ "loss": 5.491360664367676,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2676897644996643,
+ "learning_rate": 0.0006,
+ "loss": 5.473616600036621,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.28591376543045044,
+ "learning_rate": 0.0006,
+ "loss": 5.500592231750488,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2982483208179474,
+ "learning_rate": 0.0006,
+ "loss": 5.489243030548096,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30798256397247314,
+ "learning_rate": 0.0006,
+ "loss": 5.463964939117432,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.29567423462867737,
+ "learning_rate": 0.0006,
+ "loss": 5.404911041259766,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.28314200043678284,
+ "learning_rate": 0.0006,
+ "loss": 5.369341850280762,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.27728867530822754,
+ "learning_rate": 0.0006,
+ "loss": 5.498134613037109,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.28119176626205444,
+ "learning_rate": 0.0006,
+ "loss": 5.320267200469971,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.241103857755661,
+ "learning_rate": 0.0006,
+ "loss": 5.529047012329102,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2537379562854767,
+ "learning_rate": 0.0006,
+ "loss": 5.434996128082275,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.28426963090896606,
+ "learning_rate": 0.0006,
+ "loss": 5.520389556884766,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.2745305299758911,
+ "learning_rate": 0.0006,
+ "loss": 5.490539073944092,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2684994637966156,
+ "learning_rate": 0.0006,
+ "loss": 5.541254043579102,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.31772467494010925,
+ "learning_rate": 0.0006,
+ "loss": 5.401562213897705,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.3196841776371002,
+ "learning_rate": 0.0006,
+ "loss": 5.411937713623047,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.29528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 5.515865325927734,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.29183340072631836,
+ "learning_rate": 0.0006,
+ "loss": 5.555085182189941,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.2930097281932831,
+ "learning_rate": 0.0006,
+ "loss": 5.479012489318848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.275192528963089,
+ "learning_rate": 0.0006,
+ "loss": 5.494257926940918,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.23861193656921387,
+ "learning_rate": 0.0006,
+ "loss": 5.540584087371826,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.24641959369182587,
+ "learning_rate": 0.0006,
+ "loss": 5.480778694152832,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.2617979943752289,
+ "learning_rate": 0.0006,
+ "loss": 5.469037055969238,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25543612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.443512439727783,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.23829562962055206,
+ "learning_rate": 0.0006,
+ "loss": 5.476701259613037,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.23470483720302582,
+ "learning_rate": 0.0006,
+ "loss": 5.5534467697143555,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.25007525086402893,
+ "learning_rate": 0.0006,
+ "loss": 5.593554973602295,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.21606403589248657,
+ "learning_rate": 0.0006,
+ "loss": 5.417296886444092,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.21263711154460907,
+ "learning_rate": 0.0006,
+ "loss": 5.479785442352295,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.24901609122753143,
+ "learning_rate": 0.0006,
+ "loss": 5.495370864868164,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.26031458377838135,
+ "learning_rate": 0.0006,
+ "loss": 5.509091377258301,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.29759082198143005,
+ "learning_rate": 0.0006,
+ "loss": 5.584280490875244,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.3099640905857086,
+ "learning_rate": 0.0006,
+ "loss": 5.425285339355469,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.27953553199768066,
+ "learning_rate": 0.0006,
+ "loss": 5.53159236907959,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.26535776257514954,
+ "learning_rate": 0.0006,
+ "loss": 5.490127086639404,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.2457790970802307,
+ "learning_rate": 0.0006,
+ "loss": 5.418023109436035,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.24837207794189453,
+ "learning_rate": 0.0006,
+ "loss": 5.406746864318848,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2600264847278595,
+ "learning_rate": 0.0006,
+ "loss": 5.44478702545166,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21536527574062347,
+ "learning_rate": 0.0006,
+ "loss": 5.50275993347168,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.21745696663856506,
+ "learning_rate": 0.0006,
+ "loss": 5.520674705505371,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.20913533866405487,
+ "learning_rate": 0.0006,
+ "loss": 5.470664024353027,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.20784462988376617,
+ "learning_rate": 0.0006,
+ "loss": 5.476020812988281,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.2091527134180069,
+ "learning_rate": 0.0006,
+ "loss": 5.413854598999023,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.1928723305463791,
+ "learning_rate": 0.0006,
+ "loss": 5.551363468170166,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.19090701639652252,
+ "learning_rate": 0.0006,
+ "loss": 5.438357353210449,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.19892136752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.524226188659668,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.2162298709154129,
+ "learning_rate": 0.0006,
+ "loss": 5.461916923522949,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.20944544672966003,
+ "learning_rate": 0.0006,
+ "loss": 5.418921947479248,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.20752885937690735,
+ "learning_rate": 0.0006,
+ "loss": 5.385891914367676,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2114097774028778,
+ "learning_rate": 0.0006,
+ "loss": 5.423875331878662,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2189403772354126,
+ "learning_rate": 0.0006,
+ "loss": 5.4848246574401855,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.22628231346607208,
+ "learning_rate": 0.0006,
+ "loss": 5.53687047958374,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.24267324805259705,
+ "learning_rate": 0.0006,
+ "loss": 5.492481231689453,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.23865142464637756,
+ "learning_rate": 0.0006,
+ "loss": 5.4070281982421875,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.24391593039035797,
+ "learning_rate": 0.0006,
+ "loss": 5.408695220947266,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 5.445272445678711,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.25688326358795166,
+ "learning_rate": 0.0006,
+ "loss": 5.3538055419921875,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.2745496332645416,
+ "learning_rate": 0.0006,
+ "loss": 5.362463474273682,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 5.701802730560303,
+ "eval_runtime": 43.7043,
+ "eval_samples_per_second": 55.876,
+ "eval_steps_per_second": 3.501,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.2823609709739685,
+ "learning_rate": 0.0006,
+ "loss": 5.352010726928711,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3131018877029419,
+ "learning_rate": 0.0006,
+ "loss": 5.418367862701416,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.2989172339439392,
+ "learning_rate": 0.0006,
+ "loss": 5.412748336791992,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.32918524742126465,
+ "learning_rate": 0.0006,
+ "loss": 5.304711818695068,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.3198625147342682,
+ "learning_rate": 0.0006,
+ "loss": 5.300443649291992,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.3632674217224121,
+ "learning_rate": 0.0006,
+ "loss": 5.415508270263672,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.34659984707832336,
+ "learning_rate": 0.0006,
+ "loss": 5.428121566772461,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.3813838064670563,
+ "learning_rate": 0.0006,
+ "loss": 5.315094947814941,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.3686012029647827,
+ "learning_rate": 0.0006,
+ "loss": 5.38139533996582,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.3302355706691742,
+ "learning_rate": 0.0006,
+ "loss": 5.403790473937988,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.30271267890930176,
+ "learning_rate": 0.0006,
+ "loss": 5.444093227386475,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.26559701561927795,
+ "learning_rate": 0.0006,
+ "loss": 5.411899566650391,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2555657625198364,
+ "learning_rate": 0.0006,
+ "loss": 5.481373310089111,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.24459399282932281,
+ "learning_rate": 0.0006,
+ "loss": 5.410351753234863,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.23918263614177704,
+ "learning_rate": 0.0006,
+ "loss": 5.519461631774902,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.22651147842407227,
+ "learning_rate": 0.0006,
+ "loss": 5.327581882476807,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2411438375711441,
+ "learning_rate": 0.0006,
+ "loss": 5.397500514984131,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26155999302864075,
+ "learning_rate": 0.0006,
+ "loss": 5.370786666870117,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2526859641075134,
+ "learning_rate": 0.0006,
+ "loss": 5.350700378417969,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.27394750714302063,
+ "learning_rate": 0.0006,
+ "loss": 5.408090114593506,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.28895804286003113,
+ "learning_rate": 0.0006,
+ "loss": 5.423943519592285,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.27557098865509033,
+ "learning_rate": 0.0006,
+ "loss": 5.370429992675781,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.23441526293754578,
+ "learning_rate": 0.0006,
+ "loss": 5.359104633331299,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.23849990963935852,
+ "learning_rate": 0.0006,
+ "loss": 5.431253910064697,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.2148221731185913,
+ "learning_rate": 0.0006,
+ "loss": 5.44110107421875,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.22282063961029053,
+ "learning_rate": 0.0006,
+ "loss": 5.388728141784668,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.20132285356521606,
+ "learning_rate": 0.0006,
+ "loss": 5.4478607177734375,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.21568115055561066,
+ "learning_rate": 0.0006,
+ "loss": 5.347871780395508,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.19823719561100006,
+ "learning_rate": 0.0006,
+ "loss": 5.372270584106445,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.21509110927581787,
+ "learning_rate": 0.0006,
+ "loss": 5.399641990661621,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.22729133069515228,
+ "learning_rate": 0.0006,
+ "loss": 5.358110427856445,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.220210999250412,
+ "learning_rate": 0.0006,
+ "loss": 5.419817924499512,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.23258209228515625,
+ "learning_rate": 0.0006,
+ "loss": 5.391242027282715,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.23943443596363068,
+ "learning_rate": 0.0006,
+ "loss": 5.404782295227051,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.21956051886081696,
+ "learning_rate": 0.0006,
+ "loss": 5.403984069824219,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.21972179412841797,
+ "learning_rate": 0.0006,
+ "loss": 5.441257476806641,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.2221074104309082,
+ "learning_rate": 0.0006,
+ "loss": 5.437508583068848,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2411271184682846,
+ "learning_rate": 0.0006,
+ "loss": 5.354068279266357,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.234665647149086,
+ "learning_rate": 0.0006,
+ "loss": 5.454868316650391,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.22195792198181152,
+ "learning_rate": 0.0006,
+ "loss": 5.387381076812744,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.20657478272914886,
+ "learning_rate": 0.0006,
+ "loss": 5.501956939697266,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.19500425457954407,
+ "learning_rate": 0.0006,
+ "loss": 5.378862380981445,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.19586005806922913,
+ "learning_rate": 0.0006,
+ "loss": 5.338445663452148,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.1847185641527176,
+ "learning_rate": 0.0006,
+ "loss": 5.49556827545166,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21331416070461273,
+ "learning_rate": 0.0006,
+ "loss": 5.407313823699951,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.23296937346458435,
+ "learning_rate": 0.0006,
+ "loss": 5.425869941711426,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.24049508571624756,
+ "learning_rate": 0.0006,
+ "loss": 5.338667392730713,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.2621031701564789,
+ "learning_rate": 0.0006,
+ "loss": 5.471851348876953,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.26271969079971313,
+ "learning_rate": 0.0006,
+ "loss": 5.4478302001953125,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.24863135814666748,
+ "learning_rate": 0.0006,
+ "loss": 5.307272911071777,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.23176346719264984,
+ "learning_rate": 0.0006,
+ "loss": 5.37800407409668,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.23985841870307922,
+ "learning_rate": 0.0006,
+ "loss": 5.395917892456055,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.2525685727596283,
+ "learning_rate": 0.0006,
+ "loss": 5.462656021118164,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.28260284662246704,
+ "learning_rate": 0.0006,
+ "loss": 5.401722431182861,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.27695170044898987,
+ "learning_rate": 0.0006,
+ "loss": 5.3491339683532715,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.2863304615020752,
+ "learning_rate": 0.0006,
+ "loss": 5.350625991821289,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.29488155245780945,
+ "learning_rate": 0.0006,
+ "loss": 5.431126117706299,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2891555726528168,
+ "learning_rate": 0.0006,
+ "loss": 5.504979610443115,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.321660578250885,
+ "learning_rate": 0.0006,
+ "loss": 5.436343669891357,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.30567607283592224,
+ "learning_rate": 0.0006,
+ "loss": 5.421395301818848,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.29697132110595703,
+ "learning_rate": 0.0006,
+ "loss": 5.280340194702148,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.3183361887931824,
+ "learning_rate": 0.0006,
+ "loss": 5.404831409454346,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.30622249841690063,
+ "learning_rate": 0.0006,
+ "loss": 5.346714019775391,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.32582059502601624,
+ "learning_rate": 0.0006,
+ "loss": 5.416952610015869,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.3775727450847626,
+ "learning_rate": 0.0006,
+ "loss": 5.466579437255859,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.34336867928504944,
+ "learning_rate": 0.0006,
+ "loss": 5.434803485870361,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.3192700147628784,
+ "learning_rate": 0.0006,
+ "loss": 5.402613639831543,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.30478960275650024,
+ "learning_rate": 0.0006,
+ "loss": 5.423070907592773,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.2911394238471985,
+ "learning_rate": 0.0006,
+ "loss": 5.460273742675781,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.2869839370250702,
+ "learning_rate": 0.0006,
+ "loss": 5.3799872398376465,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.28053098917007446,
+ "learning_rate": 0.0006,
+ "loss": 5.361473083496094,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.26653704047203064,
+ "learning_rate": 0.0006,
+ "loss": 5.602841377258301,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 5.668482303619385,
+ "eval_runtime": 43.6738,
+ "eval_samples_per_second": 55.915,
+ "eval_steps_per_second": 3.503,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2517155110836029,
+ "learning_rate": 0.0006,
+ "loss": 5.400821685791016,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.25225555896759033,
+ "learning_rate": 0.0006,
+ "loss": 5.301854610443115,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.26194384694099426,
+ "learning_rate": 0.0006,
+ "loss": 5.371086597442627,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.29355189204216003,
+ "learning_rate": 0.0006,
+ "loss": 5.274545669555664,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.3479173183441162,
+ "learning_rate": 0.0006,
+ "loss": 5.3346452713012695,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.3515247702598572,
+ "learning_rate": 0.0006,
+ "loss": 5.320218086242676,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.31685250997543335,
+ "learning_rate": 0.0006,
+ "loss": 5.3113532066345215,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.3186306059360504,
+ "learning_rate": 0.0006,
+ "loss": 5.268630027770996,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.30970191955566406,
+ "learning_rate": 0.0006,
+ "loss": 5.27927303314209,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.3204534351825714,
+ "learning_rate": 0.0006,
+ "loss": 5.307002067565918,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.3460717797279358,
+ "learning_rate": 0.0006,
+ "loss": 5.370156288146973,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.3750753402709961,
+ "learning_rate": 0.0006,
+ "loss": 5.430266857147217,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.39788949489593506,
+ "learning_rate": 0.0006,
+ "loss": 5.488982677459717,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.4103301167488098,
+ "learning_rate": 0.0006,
+ "loss": 5.356131076812744,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.41570961475372314,
+ "learning_rate": 0.0006,
+ "loss": 5.403252124786377,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.38763976097106934,
+ "learning_rate": 0.0006,
+ "loss": 5.31208610534668,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.31339961290359497,
+ "learning_rate": 0.0006,
+ "loss": 5.349184989929199,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.300326406955719,
+ "learning_rate": 0.0006,
+ "loss": 5.38037109375,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.2733759582042694,
+ "learning_rate": 0.0006,
+ "loss": 5.382787704467773,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.2689371407032013,
+ "learning_rate": 0.0006,
+ "loss": 5.250777244567871,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.23818561434745789,
+ "learning_rate": 0.0006,
+ "loss": 5.407890319824219,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.2638513445854187,
+ "learning_rate": 0.0006,
+ "loss": 5.361644744873047,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.27431631088256836,
+ "learning_rate": 0.0006,
+ "loss": 5.272324562072754,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.22540521621704102,
+ "learning_rate": 0.0006,
+ "loss": 5.347329616546631,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.22063416242599487,
+ "learning_rate": 0.0006,
+ "loss": 5.370515823364258,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.22735954821109772,
+ "learning_rate": 0.0006,
+ "loss": 5.259304046630859,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2520729899406433,
+ "learning_rate": 0.0006,
+ "loss": 5.287688255310059,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.23238341510295868,
+ "learning_rate": 0.0006,
+ "loss": 5.420382022857666,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2224305123090744,
+ "learning_rate": 0.0006,
+ "loss": 5.348190784454346,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.24172906577587128,
+ "learning_rate": 0.0006,
+ "loss": 5.336545944213867,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.2485753744840622,
+ "learning_rate": 0.0006,
+ "loss": 5.315828800201416,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.2570796012878418,
+ "learning_rate": 0.0006,
+ "loss": 5.401761054992676,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.2436138093471527,
+ "learning_rate": 0.0006,
+ "loss": 5.359231472015381,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.2560061812400818,
+ "learning_rate": 0.0006,
+ "loss": 5.409191608428955,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.2567649781703949,
+ "learning_rate": 0.0006,
+ "loss": 5.30457878112793,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.22417397797107697,
+ "learning_rate": 0.0006,
+ "loss": 5.341818809509277,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.239775612950325,
+ "learning_rate": 0.0006,
+ "loss": 5.300765037536621,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.23418492078781128,
+ "learning_rate": 0.0006,
+ "loss": 5.399696350097656,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20811130106449127,
+ "learning_rate": 0.0006,
+ "loss": 5.351508140563965,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20079803466796875,
+ "learning_rate": 0.0006,
+ "loss": 5.478349685668945,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.2218439131975174,
+ "learning_rate": 0.0006,
+ "loss": 5.26702880859375,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.22995811700820923,
+ "learning_rate": 0.0006,
+ "loss": 5.234731674194336,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.22052770853042603,
+ "learning_rate": 0.0006,
+ "loss": 5.379652976989746,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.20963090658187866,
+ "learning_rate": 0.0006,
+ "loss": 5.513314247131348,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.21753741800785065,
+ "learning_rate": 0.0006,
+ "loss": 5.354637145996094,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.22431719303131104,
+ "learning_rate": 0.0006,
+ "loss": 5.399886608123779,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2273576855659485,
+ "learning_rate": 0.0006,
+ "loss": 5.350360870361328,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.23153741657733917,
+ "learning_rate": 0.0006,
+ "loss": 5.456831932067871,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.23769985139369965,
+ "learning_rate": 0.0006,
+ "loss": 5.234253883361816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.2502037286758423,
+ "learning_rate": 0.0006,
+ "loss": 5.3578386306762695,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.24753837287425995,
+ "learning_rate": 0.0006,
+ "loss": 5.44490385055542,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.22869615256786346,
+ "learning_rate": 0.0006,
+ "loss": 5.462416648864746,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.21328283846378326,
+ "learning_rate": 0.0006,
+ "loss": 5.385837554931641,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.21126222610473633,
+ "learning_rate": 0.0006,
+ "loss": 5.366550445556641,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.22234782576560974,
+ "learning_rate": 0.0006,
+ "loss": 5.447994709014893,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.20284229516983032,
+ "learning_rate": 0.0006,
+ "loss": 5.351039886474609,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.20998170971870422,
+ "learning_rate": 0.0006,
+ "loss": 5.373875141143799,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.1929178237915039,
+ "learning_rate": 0.0006,
+ "loss": 5.268383026123047,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.20056775212287903,
+ "learning_rate": 0.0006,
+ "loss": 5.372515678405762,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.23017975687980652,
+ "learning_rate": 0.0006,
+ "loss": 5.417738914489746,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.23854686319828033,
+ "learning_rate": 0.0006,
+ "loss": 5.423186302185059,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.23282013833522797,
+ "learning_rate": 0.0006,
+ "loss": 5.3433332443237305,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.22738713026046753,
+ "learning_rate": 0.0006,
+ "loss": 5.349126815795898,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.20273706316947937,
+ "learning_rate": 0.0006,
+ "loss": 5.351724624633789,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.20801417529582977,
+ "learning_rate": 0.0006,
+ "loss": 5.329565525054932,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.2105943113565445,
+ "learning_rate": 0.0006,
+ "loss": 5.375546455383301,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.21905794739723206,
+ "learning_rate": 0.0006,
+ "loss": 5.306537628173828,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.21285602450370789,
+ "learning_rate": 0.0006,
+ "loss": 5.411121845245361,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.21924427151679993,
+ "learning_rate": 0.0006,
+ "loss": 5.320544242858887,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2441461980342865,
+ "learning_rate": 0.0006,
+ "loss": 5.351615905761719,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.29617059230804443,
+ "learning_rate": 0.0006,
+ "loss": 5.302518844604492,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.30096009373664856,
+ "learning_rate": 0.0006,
+ "loss": 5.329667568206787,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 5.6682047843933105,
+ "eval_runtime": 43.7882,
+ "eval_samples_per_second": 55.769,
+ "eval_steps_per_second": 3.494,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2811761200428009,
+ "learning_rate": 0.0006,
+ "loss": 5.243203163146973,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.30495163798332214,
+ "learning_rate": 0.0006,
+ "loss": 5.356688499450684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.31131789088249207,
+ "learning_rate": 0.0006,
+ "loss": 5.302412986755371,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.30906084179878235,
+ "learning_rate": 0.0006,
+ "loss": 5.313997745513916,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.35891371965408325,
+ "learning_rate": 0.0006,
+ "loss": 5.260734558105469,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.3945420980453491,
+ "learning_rate": 0.0006,
+ "loss": 5.422075271606445,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.47589775919914246,
+ "learning_rate": 0.0006,
+ "loss": 5.40498161315918,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.5564430952072144,
+ "learning_rate": 0.0006,
+ "loss": 5.303945541381836,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.5541893839836121,
+ "learning_rate": 0.0006,
+ "loss": 5.373122215270996,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.475771963596344,
+ "learning_rate": 0.0006,
+ "loss": 5.277888774871826,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.45312613248825073,
+ "learning_rate": 0.0006,
+ "loss": 5.328540325164795,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.43582335114479065,
+ "learning_rate": 0.0006,
+ "loss": 5.352219104766846,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.4241288900375366,
+ "learning_rate": 0.0006,
+ "loss": 5.299115180969238,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.3606971204280853,
+ "learning_rate": 0.0006,
+ "loss": 5.407958984375,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.33983156085014343,
+ "learning_rate": 0.0006,
+ "loss": 5.393044471740723,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.26730453968048096,
+ "learning_rate": 0.0006,
+ "loss": 5.385805130004883,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.2872358560562134,
+ "learning_rate": 0.0006,
+ "loss": 5.274324893951416,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.30289822816848755,
+ "learning_rate": 0.0006,
+ "loss": 5.269166946411133,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.2945769727230072,
+ "learning_rate": 0.0006,
+ "loss": 5.32462215423584,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.23142823576927185,
+ "learning_rate": 0.0006,
+ "loss": 5.312024116516113,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.2177809625864029,
+ "learning_rate": 0.0006,
+ "loss": 5.33745813369751,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.22375614941120148,
+ "learning_rate": 0.0006,
+ "loss": 5.35107421875,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.22402849793434143,
+ "learning_rate": 0.0006,
+ "loss": 5.4020915031433105,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.24018633365631104,
+ "learning_rate": 0.0006,
+ "loss": 5.275900840759277,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.2500867247581482,
+ "learning_rate": 0.0006,
+ "loss": 5.295881271362305,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.233889639377594,
+ "learning_rate": 0.0006,
+ "loss": 5.322026252746582,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.21045687794685364,
+ "learning_rate": 0.0006,
+ "loss": 5.270153999328613,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.20466747879981995,
+ "learning_rate": 0.0006,
+ "loss": 5.377721786499023,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.19784900546073914,
+ "learning_rate": 0.0006,
+ "loss": 5.220702648162842,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19588062167167664,
+ "learning_rate": 0.0006,
+ "loss": 5.235785961151123,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.20435255765914917,
+ "learning_rate": 0.0006,
+ "loss": 5.438636779785156,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.2016286551952362,
+ "learning_rate": 0.0006,
+ "loss": 5.238613605499268,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22305959463119507,
+ "learning_rate": 0.0006,
+ "loss": 5.325604438781738,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21108661592006683,
+ "learning_rate": 0.0006,
+ "loss": 5.378195762634277,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.21241402626037598,
+ "learning_rate": 0.0006,
+ "loss": 5.405506134033203,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2245025932788849,
+ "learning_rate": 0.0006,
+ "loss": 5.393327236175537,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.22341221570968628,
+ "learning_rate": 0.0006,
+ "loss": 5.303647041320801,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.20067529380321503,
+ "learning_rate": 0.0006,
+ "loss": 5.28472900390625,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2047356516122818,
+ "learning_rate": 0.0006,
+ "loss": 5.323779106140137,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.1970178186893463,
+ "learning_rate": 0.0006,
+ "loss": 5.314300537109375,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21459311246871948,
+ "learning_rate": 0.0006,
+ "loss": 5.236469268798828,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.2115819752216339,
+ "learning_rate": 0.0006,
+ "loss": 5.345616340637207,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.2219114601612091,
+ "learning_rate": 0.0006,
+ "loss": 5.2564544677734375,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.22153951227664948,
+ "learning_rate": 0.0006,
+ "loss": 5.335975646972656,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.22162581980228424,
+ "learning_rate": 0.0006,
+ "loss": 5.332211494445801,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.23229752480983734,
+ "learning_rate": 0.0006,
+ "loss": 5.317580223083496,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.25549501180648804,
+ "learning_rate": 0.0006,
+ "loss": 5.342965126037598,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.2504332363605499,
+ "learning_rate": 0.0006,
+ "loss": 5.395852088928223,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.22036777436733246,
+ "learning_rate": 0.0006,
+ "loss": 5.344727993011475,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.2087157517671585,
+ "learning_rate": 0.0006,
+ "loss": 5.253548622131348,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.20985430479049683,
+ "learning_rate": 0.0006,
+ "loss": 5.397682189941406,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.20615307986736298,
+ "learning_rate": 0.0006,
+ "loss": 5.3889617919921875,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.2116083800792694,
+ "learning_rate": 0.0006,
+ "loss": 5.2877678871154785,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.21703727543354034,
+ "learning_rate": 0.0006,
+ "loss": 5.295018196105957,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.19906599819660187,
+ "learning_rate": 0.0006,
+ "loss": 5.2460832595825195,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.2024357169866562,
+ "learning_rate": 0.0006,
+ "loss": 5.33261251449585,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.21019265055656433,
+ "learning_rate": 0.0006,
+ "loss": 5.312004089355469,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.2253825068473816,
+ "learning_rate": 0.0006,
+ "loss": 5.358897686004639,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.2222292274236679,
+ "learning_rate": 0.0006,
+ "loss": 5.246709823608398,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.23402784764766693,
+ "learning_rate": 0.0006,
+ "loss": 5.278278827667236,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23950520157814026,
+ "learning_rate": 0.0006,
+ "loss": 5.380267143249512,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22530865669250488,
+ "learning_rate": 0.0006,
+ "loss": 5.379363536834717,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.2235061526298523,
+ "learning_rate": 0.0006,
+ "loss": 5.223049640655518,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.18436473608016968,
+ "learning_rate": 0.0006,
+ "loss": 5.318215370178223,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.215300515294075,
+ "learning_rate": 0.0006,
+ "loss": 5.350579261779785,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2232135832309723,
+ "learning_rate": 0.0006,
+ "loss": 5.271917343139648,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.22021742165088654,
+ "learning_rate": 0.0006,
+ "loss": 5.203526973724365,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.215565025806427,
+ "learning_rate": 0.0006,
+ "loss": 5.279645919799805,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.2127339243888855,
+ "learning_rate": 0.0006,
+ "loss": 5.2797040939331055,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.23032225668430328,
+ "learning_rate": 0.0006,
+ "loss": 5.275040149688721,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.23950211703777313,
+ "learning_rate": 0.0006,
+ "loss": 5.2429094314575195,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.28141143918037415,
+ "learning_rate": 0.0006,
+ "loss": 5.2925920486450195,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 5.594668865203857,
+ "eval_runtime": 43.8667,
+ "eval_samples_per_second": 55.669,
+ "eval_steps_per_second": 3.488,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.268517404794693,
+ "learning_rate": 0.0006,
+ "loss": 5.206634521484375,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.28687119483947754,
+ "learning_rate": 0.0006,
+ "loss": 5.265403747558594,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.30280447006225586,
+ "learning_rate": 0.0006,
+ "loss": 5.263067722320557,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.28920242190361023,
+ "learning_rate": 0.0006,
+ "loss": 5.215960502624512,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.2972524166107178,
+ "learning_rate": 0.0006,
+ "loss": 5.2445831298828125,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.31916627287864685,
+ "learning_rate": 0.0006,
+ "loss": 5.191539764404297,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.3204890787601471,
+ "learning_rate": 0.0006,
+ "loss": 5.3047027587890625,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.3370935618877411,
+ "learning_rate": 0.0006,
+ "loss": 5.281445503234863,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.40339043736457825,
+ "learning_rate": 0.0006,
+ "loss": 5.324467658996582,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.507146954536438,
+ "learning_rate": 0.0006,
+ "loss": 5.340497016906738,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.7772535085678101,
+ "learning_rate": 0.0006,
+ "loss": 5.292808532714844,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 2.634092330932617,
+ "learning_rate": 0.0006,
+ "loss": 5.287813186645508,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 3.7313625812530518,
+ "learning_rate": 0.0006,
+ "loss": 5.432745933532715,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 1.5809307098388672,
+ "learning_rate": 0.0006,
+ "loss": 5.429927825927734,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 1.2831799983978271,
+ "learning_rate": 0.0006,
+ "loss": 5.616198539733887,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.9768981337547302,
+ "learning_rate": 0.0006,
+ "loss": 5.4672040939331055,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 1.6063412427902222,
+ "learning_rate": 0.0006,
+ "loss": 5.497631072998047,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 3.002875328063965,
+ "learning_rate": 0.0006,
+ "loss": 5.97117805480957,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 1.0334080457687378,
+ "learning_rate": 0.0006,
+ "loss": 5.50777530670166,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 3.2083237171173096,
+ "learning_rate": 0.0006,
+ "loss": 5.914135932922363,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 1.8697013854980469,
+ "learning_rate": 0.0006,
+ "loss": 5.975892543792725,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 1.043823480606079,
+ "learning_rate": 0.0006,
+ "loss": 5.70496940612793,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 1.3936363458633423,
+ "learning_rate": 0.0006,
+ "loss": 5.735206127166748,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 1.961361289024353,
+ "learning_rate": 0.0006,
+ "loss": 5.745145797729492,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 1.244699239730835,
+ "learning_rate": 0.0006,
+ "loss": 5.780618190765381,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 1.7253856658935547,
+ "learning_rate": 0.0006,
+ "loss": 5.8421311378479,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 1.2821335792541504,
+ "learning_rate": 0.0006,
+ "loss": 5.610851764678955,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 1.0898085832595825,
+ "learning_rate": 0.0006,
+ "loss": 5.611008644104004,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 1.4815465211868286,
+ "learning_rate": 0.0006,
+ "loss": 5.704526901245117,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.9665698409080505,
+ "learning_rate": 0.0006,
+ "loss": 5.668952465057373,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 1.3470591306686401,
+ "learning_rate": 0.0006,
+ "loss": 5.713924407958984,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.9232020974159241,
+ "learning_rate": 0.0006,
+ "loss": 5.744703769683838,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.5612555146217346,
+ "learning_rate": 0.0006,
+ "loss": 5.565181732177734,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.6280878782272339,
+ "learning_rate": 0.0006,
+ "loss": 5.62137508392334,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.588043749332428,
+ "learning_rate": 0.0006,
+ "loss": 5.525597095489502,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.5629696846008301,
+ "learning_rate": 0.0006,
+ "loss": 5.607458591461182,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.5859848260879517,
+ "learning_rate": 0.0006,
+ "loss": 5.525539398193359,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.4533674418926239,
+ "learning_rate": 0.0006,
+ "loss": 5.603240966796875,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.3954889476299286,
+ "learning_rate": 0.0006,
+ "loss": 5.450678825378418,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3337554335594177,
+ "learning_rate": 0.0006,
+ "loss": 5.575857162475586,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2975536584854126,
+ "learning_rate": 0.0006,
+ "loss": 5.56790828704834,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.25940051674842834,
+ "learning_rate": 0.0006,
+ "loss": 5.534067153930664,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.2523548901081085,
+ "learning_rate": 0.0006,
+ "loss": 5.579226493835449,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.2388245314359665,
+ "learning_rate": 0.0006,
+ "loss": 5.4635725021362305,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.21991340816020966,
+ "learning_rate": 0.0006,
+ "loss": 5.539619445800781,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.21750932931900024,
+ "learning_rate": 0.0006,
+ "loss": 5.326858043670654,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.20747368037700653,
+ "learning_rate": 0.0006,
+ "loss": 5.527308940887451,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.21140947937965393,
+ "learning_rate": 0.0006,
+ "loss": 5.391203880310059,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.18676577508449554,
+ "learning_rate": 0.0006,
+ "loss": 5.365612983703613,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.18525123596191406,
+ "learning_rate": 0.0006,
+ "loss": 5.386935710906982,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.18647386133670807,
+ "learning_rate": 0.0006,
+ "loss": 5.310349464416504,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.17195290327072144,
+ "learning_rate": 0.0006,
+ "loss": 5.3667144775390625,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.1693524420261383,
+ "learning_rate": 0.0006,
+ "loss": 5.449807167053223,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.176269993185997,
+ "learning_rate": 0.0006,
+ "loss": 5.44653844833374,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.1644030064344406,
+ "learning_rate": 0.0006,
+ "loss": 5.4297003746032715,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.1620088517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.342231273651123,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.15717625617980957,
+ "learning_rate": 0.0006,
+ "loss": 5.4412431716918945,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.162018820643425,
+ "learning_rate": 0.0006,
+ "loss": 5.357208251953125,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.1620749533176422,
+ "learning_rate": 0.0006,
+ "loss": 5.367774963378906,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.15415862202644348,
+ "learning_rate": 0.0006,
+ "loss": 5.312939643859863,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.15155629813671112,
+ "learning_rate": 0.0006,
+ "loss": 5.357489585876465,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.158340722322464,
+ "learning_rate": 0.0006,
+ "loss": 5.398462295532227,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.14943121373653412,
+ "learning_rate": 0.0006,
+ "loss": 5.470855712890625,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.15626826882362366,
+ "learning_rate": 0.0006,
+ "loss": 5.292881011962891,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.14381802082061768,
+ "learning_rate": 0.0006,
+ "loss": 5.4112653732299805,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.1431097388267517,
+ "learning_rate": 0.0006,
+ "loss": 5.394070625305176,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.14670147001743317,
+ "learning_rate": 0.0006,
+ "loss": 5.377508163452148,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.14165471494197845,
+ "learning_rate": 0.0006,
+ "loss": 5.351119041442871,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.1588159203529358,
+ "learning_rate": 0.0006,
+ "loss": 5.300822734832764,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.1554528772830963,
+ "learning_rate": 0.0006,
+ "loss": 5.33704137802124,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.14459437131881714,
+ "learning_rate": 0.0006,
+ "loss": 5.253632545471191,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.16921021044254303,
+ "learning_rate": 0.0006,
+ "loss": 5.4189839363098145,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 5.696428298950195,
+ "eval_runtime": 43.8132,
+ "eval_samples_per_second": 55.737,
+ "eval_steps_per_second": 3.492,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.1508544385433197,
+ "learning_rate": 0.0006,
+ "loss": 5.216984748840332,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.15433959662914276,
+ "learning_rate": 0.0006,
+ "loss": 5.379235744476318,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.1544702649116516,
+ "learning_rate": 0.0006,
+ "loss": 5.252911567687988,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.15166887640953064,
+ "learning_rate": 0.0006,
+ "loss": 5.262763500213623,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.15535622835159302,
+ "learning_rate": 0.0006,
+ "loss": 5.30968713760376,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.14233317971229553,
+ "learning_rate": 0.0006,
+ "loss": 5.357319355010986,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.15974777936935425,
+ "learning_rate": 0.0006,
+ "loss": 5.280327796936035,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.16998064517974854,
+ "learning_rate": 0.0006,
+ "loss": 5.299193382263184,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.14781345427036285,
+ "learning_rate": 0.0006,
+ "loss": 5.294795989990234,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.1585189700126648,
+ "learning_rate": 0.0006,
+ "loss": 5.274531841278076,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.17388184368610382,
+ "learning_rate": 0.0006,
+ "loss": 5.275755882263184,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.17372526228427887,
+ "learning_rate": 0.0006,
+ "loss": 5.306685447692871,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.16036204993724823,
+ "learning_rate": 0.0006,
+ "loss": 5.2653303146362305,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.14267998933792114,
+ "learning_rate": 0.0006,
+ "loss": 5.248013496398926,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.15822364389896393,
+ "learning_rate": 0.0006,
+ "loss": 5.417685508728027,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.19931885600090027,
+ "learning_rate": 0.0006,
+ "loss": 5.275448799133301,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.1999068409204483,
+ "learning_rate": 0.0006,
+ "loss": 5.262545108795166,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.17416751384735107,
+ "learning_rate": 0.0006,
+ "loss": 5.244211196899414,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.1515553742647171,
+ "learning_rate": 0.0006,
+ "loss": 5.392203330993652,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.17726141214370728,
+ "learning_rate": 0.0006,
+ "loss": 5.2419233322143555,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.1828036606311798,
+ "learning_rate": 0.0006,
+ "loss": 5.282532691955566,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.15202546119689941,
+ "learning_rate": 0.0006,
+ "loss": 5.300881385803223,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.15593421459197998,
+ "learning_rate": 0.0006,
+ "loss": 5.301828384399414,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.1568661630153656,
+ "learning_rate": 0.0006,
+ "loss": 5.343597412109375,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.1711214929819107,
+ "learning_rate": 0.0006,
+ "loss": 5.235832214355469,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.16900734603405,
+ "learning_rate": 0.0006,
+ "loss": 5.383245944976807,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.16768740117549896,
+ "learning_rate": 0.0006,
+ "loss": 5.307095527648926,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.16473764181137085,
+ "learning_rate": 0.0006,
+ "loss": 5.286349296569824,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.16201059520244598,
+ "learning_rate": 0.0006,
+ "loss": 5.328096389770508,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.14755254983901978,
+ "learning_rate": 0.0006,
+ "loss": 5.325109958648682,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.15542708337306976,
+ "learning_rate": 0.0006,
+ "loss": 5.235653877258301,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.16875024139881134,
+ "learning_rate": 0.0006,
+ "loss": 5.273266315460205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.1655927300453186,
+ "learning_rate": 0.0006,
+ "loss": 5.244105339050293,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.1571531593799591,
+ "learning_rate": 0.0006,
+ "loss": 5.2292609214782715,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.16960002481937408,
+ "learning_rate": 0.0006,
+ "loss": 5.373756408691406,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.17265063524246216,
+ "learning_rate": 0.0006,
+ "loss": 5.20701789855957,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.20494453608989716,
+ "learning_rate": 0.0006,
+ "loss": 5.334190368652344,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.20382195711135864,
+ "learning_rate": 0.0006,
+ "loss": 5.1894426345825195,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.18001940846443176,
+ "learning_rate": 0.0006,
+ "loss": 5.257556438446045,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.1702738106250763,
+ "learning_rate": 0.0006,
+ "loss": 5.27550745010376,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.16527216136455536,
+ "learning_rate": 0.0006,
+ "loss": 5.288269519805908,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.1757669299840927,
+ "learning_rate": 0.0006,
+ "loss": 5.332633018493652,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.1620502769947052,
+ "learning_rate": 0.0006,
+ "loss": 5.263341426849365,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.16916924715042114,
+ "learning_rate": 0.0006,
+ "loss": 5.260773658752441,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.18047863245010376,
+ "learning_rate": 0.0006,
+ "loss": 5.236542701721191,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.16433413326740265,
+ "learning_rate": 0.0006,
+ "loss": 5.3167724609375,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.1561516523361206,
+ "learning_rate": 0.0006,
+ "loss": 5.296553611755371,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.18069198727607727,
+ "learning_rate": 0.0006,
+ "loss": 5.310213088989258,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.17307107150554657,
+ "learning_rate": 0.0006,
+ "loss": 5.246308326721191,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1621793508529663,
+ "learning_rate": 0.0006,
+ "loss": 5.300996780395508,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.16767334938049316,
+ "learning_rate": 0.0006,
+ "loss": 5.304237365722656,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.17075982689857483,
+ "learning_rate": 0.0006,
+ "loss": 5.284348487854004,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1644420325756073,
+ "learning_rate": 0.0006,
+ "loss": 5.298612594604492,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.15959575772285461,
+ "learning_rate": 0.0006,
+ "loss": 5.246997356414795,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.17883077263832092,
+ "learning_rate": 0.0006,
+ "loss": 5.344723701477051,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.1846189796924591,
+ "learning_rate": 0.0006,
+ "loss": 5.294157981872559,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.16811634600162506,
+ "learning_rate": 0.0006,
+ "loss": 5.281405448913574,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.16511738300323486,
+ "learning_rate": 0.0006,
+ "loss": 5.227143287658691,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.17974531650543213,
+ "learning_rate": 0.0006,
+ "loss": 5.223125457763672,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.16356009244918823,
+ "learning_rate": 0.0006,
+ "loss": 5.330470085144043,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.17711497843265533,
+ "learning_rate": 0.0006,
+ "loss": 5.289364814758301,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.1672852784395218,
+ "learning_rate": 0.0006,
+ "loss": 5.221701622009277,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.17097748816013336,
+ "learning_rate": 0.0006,
+ "loss": 5.275799751281738,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.1763896644115448,
+ "learning_rate": 0.0006,
+ "loss": 5.358250617980957,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.17033644020557404,
+ "learning_rate": 0.0006,
+ "loss": 5.238468170166016,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.17423082888126373,
+ "learning_rate": 0.0006,
+ "loss": 5.15692138671875,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.1651715785264969,
+ "learning_rate": 0.0006,
+ "loss": 5.188174724578857,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.1734541803598404,
+ "learning_rate": 0.0006,
+ "loss": 5.289035797119141,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.1680913120508194,
+ "learning_rate": 0.0006,
+ "loss": 5.383774280548096,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.1805446445941925,
+ "learning_rate": 0.0006,
+ "loss": 5.1627092361450195,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.17059357464313507,
+ "learning_rate": 0.0006,
+ "loss": 5.21967077255249,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.19712750613689423,
+ "learning_rate": 0.0006,
+ "loss": 5.295194625854492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 5.66721248626709,
+ "eval_runtime": 43.8141,
+ "eval_samples_per_second": 55.735,
+ "eval_steps_per_second": 3.492,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.19564273953437805,
+ "learning_rate": 0.0006,
+ "loss": 5.185278415679932,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.18979528546333313,
+ "learning_rate": 0.0006,
+ "loss": 5.200878620147705,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.20642471313476562,
+ "learning_rate": 0.0006,
+ "loss": 5.1589741706848145,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.2118985950946808,
+ "learning_rate": 0.0006,
+ "loss": 5.1529951095581055,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.24164000153541565,
+ "learning_rate": 0.0006,
+ "loss": 5.229062080383301,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.3100564181804657,
+ "learning_rate": 0.0006,
+ "loss": 5.189663410186768,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.3423652648925781,
+ "learning_rate": 0.0006,
+ "loss": 5.254951000213623,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.3083256483078003,
+ "learning_rate": 0.0006,
+ "loss": 5.269841194152832,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.21933980286121368,
+ "learning_rate": 0.0006,
+ "loss": 5.292701721191406,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.18515072762966156,
+ "learning_rate": 0.0006,
+ "loss": 5.191471576690674,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.2094096690416336,
+ "learning_rate": 0.0006,
+ "loss": 5.104595184326172,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.20129317045211792,
+ "learning_rate": 0.0006,
+ "loss": 5.234576225280762,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.17466552555561066,
+ "learning_rate": 0.0006,
+ "loss": 5.289767265319824,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.19658249616622925,
+ "learning_rate": 0.0006,
+ "loss": 5.18093729019165,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.19998866319656372,
+ "learning_rate": 0.0006,
+ "loss": 5.066697597503662,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.1858641654253006,
+ "learning_rate": 0.0006,
+ "loss": 5.119396209716797,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.18404969573020935,
+ "learning_rate": 0.0006,
+ "loss": 5.224040985107422,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.18422341346740723,
+ "learning_rate": 0.0006,
+ "loss": 5.1405029296875,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.18862658739089966,
+ "learning_rate": 0.0006,
+ "loss": 5.355284690856934,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.19635331630706787,
+ "learning_rate": 0.0006,
+ "loss": 5.113595008850098,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2001960724592209,
+ "learning_rate": 0.0006,
+ "loss": 5.287153244018555,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.19163401424884796,
+ "learning_rate": 0.0006,
+ "loss": 5.3219218254089355,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.20054425299167633,
+ "learning_rate": 0.0006,
+ "loss": 5.241769790649414,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21831995248794556,
+ "learning_rate": 0.0006,
+ "loss": 5.159400939941406,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.21486212313175201,
+ "learning_rate": 0.0006,
+ "loss": 5.230709075927734,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.18859818577766418,
+ "learning_rate": 0.0006,
+ "loss": 5.243487358093262,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.16232441365718842,
+ "learning_rate": 0.0006,
+ "loss": 5.2459540367126465,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.19122375547885895,
+ "learning_rate": 0.0006,
+ "loss": 5.2872419357299805,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.19040699303150177,
+ "learning_rate": 0.0006,
+ "loss": 5.34330415725708,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.18805427849292755,
+ "learning_rate": 0.0006,
+ "loss": 5.250277042388916,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.1678844690322876,
+ "learning_rate": 0.0006,
+ "loss": 5.234208583831787,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.18143028020858765,
+ "learning_rate": 0.0006,
+ "loss": 5.184875965118408,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.19044774770736694,
+ "learning_rate": 0.0006,
+ "loss": 5.246286869049072,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.19798822700977325,
+ "learning_rate": 0.0006,
+ "loss": 5.358006477355957,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.20508800446987152,
+ "learning_rate": 0.0006,
+ "loss": 5.18587064743042,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.19020266830921173,
+ "learning_rate": 0.0006,
+ "loss": 5.15853214263916,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.18016308546066284,
+ "learning_rate": 0.0006,
+ "loss": 5.232977867126465,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.1721707284450531,
+ "learning_rate": 0.0006,
+ "loss": 5.2227911949157715,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.17515826225280762,
+ "learning_rate": 0.0006,
+ "loss": 5.1247663497924805,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.18868598341941833,
+ "learning_rate": 0.0006,
+ "loss": 5.19450569152832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.18558132648468018,
+ "learning_rate": 0.0006,
+ "loss": 5.34141731262207,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.18554642796516418,
+ "learning_rate": 0.0006,
+ "loss": 5.325274467468262,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.17876847088336945,
+ "learning_rate": 0.0006,
+ "loss": 5.253347396850586,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.18600207567214966,
+ "learning_rate": 0.0006,
+ "loss": 5.213280200958252,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.18968167901039124,
+ "learning_rate": 0.0006,
+ "loss": 5.2744550704956055,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.18559452891349792,
+ "learning_rate": 0.0006,
+ "loss": 5.143500328063965,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.17711003124713898,
+ "learning_rate": 0.0006,
+ "loss": 5.256546974182129,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.18470294773578644,
+ "learning_rate": 0.0006,
+ "loss": 5.028461456298828,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.19510863721370697,
+ "learning_rate": 0.0006,
+ "loss": 5.111203193664551,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.19344113767147064,
+ "learning_rate": 0.0006,
+ "loss": 5.162373065948486,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.19430287182331085,
+ "learning_rate": 0.0006,
+ "loss": 5.290411949157715,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.18198102712631226,
+ "learning_rate": 0.0006,
+ "loss": 5.216563701629639,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.17468412220478058,
+ "learning_rate": 0.0006,
+ "loss": 5.284984111785889,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.19075907766819,
+ "learning_rate": 0.0006,
+ "loss": 5.221469879150391,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.1799728125333786,
+ "learning_rate": 0.0006,
+ "loss": 5.260301113128662,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.19200323522090912,
+ "learning_rate": 0.0006,
+ "loss": 5.187095642089844,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.1879507303237915,
+ "learning_rate": 0.0006,
+ "loss": 5.169459342956543,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.1902618706226349,
+ "learning_rate": 0.0006,
+ "loss": 5.334763050079346,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.24053145945072174,
+ "learning_rate": 0.0006,
+ "loss": 5.269155502319336,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.24176867306232452,
+ "learning_rate": 0.0006,
+ "loss": 5.299339771270752,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.2009315937757492,
+ "learning_rate": 0.0006,
+ "loss": 5.237770080566406,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.18593566119670868,
+ "learning_rate": 0.0006,
+ "loss": 5.296274185180664,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.2023659497499466,
+ "learning_rate": 0.0006,
+ "loss": 5.168476581573486,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.20251823961734772,
+ "learning_rate": 0.0006,
+ "loss": 5.151587963104248,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.1936579942703247,
+ "learning_rate": 0.0006,
+ "loss": 5.258876800537109,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.1907888650894165,
+ "learning_rate": 0.0006,
+ "loss": 5.215426921844482,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.18817077577114105,
+ "learning_rate": 0.0006,
+ "loss": 5.164956569671631,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.1815827637910843,
+ "learning_rate": 0.0006,
+ "loss": 5.257287979125977,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.1947816014289856,
+ "learning_rate": 0.0006,
+ "loss": 5.269985675811768,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.1970149129629135,
+ "learning_rate": 0.0006,
+ "loss": 5.130256652832031,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.18987394869327545,
+ "learning_rate": 0.0006,
+ "loss": 5.180811882019043,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.21073287725448608,
+ "learning_rate": 0.0006,
+ "loss": 5.259803771972656,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 5.62413215637207,
+ "eval_runtime": 43.756,
+ "eval_samples_per_second": 55.809,
+ "eval_steps_per_second": 3.497,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.20203346014022827,
+ "learning_rate": 0.0006,
+ "loss": 5.169769763946533,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.2524625062942505,
+ "learning_rate": 0.0006,
+ "loss": 5.303519248962402,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.2558414936065674,
+ "learning_rate": 0.0006,
+ "loss": 5.241545677185059,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.2328498661518097,
+ "learning_rate": 0.0006,
+ "loss": 5.226499557495117,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.2836860418319702,
+ "learning_rate": 0.0006,
+ "loss": 5.219524383544922,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.29811322689056396,
+ "learning_rate": 0.0006,
+ "loss": 5.102436542510986,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.24998345971107483,
+ "learning_rate": 0.0006,
+ "loss": 5.111330986022949,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.2168843001127243,
+ "learning_rate": 0.0006,
+ "loss": 5.109940528869629,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2176746129989624,
+ "learning_rate": 0.0006,
+ "loss": 5.184049606323242,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.2113415151834488,
+ "learning_rate": 0.0006,
+ "loss": 5.192159652709961,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2109106034040451,
+ "learning_rate": 0.0006,
+ "loss": 5.187472343444824,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.20740315318107605,
+ "learning_rate": 0.0006,
+ "loss": 5.161791801452637,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2015974372625351,
+ "learning_rate": 0.0006,
+ "loss": 5.187140464782715,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.2162085920572281,
+ "learning_rate": 0.0006,
+ "loss": 5.141480445861816,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.22150751948356628,
+ "learning_rate": 0.0006,
+ "loss": 5.158633232116699,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.24955958127975464,
+ "learning_rate": 0.0006,
+ "loss": 5.0507402420043945,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.279868483543396,
+ "learning_rate": 0.0006,
+ "loss": 5.1474714279174805,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2844744324684143,
+ "learning_rate": 0.0006,
+ "loss": 5.252038955688477,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.29039332270622253,
+ "learning_rate": 0.0006,
+ "loss": 5.2118024826049805,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.29647791385650635,
+ "learning_rate": 0.0006,
+ "loss": 5.1601667404174805,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.25772029161453247,
+ "learning_rate": 0.0006,
+ "loss": 5.098719596862793,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.2502257525920868,
+ "learning_rate": 0.0006,
+ "loss": 5.17006778717041,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.2635626494884491,
+ "learning_rate": 0.0006,
+ "loss": 5.177725791931152,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.2503126263618469,
+ "learning_rate": 0.0006,
+ "loss": 5.206583499908447,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.21285821497440338,
+ "learning_rate": 0.0006,
+ "loss": 5.145149230957031,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.21944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.246551036834717,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.22044330835342407,
+ "learning_rate": 0.0006,
+ "loss": 5.270802021026611,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23243802785873413,
+ "learning_rate": 0.0006,
+ "loss": 5.1927714347839355,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.22166383266448975,
+ "learning_rate": 0.0006,
+ "loss": 5.114846229553223,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.20586226880550385,
+ "learning_rate": 0.0006,
+ "loss": 5.226601600646973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.19283616542816162,
+ "learning_rate": 0.0006,
+ "loss": 5.260378837585449,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.19432219862937927,
+ "learning_rate": 0.0006,
+ "loss": 5.180000305175781,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.1878765970468521,
+ "learning_rate": 0.0006,
+ "loss": 5.199154376983643,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1876903623342514,
+ "learning_rate": 0.0006,
+ "loss": 5.14310359954834,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.19183221459388733,
+ "learning_rate": 0.0006,
+ "loss": 5.311328887939453,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.20629195868968964,
+ "learning_rate": 0.0006,
+ "loss": 5.137360572814941,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.1937326043844223,
+ "learning_rate": 0.0006,
+ "loss": 5.136601448059082,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.1875763237476349,
+ "learning_rate": 0.0006,
+ "loss": 5.139512062072754,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.200182244181633,
+ "learning_rate": 0.0006,
+ "loss": 5.333898544311523,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.2057187408208847,
+ "learning_rate": 0.0006,
+ "loss": 5.145896911621094,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.20616234838962555,
+ "learning_rate": 0.0006,
+ "loss": 5.210829734802246,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.18573468923568726,
+ "learning_rate": 0.0006,
+ "loss": 5.224515914916992,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19010856747627258,
+ "learning_rate": 0.0006,
+ "loss": 5.185360431671143,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19523434340953827,
+ "learning_rate": 0.0006,
+ "loss": 5.0834808349609375,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.19569529592990875,
+ "learning_rate": 0.0006,
+ "loss": 5.180643081665039,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.18961486220359802,
+ "learning_rate": 0.0006,
+ "loss": 5.147249698638916,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.19691592454910278,
+ "learning_rate": 0.0006,
+ "loss": 5.268563270568848,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.208601713180542,
+ "learning_rate": 0.0006,
+ "loss": 5.202981948852539,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.19652457535266876,
+ "learning_rate": 0.0006,
+ "loss": 5.195627212524414,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21110516786575317,
+ "learning_rate": 0.0006,
+ "loss": 5.285345554351807,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.22382952272891998,
+ "learning_rate": 0.0006,
+ "loss": 5.280474662780762,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.24914433062076569,
+ "learning_rate": 0.0006,
+ "loss": 5.153537750244141,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.24423253536224365,
+ "learning_rate": 0.0006,
+ "loss": 5.201951026916504,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.2614354193210602,
+ "learning_rate": 0.0006,
+ "loss": 5.258858680725098,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.27466708421707153,
+ "learning_rate": 0.0006,
+ "loss": 5.072609901428223,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.2726733982563019,
+ "learning_rate": 0.0006,
+ "loss": 5.184875011444092,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.25399067997932434,
+ "learning_rate": 0.0006,
+ "loss": 5.215399265289307,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.2418612241744995,
+ "learning_rate": 0.0006,
+ "loss": 5.249844551086426,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.2621039152145386,
+ "learning_rate": 0.0006,
+ "loss": 5.153277397155762,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.22784769535064697,
+ "learning_rate": 0.0006,
+ "loss": 5.285172939300537,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2347252368927002,
+ "learning_rate": 0.0006,
+ "loss": 5.173735618591309,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.24309225380420685,
+ "learning_rate": 0.0006,
+ "loss": 5.1789751052856445,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.24149227142333984,
+ "learning_rate": 0.0006,
+ "loss": 5.207398414611816,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.224067822098732,
+ "learning_rate": 0.0006,
+ "loss": 5.193361759185791,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.24586105346679688,
+ "learning_rate": 0.0006,
+ "loss": 5.2245073318481445,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.2261350154876709,
+ "learning_rate": 0.0006,
+ "loss": 5.20590877532959,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.2213955670595169,
+ "learning_rate": 0.0006,
+ "loss": 5.049067974090576,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.20598261058330536,
+ "learning_rate": 0.0006,
+ "loss": 5.215847492218018,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21222174167633057,
+ "learning_rate": 0.0006,
+ "loss": 5.2302045822143555,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.21806564927101135,
+ "learning_rate": 0.0006,
+ "loss": 5.105254173278809,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.2072480469942093,
+ "learning_rate": 0.0006,
+ "loss": 5.214822769165039,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.23077325522899628,
+ "learning_rate": 0.0006,
+ "loss": 5.196970462799072,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 5.654223442077637,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.2191684991121292,
+ "learning_rate": 0.0006,
+ "loss": 5.126714706420898,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.226577490568161,
+ "learning_rate": 0.0006,
+ "loss": 5.214181423187256,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2312740534543991,
+ "learning_rate": 0.0006,
+ "loss": 5.077495574951172,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.23657575249671936,
+ "learning_rate": 0.0006,
+ "loss": 5.106520652770996,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.23572714626789093,
+ "learning_rate": 0.0006,
+ "loss": 5.100572109222412,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.22401896119117737,
+ "learning_rate": 0.0006,
+ "loss": 5.069843769073486,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.22093120217323303,
+ "learning_rate": 0.0006,
+ "loss": 5.072702884674072,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.2471904754638672,
+ "learning_rate": 0.0006,
+ "loss": 5.1532111167907715,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.26078829169273376,
+ "learning_rate": 0.0006,
+ "loss": 5.130000591278076,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.2602458596229553,
+ "learning_rate": 0.0006,
+ "loss": 5.1151957511901855,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.23517167568206787,
+ "learning_rate": 0.0006,
+ "loss": 4.914303302764893,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.23910944163799286,
+ "learning_rate": 0.0006,
+ "loss": 5.065474987030029,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2645898759365082,
+ "learning_rate": 0.0006,
+ "loss": 5.151179313659668,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.29884225130081177,
+ "learning_rate": 0.0006,
+ "loss": 5.1340131759643555,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.31530943512916565,
+ "learning_rate": 0.0006,
+ "loss": 5.100096702575684,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.3377172648906708,
+ "learning_rate": 0.0006,
+ "loss": 5.15244722366333,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.37589672207832336,
+ "learning_rate": 0.0006,
+ "loss": 5.210781097412109,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.32720011472702026,
+ "learning_rate": 0.0006,
+ "loss": 5.131986141204834,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2819278836250305,
+ "learning_rate": 0.0006,
+ "loss": 5.060908317565918,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.26172634959220886,
+ "learning_rate": 0.0006,
+ "loss": 5.101870536804199,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.2457413673400879,
+ "learning_rate": 0.0006,
+ "loss": 5.187873840332031,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.23412448167800903,
+ "learning_rate": 0.0006,
+ "loss": 5.130210876464844,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.23208987712860107,
+ "learning_rate": 0.0006,
+ "loss": 5.151171684265137,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.23583079874515533,
+ "learning_rate": 0.0006,
+ "loss": 5.161504745483398,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.22027769684791565,
+ "learning_rate": 0.0006,
+ "loss": 5.1577467918396,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.21678701043128967,
+ "learning_rate": 0.0006,
+ "loss": 5.1221184730529785,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.21803635358810425,
+ "learning_rate": 0.0006,
+ "loss": 5.187846660614014,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.20241068303585052,
+ "learning_rate": 0.0006,
+ "loss": 5.190372467041016,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.1980111002922058,
+ "learning_rate": 0.0006,
+ "loss": 5.1926069259643555,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.19412270188331604,
+ "learning_rate": 0.0006,
+ "loss": 5.11298942565918,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.19972920417785645,
+ "learning_rate": 0.0006,
+ "loss": 5.194392681121826,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.20725831389427185,
+ "learning_rate": 0.0006,
+ "loss": 5.128924369812012,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.21244315803050995,
+ "learning_rate": 0.0006,
+ "loss": 5.213957786560059,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.20082710683345795,
+ "learning_rate": 0.0006,
+ "loss": 5.167627334594727,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.19323207437992096,
+ "learning_rate": 0.0006,
+ "loss": 5.130486965179443,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.19602634012699127,
+ "learning_rate": 0.0006,
+ "loss": 5.200732231140137,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.19487245380878448,
+ "learning_rate": 0.0006,
+ "loss": 5.125633239746094,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.20175042748451233,
+ "learning_rate": 0.0006,
+ "loss": 5.138749122619629,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.18922971189022064,
+ "learning_rate": 0.0006,
+ "loss": 5.185815811157227,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.19993507862091064,
+ "learning_rate": 0.0006,
+ "loss": 5.195917129516602,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.19921047985553741,
+ "learning_rate": 0.0006,
+ "loss": 5.102187156677246,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.20786921679973602,
+ "learning_rate": 0.0006,
+ "loss": 5.056066513061523,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.22658804059028625,
+ "learning_rate": 0.0006,
+ "loss": 5.016035079956055,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.24314439296722412,
+ "learning_rate": 0.0006,
+ "loss": 5.206954479217529,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.23514939844608307,
+ "learning_rate": 0.0006,
+ "loss": 5.19783878326416,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.2533590793609619,
+ "learning_rate": 0.0006,
+ "loss": 5.262823581695557,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.27552348375320435,
+ "learning_rate": 0.0006,
+ "loss": 5.1396074295043945,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.2979111075401306,
+ "learning_rate": 0.0006,
+ "loss": 5.092601776123047,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2934323251247406,
+ "learning_rate": 0.0006,
+ "loss": 5.211542129516602,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2657053768634796,
+ "learning_rate": 0.0006,
+ "loss": 5.172433376312256,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.251862496137619,
+ "learning_rate": 0.0006,
+ "loss": 5.167974472045898,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.2363094538450241,
+ "learning_rate": 0.0006,
+ "loss": 5.15931510925293,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24303990602493286,
+ "learning_rate": 0.0006,
+ "loss": 5.10881233215332,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.25064617395401,
+ "learning_rate": 0.0006,
+ "loss": 5.056571960449219,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.2344101518392563,
+ "learning_rate": 0.0006,
+ "loss": 5.173024654388428,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.2171265035867691,
+ "learning_rate": 0.0006,
+ "loss": 5.257616996765137,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.21719300746917725,
+ "learning_rate": 0.0006,
+ "loss": 5.175088882446289,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.22597186267375946,
+ "learning_rate": 0.0006,
+ "loss": 5.134775161743164,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.20848046243190765,
+ "learning_rate": 0.0006,
+ "loss": 5.165854454040527,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.20795658230781555,
+ "learning_rate": 0.0006,
+ "loss": 5.176433563232422,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.23436640202999115,
+ "learning_rate": 0.0006,
+ "loss": 5.2158308029174805,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.25207704305648804,
+ "learning_rate": 0.0006,
+ "loss": 5.174585819244385,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.23457589745521545,
+ "learning_rate": 0.0006,
+ "loss": 5.1822829246521,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.24296043813228607,
+ "learning_rate": 0.0006,
+ "loss": 5.31734561920166,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.28093549609184265,
+ "learning_rate": 0.0006,
+ "loss": 5.2417192459106445,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.27476635575294495,
+ "learning_rate": 0.0006,
+ "loss": 5.052942752838135,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.27182039618492126,
+ "learning_rate": 0.0006,
+ "loss": 5.170318603515625,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.2378232777118683,
+ "learning_rate": 0.0006,
+ "loss": 5.207020282745361,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2211943417787552,
+ "learning_rate": 0.0006,
+ "loss": 5.069057464599609,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.23770040273666382,
+ "learning_rate": 0.0006,
+ "loss": 5.148123264312744,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.24775122106075287,
+ "learning_rate": 0.0006,
+ "loss": 5.113441467285156,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.2613208591938019,
+ "learning_rate": 0.0006,
+ "loss": 5.168797016143799,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 5.623791694641113,
+ "eval_runtime": 43.7369,
+ "eval_samples_per_second": 55.834,
+ "eval_steps_per_second": 3.498,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.251769483089447,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.24779178202152252,
+ "learning_rate": 0.0006,
+ "loss": 5.105424404144287,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.2289603054523468,
+ "learning_rate": 0.0006,
+ "loss": 5.047449111938477,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2398601472377777,
+ "learning_rate": 0.0006,
+ "loss": 4.967494487762451,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.23528005182743073,
+ "learning_rate": 0.0006,
+ "loss": 5.1181535720825195,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.25337186455726624,
+ "learning_rate": 0.0006,
+ "loss": 5.122707366943359,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.2447008639574051,
+ "learning_rate": 0.0006,
+ "loss": 5.196225166320801,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.23645047843456268,
+ "learning_rate": 0.0006,
+ "loss": 5.101871490478516,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.25075316429138184,
+ "learning_rate": 0.0006,
+ "loss": 5.132878303527832,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2639051377773285,
+ "learning_rate": 0.0006,
+ "loss": 5.190149784088135,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.2641083002090454,
+ "learning_rate": 0.0006,
+ "loss": 5.110793590545654,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.292756587266922,
+ "learning_rate": 0.0006,
+ "loss": 5.185298442840576,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.34334635734558105,
+ "learning_rate": 0.0006,
+ "loss": 5.083339691162109,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.38733652234077454,
+ "learning_rate": 0.0006,
+ "loss": 5.1063103675842285,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.3364640772342682,
+ "learning_rate": 0.0006,
+ "loss": 5.150970458984375,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.3474920690059662,
+ "learning_rate": 0.0006,
+ "loss": 5.142029762268066,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.3268880844116211,
+ "learning_rate": 0.0006,
+ "loss": 5.012701988220215,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.33263149857521057,
+ "learning_rate": 0.0006,
+ "loss": 5.216711044311523,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.3910176455974579,
+ "learning_rate": 0.0006,
+ "loss": 5.104494094848633,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.3908039331436157,
+ "learning_rate": 0.0006,
+ "loss": 5.12357234954834,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.35931023955345154,
+ "learning_rate": 0.0006,
+ "loss": 5.137462615966797,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.28057029843330383,
+ "learning_rate": 0.0006,
+ "loss": 5.2596282958984375,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2909329831600189,
+ "learning_rate": 0.0006,
+ "loss": 5.133344650268555,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.33207598328590393,
+ "learning_rate": 0.0006,
+ "loss": 5.1994099617004395,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.32019925117492676,
+ "learning_rate": 0.0006,
+ "loss": 5.023682594299316,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.29033371806144714,
+ "learning_rate": 0.0006,
+ "loss": 5.1381144523620605,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.257019966840744,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.28497233986854553,
+ "learning_rate": 0.0006,
+ "loss": 5.176369667053223,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.2696855068206787,
+ "learning_rate": 0.0006,
+ "loss": 5.10896635055542,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.2498825341463089,
+ "learning_rate": 0.0006,
+ "loss": 5.1248579025268555,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.2516685724258423,
+ "learning_rate": 0.0006,
+ "loss": 5.256963729858398,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.23191972076892853,
+ "learning_rate": 0.0006,
+ "loss": 5.0807695388793945,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.21776024997234344,
+ "learning_rate": 0.0006,
+ "loss": 5.133792877197266,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.23834113776683807,
+ "learning_rate": 0.0006,
+ "loss": 5.140595436096191,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.23772279918193817,
+ "learning_rate": 0.0006,
+ "loss": 5.1529083251953125,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.23321548104286194,
+ "learning_rate": 0.0006,
+ "loss": 5.0495147705078125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2035742700099945,
+ "learning_rate": 0.0006,
+ "loss": 5.139472007751465,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2037314474582672,
+ "learning_rate": 0.0006,
+ "loss": 5.052761554718018,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.21151329576969147,
+ "learning_rate": 0.0006,
+ "loss": 5.234678745269775,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.23333826661109924,
+ "learning_rate": 0.0006,
+ "loss": 5.181828498840332,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.2091064602136612,
+ "learning_rate": 0.0006,
+ "loss": 5.110116958618164,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.21383541822433472,
+ "learning_rate": 0.0006,
+ "loss": 5.230422019958496,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.22582590579986572,
+ "learning_rate": 0.0006,
+ "loss": 5.087268829345703,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.22703081369400024,
+ "learning_rate": 0.0006,
+ "loss": 5.178775310516357,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.2205582559108734,
+ "learning_rate": 0.0006,
+ "loss": 5.16602087020874,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2364072948694229,
+ "learning_rate": 0.0006,
+ "loss": 5.211956977844238,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.22626511752605438,
+ "learning_rate": 0.0006,
+ "loss": 5.234851837158203,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.20761126279830933,
+ "learning_rate": 0.0006,
+ "loss": 5.08859920501709,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.2060794234275818,
+ "learning_rate": 0.0006,
+ "loss": 5.159575462341309,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.20732319355010986,
+ "learning_rate": 0.0006,
+ "loss": 5.060473442077637,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.2237536609172821,
+ "learning_rate": 0.0006,
+ "loss": 5.045558452606201,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.23136022686958313,
+ "learning_rate": 0.0006,
+ "loss": 5.033176422119141,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21052569150924683,
+ "learning_rate": 0.0006,
+ "loss": 5.178841590881348,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20081491768360138,
+ "learning_rate": 0.0006,
+ "loss": 5.055507659912109,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20991520583629608,
+ "learning_rate": 0.0006,
+ "loss": 5.108828067779541,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.19140107929706573,
+ "learning_rate": 0.0006,
+ "loss": 5.083759784698486,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.2008625566959381,
+ "learning_rate": 0.0006,
+ "loss": 5.143270492553711,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20150591433048248,
+ "learning_rate": 0.0006,
+ "loss": 5.085028648376465,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19895482063293457,
+ "learning_rate": 0.0006,
+ "loss": 5.066783905029297,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.21431048214435577,
+ "learning_rate": 0.0006,
+ "loss": 5.101703643798828,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.22106732428073883,
+ "learning_rate": 0.0006,
+ "loss": 5.141600131988525,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.19248734414577484,
+ "learning_rate": 0.0006,
+ "loss": 5.110546112060547,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.20896610617637634,
+ "learning_rate": 0.0006,
+ "loss": 5.126798152923584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.20206235349178314,
+ "learning_rate": 0.0006,
+ "loss": 5.075150966644287,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.20902352035045624,
+ "learning_rate": 0.0006,
+ "loss": 5.113500595092773,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.20433180034160614,
+ "learning_rate": 0.0006,
+ "loss": 4.998416900634766,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.19236035645008087,
+ "learning_rate": 0.0006,
+ "loss": 5.107339382171631,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.19255030155181885,
+ "learning_rate": 0.0006,
+ "loss": 5.159492492675781,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.2123745083808899,
+ "learning_rate": 0.0006,
+ "loss": 5.069797515869141,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.20521977543830872,
+ "learning_rate": 0.0006,
+ "loss": 5.205306529998779,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.20835714042186737,
+ "learning_rate": 0.0006,
+ "loss": 5.135380744934082,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.2434307187795639,
+ "learning_rate": 0.0006,
+ "loss": 5.0861639976501465,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 5.61463737487793,
+ "eval_runtime": 43.7905,
+ "eval_samples_per_second": 55.765,
+ "eval_steps_per_second": 3.494,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.26624351739883423,
+ "learning_rate": 0.0006,
+ "loss": 5.073537826538086,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.2722315490245819,
+ "learning_rate": 0.0006,
+ "loss": 5.073931694030762,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.26314929127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.127379417419434,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.2734503746032715,
+ "learning_rate": 0.0006,
+ "loss": 5.008068084716797,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.28352802991867065,
+ "learning_rate": 0.0006,
+ "loss": 5.128748893737793,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2970965802669525,
+ "learning_rate": 0.0006,
+ "loss": 4.996362686157227,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.33101147413253784,
+ "learning_rate": 0.0006,
+ "loss": 5.104299545288086,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.3953830301761627,
+ "learning_rate": 0.0006,
+ "loss": 5.218570232391357,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.4843898415565491,
+ "learning_rate": 0.0006,
+ "loss": 5.13218879699707,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.5344658493995667,
+ "learning_rate": 0.0006,
+ "loss": 5.068594932556152,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.5479140877723694,
+ "learning_rate": 0.0006,
+ "loss": 5.120824813842773,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.4473769962787628,
+ "learning_rate": 0.0006,
+ "loss": 5.0450239181518555,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.32356584072113037,
+ "learning_rate": 0.0006,
+ "loss": 5.0743727684021,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.34618183970451355,
+ "learning_rate": 0.0006,
+ "loss": 5.037956237792969,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.34682273864746094,
+ "learning_rate": 0.0006,
+ "loss": 5.114541053771973,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.3299531638622284,
+ "learning_rate": 0.0006,
+ "loss": 5.074374198913574,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.3085547089576721,
+ "learning_rate": 0.0006,
+ "loss": 5.054928779602051,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.32305896282196045,
+ "learning_rate": 0.0006,
+ "loss": 5.146411418914795,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.2919997572898865,
+ "learning_rate": 0.0006,
+ "loss": 5.073186874389648,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.25806909799575806,
+ "learning_rate": 0.0006,
+ "loss": 5.144842147827148,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.26610904932022095,
+ "learning_rate": 0.0006,
+ "loss": 5.117390155792236,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.24839282035827637,
+ "learning_rate": 0.0006,
+ "loss": 5.032149314880371,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.21210862696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.076268196105957,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.24311110377311707,
+ "learning_rate": 0.0006,
+ "loss": 5.06572961807251,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.23391345143318176,
+ "learning_rate": 0.0006,
+ "loss": 5.063193321228027,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.22650551795959473,
+ "learning_rate": 0.0006,
+ "loss": 4.961597442626953,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.22736607491970062,
+ "learning_rate": 0.0006,
+ "loss": 5.138967514038086,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.23181012272834778,
+ "learning_rate": 0.0006,
+ "loss": 5.270172595977783,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.2398015856742859,
+ "learning_rate": 0.0006,
+ "loss": 5.096121311187744,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.2362310290336609,
+ "learning_rate": 0.0006,
+ "loss": 5.1309614181518555,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.2230709195137024,
+ "learning_rate": 0.0006,
+ "loss": 5.1298298835754395,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.2316841036081314,
+ "learning_rate": 0.0006,
+ "loss": 5.155740737915039,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.2493010014295578,
+ "learning_rate": 0.0006,
+ "loss": 5.13385009765625,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.24503403902053833,
+ "learning_rate": 0.0006,
+ "loss": 5.031866073608398,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.21498876810073853,
+ "learning_rate": 0.0006,
+ "loss": 5.139922142028809,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2414182871580124,
+ "learning_rate": 0.0006,
+ "loss": 5.063594818115234,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.2271965742111206,
+ "learning_rate": 0.0006,
+ "loss": 5.099205017089844,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.23607924580574036,
+ "learning_rate": 0.0006,
+ "loss": 5.19596004486084,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.21273590624332428,
+ "learning_rate": 0.0006,
+ "loss": 5.0046162605285645,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.23155765235424042,
+ "learning_rate": 0.0006,
+ "loss": 5.119840145111084,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.23603501915931702,
+ "learning_rate": 0.0006,
+ "loss": 5.133852481842041,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.2218663990497589,
+ "learning_rate": 0.0006,
+ "loss": 5.1917829513549805,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.22634977102279663,
+ "learning_rate": 0.0006,
+ "loss": 5.144075870513916,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.2172631174325943,
+ "learning_rate": 0.0006,
+ "loss": 4.986055850982666,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.22410084307193756,
+ "learning_rate": 0.0006,
+ "loss": 5.116366863250732,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.23113298416137695,
+ "learning_rate": 0.0006,
+ "loss": 5.09793758392334,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.21966107189655304,
+ "learning_rate": 0.0006,
+ "loss": 5.107457160949707,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.22023622691631317,
+ "learning_rate": 0.0006,
+ "loss": 4.9841132164001465,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.239701047539711,
+ "learning_rate": 0.0006,
+ "loss": 5.19544792175293,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.2256280779838562,
+ "learning_rate": 0.0006,
+ "loss": 5.084596157073975,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.20726829767227173,
+ "learning_rate": 0.0006,
+ "loss": 5.183579921722412,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.2176728993654251,
+ "learning_rate": 0.0006,
+ "loss": 5.1678056716918945,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.22509175539016724,
+ "learning_rate": 0.0006,
+ "loss": 5.120490074157715,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.22129830718040466,
+ "learning_rate": 0.0006,
+ "loss": 5.093064308166504,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.2128123790025711,
+ "learning_rate": 0.0006,
+ "loss": 5.131962776184082,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.2163669914007187,
+ "learning_rate": 0.0006,
+ "loss": 5.028177738189697,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.19432060420513153,
+ "learning_rate": 0.0006,
+ "loss": 5.097982883453369,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.1999889612197876,
+ "learning_rate": 0.0006,
+ "loss": 5.159366607666016,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.20807534456253052,
+ "learning_rate": 0.0006,
+ "loss": 5.209003448486328,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.21167407929897308,
+ "learning_rate": 0.0006,
+ "loss": 5.106616973876953,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.22136861085891724,
+ "learning_rate": 0.0006,
+ "loss": 5.106825351715088,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.2241097390651703,
+ "learning_rate": 0.0006,
+ "loss": 5.1205596923828125,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.23138396441936493,
+ "learning_rate": 0.0006,
+ "loss": 5.161348342895508,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.21534153819084167,
+ "learning_rate": 0.0006,
+ "loss": 5.112285614013672,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.20903921127319336,
+ "learning_rate": 0.0006,
+ "loss": 5.108701705932617,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.22201724350452423,
+ "learning_rate": 0.0006,
+ "loss": 5.106098651885986,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.24571724236011505,
+ "learning_rate": 0.0006,
+ "loss": 5.067068099975586,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.2483188956975937,
+ "learning_rate": 0.0006,
+ "loss": 5.074389457702637,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.23500564694404602,
+ "learning_rate": 0.0006,
+ "loss": 5.118062973022461,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.23233816027641296,
+ "learning_rate": 0.0006,
+ "loss": 5.058097839355469,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.21687369048595428,
+ "learning_rate": 0.0006,
+ "loss": 5.140105724334717,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.24605704843997955,
+ "learning_rate": 0.0006,
+ "loss": 5.042424201965332,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 5.593591213226318,
+ "eval_runtime": 43.9463,
+ "eval_samples_per_second": 55.568,
+ "eval_steps_per_second": 3.482,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.2656189501285553,
+ "learning_rate": 0.0006,
+ "loss": 5.069559574127197,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.329577773809433,
+ "learning_rate": 0.0006,
+ "loss": 5.083741188049316,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.3503403961658478,
+ "learning_rate": 0.0006,
+ "loss": 5.033015251159668,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.3312877118587494,
+ "learning_rate": 0.0006,
+ "loss": 5.052937984466553,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.3034539818763733,
+ "learning_rate": 0.0006,
+ "loss": 4.986397743225098,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.28288018703460693,
+ "learning_rate": 0.0006,
+ "loss": 5.061028480529785,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2744245231151581,
+ "learning_rate": 0.0006,
+ "loss": 5.162426471710205,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.2894163131713867,
+ "learning_rate": 0.0006,
+ "loss": 5.092059135437012,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.3096522092819214,
+ "learning_rate": 0.0006,
+ "loss": 5.057962417602539,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.3582365810871124,
+ "learning_rate": 0.0006,
+ "loss": 5.056303024291992,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.3841441869735718,
+ "learning_rate": 0.0006,
+ "loss": 5.098790168762207,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.39082109928131104,
+ "learning_rate": 0.0006,
+ "loss": 5.04576301574707,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.39864587783813477,
+ "learning_rate": 0.0006,
+ "loss": 4.958126068115234,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.36843791604042053,
+ "learning_rate": 0.0006,
+ "loss": 5.02396297454834,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.3209693133831024,
+ "learning_rate": 0.0006,
+ "loss": 5.103020668029785,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.3333604037761688,
+ "learning_rate": 0.0006,
+ "loss": 4.943218231201172,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.36044782400131226,
+ "learning_rate": 0.0006,
+ "loss": 5.025585174560547,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.342616468667984,
+ "learning_rate": 0.0006,
+ "loss": 5.0602827072143555,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.31180429458618164,
+ "learning_rate": 0.0006,
+ "loss": 4.904838562011719,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.3277561366558075,
+ "learning_rate": 0.0006,
+ "loss": 5.090795516967773,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.3524259626865387,
+ "learning_rate": 0.0006,
+ "loss": 4.9944868087768555,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.31636515259742737,
+ "learning_rate": 0.0006,
+ "loss": 5.099447250366211,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.29611796140670776,
+ "learning_rate": 0.0006,
+ "loss": 4.992494583129883,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.25250619649887085,
+ "learning_rate": 0.0006,
+ "loss": 5.011816024780273,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.27048635482788086,
+ "learning_rate": 0.0006,
+ "loss": 5.1355390548706055,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2662962079048157,
+ "learning_rate": 0.0006,
+ "loss": 5.197333335876465,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.24939067661762238,
+ "learning_rate": 0.0006,
+ "loss": 4.97106409072876,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.25281667709350586,
+ "learning_rate": 0.0006,
+ "loss": 4.9866461753845215,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.2361060082912445,
+ "learning_rate": 0.0006,
+ "loss": 5.034629821777344,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.2498287558555603,
+ "learning_rate": 0.0006,
+ "loss": 5.142369270324707,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.23712782561779022,
+ "learning_rate": 0.0006,
+ "loss": 5.0405659675598145,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.21990883350372314,
+ "learning_rate": 0.0006,
+ "loss": 5.100310325622559,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.2301885187625885,
+ "learning_rate": 0.0006,
+ "loss": 5.026395797729492,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2525700330734253,
+ "learning_rate": 0.0006,
+ "loss": 5.024566173553467,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.25321725010871887,
+ "learning_rate": 0.0006,
+ "loss": 5.065369606018066,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.23243394494056702,
+ "learning_rate": 0.0006,
+ "loss": 4.990506172180176,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.2385532259941101,
+ "learning_rate": 0.0006,
+ "loss": 5.075510025024414,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.2332916110754013,
+ "learning_rate": 0.0006,
+ "loss": 5.098793983459473,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2349195033311844,
+ "learning_rate": 0.0006,
+ "loss": 5.13688850402832,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.22227691113948822,
+ "learning_rate": 0.0006,
+ "loss": 5.031946659088135,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.19826963543891907,
+ "learning_rate": 0.0006,
+ "loss": 5.096657752990723,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.22926881909370422,
+ "learning_rate": 0.0006,
+ "loss": 5.108259201049805,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.2154492735862732,
+ "learning_rate": 0.0006,
+ "loss": 5.009831428527832,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.20920954644680023,
+ "learning_rate": 0.0006,
+ "loss": 5.190929412841797,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2185186743736267,
+ "learning_rate": 0.0006,
+ "loss": 5.011980056762695,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.21625544130802155,
+ "learning_rate": 0.0006,
+ "loss": 5.046218395233154,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.2096329778432846,
+ "learning_rate": 0.0006,
+ "loss": 5.142567157745361,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20263822376728058,
+ "learning_rate": 0.0006,
+ "loss": 5.10651159286499,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.20890159904956818,
+ "learning_rate": 0.0006,
+ "loss": 5.1266865730285645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2245817631483078,
+ "learning_rate": 0.0006,
+ "loss": 5.093215465545654,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.23266050219535828,
+ "learning_rate": 0.0006,
+ "loss": 5.0513014793396,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.2522489130496979,
+ "learning_rate": 0.0006,
+ "loss": 5.140589714050293,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.26206645369529724,
+ "learning_rate": 0.0006,
+ "loss": 5.007409572601318,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.23852048814296722,
+ "learning_rate": 0.0006,
+ "loss": 5.111786842346191,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.2200891524553299,
+ "learning_rate": 0.0006,
+ "loss": 5.117392539978027,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.22746646404266357,
+ "learning_rate": 0.0006,
+ "loss": 5.109235763549805,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.23004308342933655,
+ "learning_rate": 0.0006,
+ "loss": 5.0639848709106445,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23695707321166992,
+ "learning_rate": 0.0006,
+ "loss": 5.040740966796875,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.21213863790035248,
+ "learning_rate": 0.0006,
+ "loss": 4.939823627471924,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.2007155865430832,
+ "learning_rate": 0.0006,
+ "loss": 5.068843364715576,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.21603095531463623,
+ "learning_rate": 0.0006,
+ "loss": 5.083474159240723,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23725001513957977,
+ "learning_rate": 0.0006,
+ "loss": 5.141798973083496,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.24067805707454681,
+ "learning_rate": 0.0006,
+ "loss": 5.094497203826904,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.2185160517692566,
+ "learning_rate": 0.0006,
+ "loss": 5.036965370178223,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2093689888715744,
+ "learning_rate": 0.0006,
+ "loss": 5.177361011505127,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.22883890569210052,
+ "learning_rate": 0.0006,
+ "loss": 5.071722030639648,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.24585871398448944,
+ "learning_rate": 0.0006,
+ "loss": 5.0024919509887695,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.2431429922580719,
+ "learning_rate": 0.0006,
+ "loss": 5.168688774108887,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.24496296048164368,
+ "learning_rate": 0.0006,
+ "loss": 5.083732604980469,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.2596695125102997,
+ "learning_rate": 0.0006,
+ "loss": 5.082404613494873,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.24009113013744354,
+ "learning_rate": 0.0006,
+ "loss": 5.064967155456543,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.26678723096847534,
+ "learning_rate": 0.0006,
+ "loss": 5.058727264404297,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 5.6503496170043945,
+ "eval_runtime": 43.6719,
+ "eval_samples_per_second": 55.917,
+ "eval_steps_per_second": 3.503,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24663330614566803,
+ "learning_rate": 0.0006,
+ "loss": 5.06454610824585,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.26486027240753174,
+ "learning_rate": 0.0006,
+ "loss": 5.042418479919434,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.27813488245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.9880547523498535,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.29352492094039917,
+ "learning_rate": 0.0006,
+ "loss": 5.0260396003723145,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.33115923404693604,
+ "learning_rate": 0.0006,
+ "loss": 4.972799301147461,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.3739357888698578,
+ "learning_rate": 0.0006,
+ "loss": 5.116925239562988,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.3887830674648285,
+ "learning_rate": 0.0006,
+ "loss": 4.991984844207764,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.3902090787887573,
+ "learning_rate": 0.0006,
+ "loss": 5.049405097961426,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.3902873694896698,
+ "learning_rate": 0.0006,
+ "loss": 4.958196640014648,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.36983078718185425,
+ "learning_rate": 0.0006,
+ "loss": 5.064025402069092,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.3652578294277191,
+ "learning_rate": 0.0006,
+ "loss": 5.022344589233398,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.3475622534751892,
+ "learning_rate": 0.0006,
+ "loss": 4.973493576049805,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.3189752697944641,
+ "learning_rate": 0.0006,
+ "loss": 5.071773529052734,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.34873825311660767,
+ "learning_rate": 0.0006,
+ "loss": 5.048985958099365,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.3433420658111572,
+ "learning_rate": 0.0006,
+ "loss": 5.012633323669434,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.3253059685230255,
+ "learning_rate": 0.0006,
+ "loss": 5.05145263671875,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.28885743021965027,
+ "learning_rate": 0.0006,
+ "loss": 5.062848091125488,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.2981981039047241,
+ "learning_rate": 0.0006,
+ "loss": 5.058051109313965,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.28937315940856934,
+ "learning_rate": 0.0006,
+ "loss": 5.001659870147705,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.27365243434906006,
+ "learning_rate": 0.0006,
+ "loss": 5.002346992492676,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.2948472201824188,
+ "learning_rate": 0.0006,
+ "loss": 5.017416000366211,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.27951332926750183,
+ "learning_rate": 0.0006,
+ "loss": 5.096621513366699,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.2846360504627228,
+ "learning_rate": 0.0006,
+ "loss": 5.15632438659668,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.2881658375263214,
+ "learning_rate": 0.0006,
+ "loss": 4.99332857131958,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.2944094240665436,
+ "learning_rate": 0.0006,
+ "loss": 4.964737892150879,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.24999073147773743,
+ "learning_rate": 0.0006,
+ "loss": 5.001216888427734,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.258652001619339,
+ "learning_rate": 0.0006,
+ "loss": 5.071953296661377,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.2717747986316681,
+ "learning_rate": 0.0006,
+ "loss": 5.037763595581055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.291838675737381,
+ "learning_rate": 0.0006,
+ "loss": 5.032506465911865,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.2670983672142029,
+ "learning_rate": 0.0006,
+ "loss": 5.121091842651367,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.25686898827552795,
+ "learning_rate": 0.0006,
+ "loss": 5.004866600036621,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.24842077493667603,
+ "learning_rate": 0.0006,
+ "loss": 5.018099784851074,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22706130146980286,
+ "learning_rate": 0.0006,
+ "loss": 5.140285491943359,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23066434264183044,
+ "learning_rate": 0.0006,
+ "loss": 5.042588233947754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23627331852912903,
+ "learning_rate": 0.0006,
+ "loss": 5.018828868865967,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.21187713742256165,
+ "learning_rate": 0.0006,
+ "loss": 4.993720054626465,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.21763741970062256,
+ "learning_rate": 0.0006,
+ "loss": 5.0398101806640625,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.228176549077034,
+ "learning_rate": 0.0006,
+ "loss": 5.056083679199219,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.2338034212589264,
+ "learning_rate": 0.0006,
+ "loss": 5.050580978393555,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.22770841419696808,
+ "learning_rate": 0.0006,
+ "loss": 4.997826099395752,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2309669703245163,
+ "learning_rate": 0.0006,
+ "loss": 5.1529059410095215,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.2501232624053955,
+ "learning_rate": 0.0006,
+ "loss": 5.081571578979492,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2490433007478714,
+ "learning_rate": 0.0006,
+ "loss": 5.103081703186035,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.23605795204639435,
+ "learning_rate": 0.0006,
+ "loss": 5.01032018661499,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.22840216755867004,
+ "learning_rate": 0.0006,
+ "loss": 5.142952919006348,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.23446641862392426,
+ "learning_rate": 0.0006,
+ "loss": 4.999173641204834,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.24312707781791687,
+ "learning_rate": 0.0006,
+ "loss": 5.214873313903809,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.22898142039775848,
+ "learning_rate": 0.0006,
+ "loss": 5.081796646118164,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.22942952811717987,
+ "learning_rate": 0.0006,
+ "loss": 5.039419174194336,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.21569065749645233,
+ "learning_rate": 0.0006,
+ "loss": 4.9238786697387695,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21610477566719055,
+ "learning_rate": 0.0006,
+ "loss": 5.023957252502441,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.23372642695903778,
+ "learning_rate": 0.0006,
+ "loss": 5.075501441955566,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.24268870055675507,
+ "learning_rate": 0.0006,
+ "loss": 5.019841194152832,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.26709872484207153,
+ "learning_rate": 0.0006,
+ "loss": 5.001535415649414,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.2795998454093933,
+ "learning_rate": 0.0006,
+ "loss": 4.99934196472168,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 5.149593353271484,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.25707322359085083,
+ "learning_rate": 0.0006,
+ "loss": 5.016567707061768,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.23346355557441711,
+ "learning_rate": 0.0006,
+ "loss": 5.112569808959961,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.25399473309516907,
+ "learning_rate": 0.0006,
+ "loss": 5.079761505126953,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.3514099717140198,
+ "learning_rate": 0.0006,
+ "loss": 5.150153160095215,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.40320464968681335,
+ "learning_rate": 0.0006,
+ "loss": 5.030092239379883,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.3692944645881653,
+ "learning_rate": 0.0006,
+ "loss": 5.120532512664795,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.31819507479667664,
+ "learning_rate": 0.0006,
+ "loss": 5.218678951263428,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2646341323852539,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.25798487663269043,
+ "learning_rate": 0.0006,
+ "loss": 5.0449538230896,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.25449737906455994,
+ "learning_rate": 0.0006,
+ "loss": 5.098608016967773,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.2471655011177063,
+ "learning_rate": 0.0006,
+ "loss": 5.106586456298828,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23808450996875763,
+ "learning_rate": 0.0006,
+ "loss": 5.1309051513671875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22109591960906982,
+ "learning_rate": 0.0006,
+ "loss": 5.026615619659424,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.2369074672460556,
+ "learning_rate": 0.0006,
+ "loss": 5.046542167663574,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.23974162340164185,
+ "learning_rate": 0.0006,
+ "loss": 5.139918327331543,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2831571400165558,
+ "learning_rate": 0.0006,
+ "loss": 5.148556709289551,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 5.610105037689209,
+ "eval_runtime": 43.6771,
+ "eval_samples_per_second": 55.91,
+ "eval_steps_per_second": 3.503,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.29315176606178284,
+ "learning_rate": 0.0006,
+ "loss": 4.9819746017456055,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.27840563654899597,
+ "learning_rate": 0.0006,
+ "loss": 4.998641014099121,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.2585233449935913,
+ "learning_rate": 0.0006,
+ "loss": 4.9788055419921875,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.26685672998428345,
+ "learning_rate": 0.0006,
+ "loss": 5.0075364112854,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.2630915343761444,
+ "learning_rate": 0.0006,
+ "loss": 5.039527893066406,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.28146928548812866,
+ "learning_rate": 0.0006,
+ "loss": 5.0169830322265625,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.2877836525440216,
+ "learning_rate": 0.0006,
+ "loss": 5.010639190673828,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2674013674259186,
+ "learning_rate": 0.0006,
+ "loss": 5.048587322235107,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.2443513125181198,
+ "learning_rate": 0.0006,
+ "loss": 5.01059627532959,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.263250470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.998671531677246,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.25948774814605713,
+ "learning_rate": 0.0006,
+ "loss": 5.007443428039551,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.2627717852592468,
+ "learning_rate": 0.0006,
+ "loss": 5.0895891189575195,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.2937999367713928,
+ "learning_rate": 0.0006,
+ "loss": 5.040811538696289,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.3440952003002167,
+ "learning_rate": 0.0006,
+ "loss": 5.0906081199646,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.3586364686489105,
+ "learning_rate": 0.0006,
+ "loss": 5.039740562438965,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.3588162958621979,
+ "learning_rate": 0.0006,
+ "loss": 5.10011100769043,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.316916286945343,
+ "learning_rate": 0.0006,
+ "loss": 5.008404731750488,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.2906234562397003,
+ "learning_rate": 0.0006,
+ "loss": 4.993983745574951,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.30052995681762695,
+ "learning_rate": 0.0006,
+ "loss": 4.961777210235596,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.2781408429145813,
+ "learning_rate": 0.0006,
+ "loss": 5.053637981414795,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.25385338068008423,
+ "learning_rate": 0.0006,
+ "loss": 5.067394256591797,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.27976417541503906,
+ "learning_rate": 0.0006,
+ "loss": 4.994582653045654,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.28395259380340576,
+ "learning_rate": 0.0006,
+ "loss": 4.940049171447754,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.2736111581325531,
+ "learning_rate": 0.0006,
+ "loss": 5.0087480545043945,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2740088701248169,
+ "learning_rate": 0.0006,
+ "loss": 4.98872184753418,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.27768459916114807,
+ "learning_rate": 0.0006,
+ "loss": 5.071664810180664,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.2439393252134323,
+ "learning_rate": 0.0006,
+ "loss": 5.039699554443359,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2648756206035614,
+ "learning_rate": 0.0006,
+ "loss": 4.94097900390625,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.27291926741600037,
+ "learning_rate": 0.0006,
+ "loss": 5.084378719329834,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.2652057707309723,
+ "learning_rate": 0.0006,
+ "loss": 4.9060258865356445,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.26047390699386597,
+ "learning_rate": 0.0006,
+ "loss": 4.982139587402344,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.28235042095184326,
+ "learning_rate": 0.0006,
+ "loss": 5.083212852478027,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.311798095703125,
+ "learning_rate": 0.0006,
+ "loss": 4.995312690734863,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.341450572013855,
+ "learning_rate": 0.0006,
+ "loss": 4.9671454429626465,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.3602479100227356,
+ "learning_rate": 0.0006,
+ "loss": 5.143101215362549,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.3418441414833069,
+ "learning_rate": 0.0006,
+ "loss": 4.943387985229492,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.33024752140045166,
+ "learning_rate": 0.0006,
+ "loss": 5.032459259033203,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.30232077836990356,
+ "learning_rate": 0.0006,
+ "loss": 4.989147186279297,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.24414609372615814,
+ "learning_rate": 0.0006,
+ "loss": 4.978322982788086,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.25591766834259033,
+ "learning_rate": 0.0006,
+ "loss": 5.0355706214904785,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.2576507329940796,
+ "learning_rate": 0.0006,
+ "loss": 5.093832015991211,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23226316273212433,
+ "learning_rate": 0.0006,
+ "loss": 4.934247016906738,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.21747198700904846,
+ "learning_rate": 0.0006,
+ "loss": 4.936566352844238,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.23359523713588715,
+ "learning_rate": 0.0006,
+ "loss": 5.057905197143555,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.2139003574848175,
+ "learning_rate": 0.0006,
+ "loss": 4.932331085205078,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.22655777633190155,
+ "learning_rate": 0.0006,
+ "loss": 5.020993232727051,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2327452450990677,
+ "learning_rate": 0.0006,
+ "loss": 4.963522434234619,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.23941963911056519,
+ "learning_rate": 0.0006,
+ "loss": 5.119015693664551,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.24614088237285614,
+ "learning_rate": 0.0006,
+ "loss": 5.017136573791504,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2598764896392822,
+ "learning_rate": 0.0006,
+ "loss": 5.0190324783325195,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.23244203627109528,
+ "learning_rate": 0.0006,
+ "loss": 5.010921478271484,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.21855217218399048,
+ "learning_rate": 0.0006,
+ "loss": 5.053622245788574,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.22618624567985535,
+ "learning_rate": 0.0006,
+ "loss": 4.977973937988281,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.21672654151916504,
+ "learning_rate": 0.0006,
+ "loss": 5.104501724243164,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.2180754840373993,
+ "learning_rate": 0.0006,
+ "loss": 5.096102714538574,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.21368934214115143,
+ "learning_rate": 0.0006,
+ "loss": 4.965839385986328,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.23214437067508698,
+ "learning_rate": 0.0006,
+ "loss": 4.990872383117676,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.22081072628498077,
+ "learning_rate": 0.0006,
+ "loss": 4.897190093994141,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.2215396910905838,
+ "learning_rate": 0.0006,
+ "loss": 5.011716842651367,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2225598692893982,
+ "learning_rate": 0.0006,
+ "loss": 5.037459373474121,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.22634339332580566,
+ "learning_rate": 0.0006,
+ "loss": 5.066673278808594,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.23009361326694489,
+ "learning_rate": 0.0006,
+ "loss": 4.958402633666992,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.22752657532691956,
+ "learning_rate": 0.0006,
+ "loss": 4.9813079833984375,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.23946769535541534,
+ "learning_rate": 0.0006,
+ "loss": 5.138706207275391,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.22614546120166779,
+ "learning_rate": 0.0006,
+ "loss": 5.090217590332031,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.23649121820926666,
+ "learning_rate": 0.0006,
+ "loss": 5.000943183898926,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.258233904838562,
+ "learning_rate": 0.0006,
+ "loss": 5.008132457733154,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.25365421175956726,
+ "learning_rate": 0.0006,
+ "loss": 5.0702619552612305,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.24816446006298065,
+ "learning_rate": 0.0006,
+ "loss": 4.955360412597656,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.22880768775939941,
+ "learning_rate": 0.0006,
+ "loss": 5.104094505310059,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.22442375123500824,
+ "learning_rate": 0.0006,
+ "loss": 5.048181056976318,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.2502520978450775,
+ "learning_rate": 0.0006,
+ "loss": 5.095728874206543,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 5.63274621963501,
+ "eval_runtime": 43.6319,
+ "eval_samples_per_second": 55.968,
+ "eval_steps_per_second": 3.507,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.22704049944877625,
+ "learning_rate": 0.0006,
+ "loss": 5.0319013595581055,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.27746617794036865,
+ "learning_rate": 0.0006,
+ "loss": 4.990095138549805,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.295539915561676,
+ "learning_rate": 0.0006,
+ "loss": 4.9958906173706055,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.31365811824798584,
+ "learning_rate": 0.0006,
+ "loss": 4.967951774597168,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.36421388387680054,
+ "learning_rate": 0.0006,
+ "loss": 5.004227638244629,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.4460557997226715,
+ "learning_rate": 0.0006,
+ "loss": 4.939948558807373,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.033473491668701,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.7218965291976929,
+ "learning_rate": 0.0006,
+ "loss": 4.909894943237305,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 1.221193790435791,
+ "learning_rate": 0.0006,
+ "loss": 5.106806755065918,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 1.3894954919815063,
+ "learning_rate": 0.0006,
+ "loss": 5.061565399169922,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.5591407418251038,
+ "learning_rate": 0.0006,
+ "loss": 5.034966945648193,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.9420652389526367,
+ "learning_rate": 0.0006,
+ "loss": 5.09840726852417,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 2.5208489894866943,
+ "learning_rate": 0.0006,
+ "loss": 5.123776435852051,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.9268986582756042,
+ "learning_rate": 0.0006,
+ "loss": 5.136291980743408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.8797178268432617,
+ "learning_rate": 0.0006,
+ "loss": 5.154333114624023,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 1.3873813152313232,
+ "learning_rate": 0.0006,
+ "loss": 5.149882793426514,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 5.026662826538086,
+ "learning_rate": 0.0006,
+ "loss": 5.267908573150635,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 1.9946258068084717,
+ "learning_rate": 0.0006,
+ "loss": 5.398236274719238,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 1.803791880607605,
+ "learning_rate": 0.0006,
+ "loss": 5.273159027099609,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 2.458893060684204,
+ "learning_rate": 0.0006,
+ "loss": 5.669903755187988,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 1.687219262123108,
+ "learning_rate": 0.0006,
+ "loss": 5.417023658752441,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 2.1548755168914795,
+ "learning_rate": 0.0006,
+ "loss": 5.514348983764648,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 2.89029598236084,
+ "learning_rate": 0.0006,
+ "loss": 5.69551944732666,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 1.4314630031585693,
+ "learning_rate": 0.0006,
+ "loss": 5.533285617828369,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 1.28218412399292,
+ "learning_rate": 0.0006,
+ "loss": 5.362597465515137,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 1.0630460977554321,
+ "learning_rate": 0.0006,
+ "loss": 5.42286491394043,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 1.6603213548660278,
+ "learning_rate": 0.0006,
+ "loss": 5.425212383270264,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 1.6299420595169067,
+ "learning_rate": 0.0006,
+ "loss": 5.500392913818359,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 1.1391386985778809,
+ "learning_rate": 0.0006,
+ "loss": 5.519535064697266,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.7673546671867371,
+ "learning_rate": 0.0006,
+ "loss": 5.343459129333496,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.7965710163116455,
+ "learning_rate": 0.0006,
+ "loss": 5.4103593826293945,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.9465750455856323,
+ "learning_rate": 0.0006,
+ "loss": 5.4150004386901855,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 1.8193910121917725,
+ "learning_rate": 0.0006,
+ "loss": 5.574509620666504,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 1.7364966869354248,
+ "learning_rate": 0.0006,
+ "loss": 5.460873603820801,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.9436866641044617,
+ "learning_rate": 0.0006,
+ "loss": 5.472496032714844,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.7689608335494995,
+ "learning_rate": 0.0006,
+ "loss": 5.3944010734558105,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.6795908808708191,
+ "learning_rate": 0.0006,
+ "loss": 5.4318342208862305,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.5517643690109253,
+ "learning_rate": 0.0006,
+ "loss": 5.388180732727051,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.5735703110694885,
+ "learning_rate": 0.0006,
+ "loss": 5.385649681091309,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.4343084394931793,
+ "learning_rate": 0.0006,
+ "loss": 5.32094669342041,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.42407453060150146,
+ "learning_rate": 0.0006,
+ "loss": 5.371167182922363,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.33374646306037903,
+ "learning_rate": 0.0006,
+ "loss": 5.376950263977051,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.30995044112205505,
+ "learning_rate": 0.0006,
+ "loss": 5.308818340301514,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.3159969747066498,
+ "learning_rate": 0.0006,
+ "loss": 5.3192644119262695,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.27071642875671387,
+ "learning_rate": 0.0006,
+ "loss": 5.268453598022461,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.2658931016921997,
+ "learning_rate": 0.0006,
+ "loss": 5.201248645782471,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.25010180473327637,
+ "learning_rate": 0.0006,
+ "loss": 5.168814659118652,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.2650597095489502,
+ "learning_rate": 0.0006,
+ "loss": 5.415891647338867,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.291202187538147,
+ "learning_rate": 0.0006,
+ "loss": 5.231132984161377,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.26059600710868835,
+ "learning_rate": 0.0006,
+ "loss": 5.18214750289917,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.22882260382175446,
+ "learning_rate": 0.0006,
+ "loss": 5.235668659210205,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.223406583070755,
+ "learning_rate": 0.0006,
+ "loss": 5.177605628967285,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.22239653766155243,
+ "learning_rate": 0.0006,
+ "loss": 5.161006927490234,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.21558520197868347,
+ "learning_rate": 0.0006,
+ "loss": 5.171131134033203,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.2139778733253479,
+ "learning_rate": 0.0006,
+ "loss": 5.130541801452637,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.2052168846130371,
+ "learning_rate": 0.0006,
+ "loss": 5.1688032150268555,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.202232226729393,
+ "learning_rate": 0.0006,
+ "loss": 5.126879692077637,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.1988096386194229,
+ "learning_rate": 0.0006,
+ "loss": 5.130669593811035,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.1975286602973938,
+ "learning_rate": 0.0006,
+ "loss": 5.042728900909424,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.2881776690483093,
+ "learning_rate": 0.0006,
+ "loss": 5.174233913421631,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197915181517601,
+ "learning_rate": 0.0006,
+ "loss": 5.079075813293457,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.27948200702667236,
+ "learning_rate": 0.0006,
+ "loss": 5.286436080932617,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.24305689334869385,
+ "learning_rate": 0.0006,
+ "loss": 5.036742210388184,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.23768720030784607,
+ "learning_rate": 0.0006,
+ "loss": 5.096925735473633,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.19899412989616394,
+ "learning_rate": 0.0006,
+ "loss": 5.256169319152832,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.19295017421245575,
+ "learning_rate": 0.0006,
+ "loss": 5.120739936828613,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.18465232849121094,
+ "learning_rate": 0.0006,
+ "loss": 5.060583591461182,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.1940895915031433,
+ "learning_rate": 0.0006,
+ "loss": 5.124358177185059,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.1817735880613327,
+ "learning_rate": 0.0006,
+ "loss": 5.209672927856445,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.19375090301036835,
+ "learning_rate": 0.0006,
+ "loss": 5.094453811645508,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.18165044486522675,
+ "learning_rate": 0.0006,
+ "loss": 5.038323402404785,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.2099650353193283,
+ "learning_rate": 0.0006,
+ "loss": 5.194124221801758,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 5.621404647827148,
+ "eval_runtime": 43.6852,
+ "eval_samples_per_second": 55.9,
+ "eval_steps_per_second": 3.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.20531854033470154,
+ "learning_rate": 0.0006,
+ "loss": 5.036271095275879,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.1768074631690979,
+ "learning_rate": 0.0006,
+ "loss": 5.065631866455078,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.18600820004940033,
+ "learning_rate": 0.0006,
+ "loss": 4.976941108703613,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.19035008549690247,
+ "learning_rate": 0.0006,
+ "loss": 5.043804168701172,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.172406867146492,
+ "learning_rate": 0.0006,
+ "loss": 5.0668230056762695,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.1833505928516388,
+ "learning_rate": 0.0006,
+ "loss": 5.064236164093018,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.1854616403579712,
+ "learning_rate": 0.0006,
+ "loss": 4.920888900756836,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.17329943180084229,
+ "learning_rate": 0.0006,
+ "loss": 5.042097091674805,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.1781969517469406,
+ "learning_rate": 0.0006,
+ "loss": 4.960987091064453,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.17869792878627777,
+ "learning_rate": 0.0006,
+ "loss": 4.9647722244262695,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.17862144112586975,
+ "learning_rate": 0.0006,
+ "loss": 5.0729570388793945,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.18735237419605255,
+ "learning_rate": 0.0006,
+ "loss": 5.062546253204346,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.19010035693645477,
+ "learning_rate": 0.0006,
+ "loss": 5.115068435668945,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.17915022373199463,
+ "learning_rate": 0.0006,
+ "loss": 5.0514020919799805,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.17650367319583893,
+ "learning_rate": 0.0006,
+ "loss": 5.002680778503418,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.18583020567893982,
+ "learning_rate": 0.0006,
+ "loss": 5.0616559982299805,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.1724110245704651,
+ "learning_rate": 0.0006,
+ "loss": 4.950251579284668,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.17583726346492767,
+ "learning_rate": 0.0006,
+ "loss": 5.031266689300537,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.18023891746997833,
+ "learning_rate": 0.0006,
+ "loss": 5.030704498291016,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.17461556196212769,
+ "learning_rate": 0.0006,
+ "loss": 5.0474138259887695,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.17259585857391357,
+ "learning_rate": 0.0006,
+ "loss": 5.105917930603027,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.18344120681285858,
+ "learning_rate": 0.0006,
+ "loss": 4.935433387756348,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.19314713776111603,
+ "learning_rate": 0.0006,
+ "loss": 5.034740924835205,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.17460033297538757,
+ "learning_rate": 0.0006,
+ "loss": 5.065600395202637,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.18040770292282104,
+ "learning_rate": 0.0006,
+ "loss": 4.9877471923828125,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.1844506561756134,
+ "learning_rate": 0.0006,
+ "loss": 5.090925693511963,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.1758776158094406,
+ "learning_rate": 0.0006,
+ "loss": 5.0875654220581055,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.18470177054405212,
+ "learning_rate": 0.0006,
+ "loss": 4.949921607971191,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.17856043577194214,
+ "learning_rate": 0.0006,
+ "loss": 5.025911331176758,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.16935908794403076,
+ "learning_rate": 0.0006,
+ "loss": 5.091085433959961,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.17006255686283112,
+ "learning_rate": 0.0006,
+ "loss": 4.937986373901367,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.17451037466526031,
+ "learning_rate": 0.0006,
+ "loss": 5.047527313232422,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.1715908646583557,
+ "learning_rate": 0.0006,
+ "loss": 4.996227264404297,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.17081724107265472,
+ "learning_rate": 0.0006,
+ "loss": 5.064543724060059,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.17132049798965454,
+ "learning_rate": 0.0006,
+ "loss": 4.991571426391602,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.17281955480575562,
+ "learning_rate": 0.0006,
+ "loss": 4.958103179931641,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.17444723844528198,
+ "learning_rate": 0.0006,
+ "loss": 5.082591533660889,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.16986329853534698,
+ "learning_rate": 0.0006,
+ "loss": 4.911630153656006,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.17179609835147858,
+ "learning_rate": 0.0006,
+ "loss": 4.898321151733398,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.1804436594247818,
+ "learning_rate": 0.0006,
+ "loss": 4.987469673156738,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.17957472801208496,
+ "learning_rate": 0.0006,
+ "loss": 4.975372314453125,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.18368159234523773,
+ "learning_rate": 0.0006,
+ "loss": 5.136102199554443,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.1804785132408142,
+ "learning_rate": 0.0006,
+ "loss": 5.0620527267456055,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.18959787487983704,
+ "learning_rate": 0.0006,
+ "loss": 4.9141716957092285,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.17250175774097443,
+ "learning_rate": 0.0006,
+ "loss": 5.062658309936523,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.18731717765331268,
+ "learning_rate": 0.0006,
+ "loss": 5.00432014465332,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.1897876113653183,
+ "learning_rate": 0.0006,
+ "loss": 5.019741058349609,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.17267067730426788,
+ "learning_rate": 0.0006,
+ "loss": 4.944980144500732,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.19557307660579681,
+ "learning_rate": 0.0006,
+ "loss": 4.971822738647461,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.17553851008415222,
+ "learning_rate": 0.0006,
+ "loss": 4.958582878112793,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.20230819284915924,
+ "learning_rate": 0.0006,
+ "loss": 4.879530906677246,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.19447827339172363,
+ "learning_rate": 0.0006,
+ "loss": 5.029585361480713,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.18271444737911224,
+ "learning_rate": 0.0006,
+ "loss": 4.909365653991699,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.18683350086212158,
+ "learning_rate": 0.0006,
+ "loss": 5.021364212036133,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.18206043541431427,
+ "learning_rate": 0.0006,
+ "loss": 4.915339469909668,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.19256943464279175,
+ "learning_rate": 0.0006,
+ "loss": 5.097064018249512,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.17754584550857544,
+ "learning_rate": 0.0006,
+ "loss": 5.0028181076049805,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.18359874188899994,
+ "learning_rate": 0.0006,
+ "loss": 5.1064910888671875,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19648568332195282,
+ "learning_rate": 0.0006,
+ "loss": 5.055095195770264,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.19423484802246094,
+ "learning_rate": 0.0006,
+ "loss": 5.008637428283691,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.19001474976539612,
+ "learning_rate": 0.0006,
+ "loss": 5.034541606903076,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.17829559743404388,
+ "learning_rate": 0.0006,
+ "loss": 4.997272491455078,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.17772012948989868,
+ "learning_rate": 0.0006,
+ "loss": 4.967034816741943,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.1852307915687561,
+ "learning_rate": 0.0006,
+ "loss": 5.0653510093688965,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.19748800992965698,
+ "learning_rate": 0.0006,
+ "loss": 4.927009105682373,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.19427365064620972,
+ "learning_rate": 0.0006,
+ "loss": 4.932656288146973,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.17925311625003815,
+ "learning_rate": 0.0006,
+ "loss": 5.044363021850586,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.1800634115934372,
+ "learning_rate": 0.0006,
+ "loss": 5.060349464416504,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.19456739723682404,
+ "learning_rate": 0.0006,
+ "loss": 4.991013050079346,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.18354684114456177,
+ "learning_rate": 0.0006,
+ "loss": 5.061580657958984,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.1865471601486206,
+ "learning_rate": 0.0006,
+ "loss": 5.075126647949219,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.22366182506084442,
+ "learning_rate": 0.0006,
+ "loss": 5.126008987426758,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 5.638988971710205,
+ "eval_runtime": 43.6904,
+ "eval_samples_per_second": 55.893,
+ "eval_steps_per_second": 3.502,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.2467094212770462,
+ "learning_rate": 0.0006,
+ "loss": 5.042679786682129,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.23598021268844604,
+ "learning_rate": 0.0006,
+ "loss": 5.0135087966918945,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.21267789602279663,
+ "learning_rate": 0.0006,
+ "loss": 4.907642364501953,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22534681856632233,
+ "learning_rate": 0.0006,
+ "loss": 4.998172760009766,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.2506786286830902,
+ "learning_rate": 0.0006,
+ "loss": 4.894073009490967,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.26911383867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.973201751708984,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.2591055929660797,
+ "learning_rate": 0.0006,
+ "loss": 4.935209274291992,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.23841330409049988,
+ "learning_rate": 0.0006,
+ "loss": 4.858989715576172,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.22399023175239563,
+ "learning_rate": 0.0006,
+ "loss": 4.958944320678711,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.2602732479572296,
+ "learning_rate": 0.0006,
+ "loss": 4.937885284423828,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.27737703919410706,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.25017470121383667,
+ "learning_rate": 0.0006,
+ "loss": 5.033573150634766,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.23105967044830322,
+ "learning_rate": 0.0006,
+ "loss": 4.875265121459961,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.22534511983394623,
+ "learning_rate": 0.0006,
+ "loss": 4.897708892822266,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26871320605278015,
+ "learning_rate": 0.0006,
+ "loss": 4.999178886413574,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.29461318254470825,
+ "learning_rate": 0.0006,
+ "loss": 5.003823280334473,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.2427791953086853,
+ "learning_rate": 0.0006,
+ "loss": 4.885936737060547,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21816959977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.924385070800781,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2196834534406662,
+ "learning_rate": 0.0006,
+ "loss": 4.927918434143066,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.2522379755973816,
+ "learning_rate": 0.0006,
+ "loss": 5.049156188964844,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.2357328087091446,
+ "learning_rate": 0.0006,
+ "loss": 4.992923736572266,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.22476813197135925,
+ "learning_rate": 0.0006,
+ "loss": 4.945119857788086,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.2123723179101944,
+ "learning_rate": 0.0006,
+ "loss": 4.981670379638672,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.19079121947288513,
+ "learning_rate": 0.0006,
+ "loss": 4.947932243347168,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.2251129448413849,
+ "learning_rate": 0.0006,
+ "loss": 5.01401424407959,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.21208269894123077,
+ "learning_rate": 0.0006,
+ "loss": 4.918301582336426,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.19371981918811798,
+ "learning_rate": 0.0006,
+ "loss": 5.0302839279174805,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.2008298933506012,
+ "learning_rate": 0.0006,
+ "loss": 4.964824199676514,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.2211848497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.886675834655762,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20155242085456848,
+ "learning_rate": 0.0006,
+ "loss": 5.042282581329346,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.19785703718662262,
+ "learning_rate": 0.0006,
+ "loss": 5.035957336425781,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.2118215560913086,
+ "learning_rate": 0.0006,
+ "loss": 4.926614761352539,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.1957898586988449,
+ "learning_rate": 0.0006,
+ "loss": 5.007737159729004,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.21397852897644043,
+ "learning_rate": 0.0006,
+ "loss": 4.976838111877441,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.19601312279701233,
+ "learning_rate": 0.0006,
+ "loss": 4.919487953186035,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.22268648445606232,
+ "learning_rate": 0.0006,
+ "loss": 4.975930690765381,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.22545643150806427,
+ "learning_rate": 0.0006,
+ "loss": 4.899674892425537,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.21252192556858063,
+ "learning_rate": 0.0006,
+ "loss": 4.937679290771484,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.21059691905975342,
+ "learning_rate": 0.0006,
+ "loss": 4.978255271911621,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.21090982854366302,
+ "learning_rate": 0.0006,
+ "loss": 4.961708068847656,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.22227472066879272,
+ "learning_rate": 0.0006,
+ "loss": 5.032073974609375,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.2022518813610077,
+ "learning_rate": 0.0006,
+ "loss": 5.050082206726074,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20828351378440857,
+ "learning_rate": 0.0006,
+ "loss": 4.928339958190918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21947593986988068,
+ "learning_rate": 0.0006,
+ "loss": 4.907479763031006,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2133989781141281,
+ "learning_rate": 0.0006,
+ "loss": 4.943986892700195,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.21257098019123077,
+ "learning_rate": 0.0006,
+ "loss": 4.979767799377441,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.2013249695301056,
+ "learning_rate": 0.0006,
+ "loss": 5.075166702270508,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.21550191938877106,
+ "learning_rate": 0.0006,
+ "loss": 4.831538200378418,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.21787278354167938,
+ "learning_rate": 0.0006,
+ "loss": 5.0518798828125,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.2131931334733963,
+ "learning_rate": 0.0006,
+ "loss": 5.022676944732666,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.21466064453125,
+ "learning_rate": 0.0006,
+ "loss": 4.890660285949707,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.20570459961891174,
+ "learning_rate": 0.0006,
+ "loss": 5.026332855224609,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.20706558227539062,
+ "learning_rate": 0.0006,
+ "loss": 4.965017318725586,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.22169636189937592,
+ "learning_rate": 0.0006,
+ "loss": 4.876115798950195,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.21300572156906128,
+ "learning_rate": 0.0006,
+ "loss": 5.0305705070495605,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.2074366956949234,
+ "learning_rate": 0.0006,
+ "loss": 5.0619707107543945,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20049400627613068,
+ "learning_rate": 0.0006,
+ "loss": 4.861656188964844,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.19554391503334045,
+ "learning_rate": 0.0006,
+ "loss": 4.985089302062988,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.19518433511257172,
+ "learning_rate": 0.0006,
+ "loss": 4.9303693771362305,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.19454598426818848,
+ "learning_rate": 0.0006,
+ "loss": 4.91483211517334,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2051801234483719,
+ "learning_rate": 0.0006,
+ "loss": 5.043499946594238,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.21106350421905518,
+ "learning_rate": 0.0006,
+ "loss": 4.974806785583496,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1926974058151245,
+ "learning_rate": 0.0006,
+ "loss": 4.998621940612793,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2282414734363556,
+ "learning_rate": 0.0006,
+ "loss": 4.974546909332275,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.2084231972694397,
+ "learning_rate": 0.0006,
+ "loss": 4.972438812255859,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2212209403514862,
+ "learning_rate": 0.0006,
+ "loss": 4.995026111602783,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.21699263155460358,
+ "learning_rate": 0.0006,
+ "loss": 4.90521240234375,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.19732661545276642,
+ "learning_rate": 0.0006,
+ "loss": 4.991726875305176,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.20777297019958496,
+ "learning_rate": 0.0006,
+ "loss": 4.937028884887695,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.19607044756412506,
+ "learning_rate": 0.0006,
+ "loss": 5.001235008239746,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.19352026283740997,
+ "learning_rate": 0.0006,
+ "loss": 4.927471160888672,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.24638912081718445,
+ "learning_rate": 0.0006,
+ "loss": 5.0326948165893555,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 5.6142754554748535,
+ "eval_runtime": 43.8087,
+ "eval_samples_per_second": 55.742,
+ "eval_steps_per_second": 3.492,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.23644684255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.873427391052246,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.25126680731773376,
+ "learning_rate": 0.0006,
+ "loss": 4.87485408782959,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.2568335235118866,
+ "learning_rate": 0.0006,
+ "loss": 4.886771202087402,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25026074051856995,
+ "learning_rate": 0.0006,
+ "loss": 4.936698913574219,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.28039851784706116,
+ "learning_rate": 0.0006,
+ "loss": 4.87525749206543,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.2747037410736084,
+ "learning_rate": 0.0006,
+ "loss": 4.908928394317627,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.24225398898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.85804557800293,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.2313343733549118,
+ "learning_rate": 0.0006,
+ "loss": 4.834357261657715,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.24371111392974854,
+ "learning_rate": 0.0006,
+ "loss": 4.864018440246582,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2445077747106552,
+ "learning_rate": 0.0006,
+ "loss": 4.950467109680176,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23667296767234802,
+ "learning_rate": 0.0006,
+ "loss": 4.9515156745910645,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.21883149445056915,
+ "learning_rate": 0.0006,
+ "loss": 4.900814533233643,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.24268077313899994,
+ "learning_rate": 0.0006,
+ "loss": 4.929064750671387,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.2886393964290619,
+ "learning_rate": 0.0006,
+ "loss": 4.890536308288574,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.3131679594516754,
+ "learning_rate": 0.0006,
+ "loss": 4.907191276550293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.2824264466762543,
+ "learning_rate": 0.0006,
+ "loss": 4.863762855529785,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.2614385187625885,
+ "learning_rate": 0.0006,
+ "loss": 4.874501705169678,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.25922027230262756,
+ "learning_rate": 0.0006,
+ "loss": 5.0026702880859375,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.2973487377166748,
+ "learning_rate": 0.0006,
+ "loss": 5.000140190124512,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.30450278520584106,
+ "learning_rate": 0.0006,
+ "loss": 4.843691349029541,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2996101975440979,
+ "learning_rate": 0.0006,
+ "loss": 4.991793155670166,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2933216989040375,
+ "learning_rate": 0.0006,
+ "loss": 4.9064788818359375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.26910272240638733,
+ "learning_rate": 0.0006,
+ "loss": 4.8257856369018555,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.2437770664691925,
+ "learning_rate": 0.0006,
+ "loss": 5.046137809753418,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2617094814777374,
+ "learning_rate": 0.0006,
+ "loss": 4.991668701171875,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.2531643807888031,
+ "learning_rate": 0.0006,
+ "loss": 4.916153430938721,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2717825472354889,
+ "learning_rate": 0.0006,
+ "loss": 4.906037330627441,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.29819256067276,
+ "learning_rate": 0.0006,
+ "loss": 4.911838531494141,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.265080064535141,
+ "learning_rate": 0.0006,
+ "loss": 4.9137420654296875,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.2833244502544403,
+ "learning_rate": 0.0006,
+ "loss": 4.890748023986816,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.2271794229745865,
+ "learning_rate": 0.0006,
+ "loss": 5.023724555969238,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.21211601793766022,
+ "learning_rate": 0.0006,
+ "loss": 4.979722023010254,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20954854786396027,
+ "learning_rate": 0.0006,
+ "loss": 4.952898979187012,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.22777661681175232,
+ "learning_rate": 0.0006,
+ "loss": 4.899964332580566,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.237396240234375,
+ "learning_rate": 0.0006,
+ "loss": 4.825952529907227,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.21639923751354218,
+ "learning_rate": 0.0006,
+ "loss": 4.937284469604492,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.22481846809387207,
+ "learning_rate": 0.0006,
+ "loss": 4.977840423583984,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.21874044835567474,
+ "learning_rate": 0.0006,
+ "loss": 4.979265213012695,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.22928108274936676,
+ "learning_rate": 0.0006,
+ "loss": 5.028865814208984,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.21632954478263855,
+ "learning_rate": 0.0006,
+ "loss": 4.950807571411133,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.2468322217464447,
+ "learning_rate": 0.0006,
+ "loss": 4.8029985427856445,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.2718941271305084,
+ "learning_rate": 0.0006,
+ "loss": 4.908205986022949,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.25993791222572327,
+ "learning_rate": 0.0006,
+ "loss": 5.035503387451172,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.25481873750686646,
+ "learning_rate": 0.0006,
+ "loss": 4.94694709777832,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.24381203949451447,
+ "learning_rate": 0.0006,
+ "loss": 4.964150428771973,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.229928657412529,
+ "learning_rate": 0.0006,
+ "loss": 4.9501051902771,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.22445015609264374,
+ "learning_rate": 0.0006,
+ "loss": 4.764304161071777,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.24324876070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.976207733154297,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.2449851930141449,
+ "learning_rate": 0.0006,
+ "loss": 4.931100845336914,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.25147268176078796,
+ "learning_rate": 0.0006,
+ "loss": 4.868116855621338,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.2419784814119339,
+ "learning_rate": 0.0006,
+ "loss": 4.89686393737793,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.24533484876155853,
+ "learning_rate": 0.0006,
+ "loss": 5.028956413269043,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.25059181451797485,
+ "learning_rate": 0.0006,
+ "loss": 4.9386749267578125,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.2500951588153839,
+ "learning_rate": 0.0006,
+ "loss": 4.953556537628174,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.21416504681110382,
+ "learning_rate": 0.0006,
+ "loss": 5.0172529220581055,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.2504088282585144,
+ "learning_rate": 0.0006,
+ "loss": 4.905445575714111,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.2583373188972473,
+ "learning_rate": 0.0006,
+ "loss": 4.978623390197754,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.2515096366405487,
+ "learning_rate": 0.0006,
+ "loss": 5.10713529586792,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.2525620758533478,
+ "learning_rate": 0.0006,
+ "loss": 4.936955451965332,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.24006196856498718,
+ "learning_rate": 0.0006,
+ "loss": 4.883744239807129,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.23593290150165558,
+ "learning_rate": 0.0006,
+ "loss": 4.953546047210693,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.375808984041214,
+ "learning_rate": 0.0006,
+ "loss": 5.003560543060303,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.29952406883239746,
+ "learning_rate": 0.0006,
+ "loss": 4.920564651489258,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.2679341435432434,
+ "learning_rate": 0.0006,
+ "loss": 5.022880554199219,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.25076040625572205,
+ "learning_rate": 0.0006,
+ "loss": 4.893922328948975,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.23601850867271423,
+ "learning_rate": 0.0006,
+ "loss": 5.022214889526367,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.2490391880273819,
+ "learning_rate": 0.0006,
+ "loss": 4.905203819274902,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.24491725862026215,
+ "learning_rate": 0.0006,
+ "loss": 4.983704090118408,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.2271922379732132,
+ "learning_rate": 0.0006,
+ "loss": 4.979463577270508,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.25656265020370483,
+ "learning_rate": 0.0006,
+ "loss": 4.924351692199707,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.23771601915359497,
+ "learning_rate": 0.0006,
+ "loss": 4.942281723022461,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.24544641375541687,
+ "learning_rate": 0.0006,
+ "loss": 5.000701904296875,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 5.579831600189209,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.25386154651641846,
+ "learning_rate": 0.0006,
+ "loss": 4.8234124183654785,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.26652881503105164,
+ "learning_rate": 0.0006,
+ "loss": 4.853699684143066,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.26258426904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.836763858795166,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.25632306933403015,
+ "learning_rate": 0.0006,
+ "loss": 4.906066417694092,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.25159597396850586,
+ "learning_rate": 0.0006,
+ "loss": 4.9977827072143555,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.3085094690322876,
+ "learning_rate": 0.0006,
+ "loss": 4.970526695251465,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.29148855805397034,
+ "learning_rate": 0.0006,
+ "loss": 5.009794235229492,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.29140517115592957,
+ "learning_rate": 0.0006,
+ "loss": 4.859530925750732,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.280095636844635,
+ "learning_rate": 0.0006,
+ "loss": 4.911434173583984,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.30369579792022705,
+ "learning_rate": 0.0006,
+ "loss": 4.913683891296387,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.3239274024963379,
+ "learning_rate": 0.0006,
+ "loss": 5.034086227416992,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.3519810438156128,
+ "learning_rate": 0.0006,
+ "loss": 4.963351249694824,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.3385735750198364,
+ "learning_rate": 0.0006,
+ "loss": 4.8926191329956055,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.32244327664375305,
+ "learning_rate": 0.0006,
+ "loss": 4.883378028869629,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29736611247062683,
+ "learning_rate": 0.0006,
+ "loss": 4.858734607696533,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.25940918922424316,
+ "learning_rate": 0.0006,
+ "loss": 4.836821556091309,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.272622287273407,
+ "learning_rate": 0.0006,
+ "loss": 4.898805618286133,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.27794700860977173,
+ "learning_rate": 0.0006,
+ "loss": 4.928302764892578,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.27102360129356384,
+ "learning_rate": 0.0006,
+ "loss": 4.95124626159668,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.2629397213459015,
+ "learning_rate": 0.0006,
+ "loss": 4.871169567108154,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.25433018803596497,
+ "learning_rate": 0.0006,
+ "loss": 4.889469623565674,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26117584109306335,
+ "learning_rate": 0.0006,
+ "loss": 4.881265640258789,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.2466708868741989,
+ "learning_rate": 0.0006,
+ "loss": 5.029825687408447,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.2568967044353485,
+ "learning_rate": 0.0006,
+ "loss": 4.918328762054443,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.24221549928188324,
+ "learning_rate": 0.0006,
+ "loss": 4.925808906555176,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.23725277185440063,
+ "learning_rate": 0.0006,
+ "loss": 4.926358222961426,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.2324332445859909,
+ "learning_rate": 0.0006,
+ "loss": 5.006486415863037,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.23703229427337646,
+ "learning_rate": 0.0006,
+ "loss": 4.910062789916992,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.23231542110443115,
+ "learning_rate": 0.0006,
+ "loss": 4.896425247192383,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.24442434310913086,
+ "learning_rate": 0.0006,
+ "loss": 4.931735038757324,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.2420727014541626,
+ "learning_rate": 0.0006,
+ "loss": 4.9495849609375,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.22466431558132172,
+ "learning_rate": 0.0006,
+ "loss": 4.8583550453186035,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2262907177209854,
+ "learning_rate": 0.0006,
+ "loss": 4.889760494232178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.2221478521823883,
+ "learning_rate": 0.0006,
+ "loss": 4.893364906311035,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.24064140021800995,
+ "learning_rate": 0.0006,
+ "loss": 4.959281921386719,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.22734183073043823,
+ "learning_rate": 0.0006,
+ "loss": 5.020266532897949,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.2320936769247055,
+ "learning_rate": 0.0006,
+ "loss": 4.97260856628418,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.22288082540035248,
+ "learning_rate": 0.0006,
+ "loss": 4.950928688049316,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.23188872635364532,
+ "learning_rate": 0.0006,
+ "loss": 4.882352828979492,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.25545188784599304,
+ "learning_rate": 0.0006,
+ "loss": 4.887185573577881,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.2532609701156616,
+ "learning_rate": 0.0006,
+ "loss": 4.934828758239746,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.24874907732009888,
+ "learning_rate": 0.0006,
+ "loss": 4.901329040527344,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.3036803901195526,
+ "learning_rate": 0.0006,
+ "loss": 4.926210403442383,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.2409690022468567,
+ "learning_rate": 0.0006,
+ "loss": 4.9331560134887695,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.2642427980899811,
+ "learning_rate": 0.0006,
+ "loss": 4.962619781494141,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.23698318004608154,
+ "learning_rate": 0.0006,
+ "loss": 4.928008079528809,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.2577116787433624,
+ "learning_rate": 0.0006,
+ "loss": 4.981179237365723,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.2786544859409332,
+ "learning_rate": 0.0006,
+ "loss": 4.872053146362305,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.2848146855831146,
+ "learning_rate": 0.0006,
+ "loss": 4.905705451965332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.29227638244628906,
+ "learning_rate": 0.0006,
+ "loss": 4.938878059387207,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.26133620738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.944175720214844,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.2507132589817047,
+ "learning_rate": 0.0006,
+ "loss": 4.95780086517334,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.24110586941242218,
+ "learning_rate": 0.0006,
+ "loss": 4.891676902770996,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2548290193080902,
+ "learning_rate": 0.0006,
+ "loss": 4.830166816711426,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.25699660181999207,
+ "learning_rate": 0.0006,
+ "loss": 5.017788887023926,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.23805765807628632,
+ "learning_rate": 0.0006,
+ "loss": 4.880512237548828,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.25058144330978394,
+ "learning_rate": 0.0006,
+ "loss": 4.955535888671875,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.23453839123249054,
+ "learning_rate": 0.0006,
+ "loss": 4.902019500732422,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.23548917472362518,
+ "learning_rate": 0.0006,
+ "loss": 4.98248815536499,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.21686987578868866,
+ "learning_rate": 0.0006,
+ "loss": 4.953718185424805,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.2372921258211136,
+ "learning_rate": 0.0006,
+ "loss": 4.987793922424316,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.23555979132652283,
+ "learning_rate": 0.0006,
+ "loss": 4.958364486694336,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.2199806421995163,
+ "learning_rate": 0.0006,
+ "loss": 4.898507595062256,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.2247174084186554,
+ "learning_rate": 0.0006,
+ "loss": 4.93635368347168,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.2226504385471344,
+ "learning_rate": 0.0006,
+ "loss": 4.878708362579346,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.232645183801651,
+ "learning_rate": 0.0006,
+ "loss": 5.011113166809082,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.22930100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.938168525695801,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.214981809258461,
+ "learning_rate": 0.0006,
+ "loss": 5.022806167602539,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.2177734076976776,
+ "learning_rate": 0.0006,
+ "loss": 4.930192947387695,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.2201048582792282,
+ "learning_rate": 0.0006,
+ "loss": 4.930332183837891,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.2170654535293579,
+ "learning_rate": 0.0006,
+ "loss": 4.822697639465332,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.2569112479686737,
+ "learning_rate": 0.0006,
+ "loss": 4.955083847045898,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 5.632203102111816,
+ "eval_runtime": 44.0037,
+ "eval_samples_per_second": 55.495,
+ "eval_steps_per_second": 3.477,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.24115575850009918,
+ "learning_rate": 0.0006,
+ "loss": 4.774530410766602,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.269553005695343,
+ "learning_rate": 0.0006,
+ "loss": 4.872208595275879,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.26543089747428894,
+ "learning_rate": 0.0006,
+ "loss": 4.802093505859375,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.2564932703971863,
+ "learning_rate": 0.0006,
+ "loss": 4.805418968200684,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.2683241069316864,
+ "learning_rate": 0.0006,
+ "loss": 4.946519374847412,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2836771309375763,
+ "learning_rate": 0.0006,
+ "loss": 4.913064002990723,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.29587841033935547,
+ "learning_rate": 0.0006,
+ "loss": 4.82060432434082,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.3187328577041626,
+ "learning_rate": 0.0006,
+ "loss": 4.931561470031738,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.33641040325164795,
+ "learning_rate": 0.0006,
+ "loss": 4.930693626403809,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.3706270754337311,
+ "learning_rate": 0.0006,
+ "loss": 4.964207649230957,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.3667416274547577,
+ "learning_rate": 0.0006,
+ "loss": 4.839015960693359,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.371052086353302,
+ "learning_rate": 0.0006,
+ "loss": 4.808768272399902,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.35793402791023254,
+ "learning_rate": 0.0006,
+ "loss": 4.892663955688477,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.37609025835990906,
+ "learning_rate": 0.0006,
+ "loss": 4.862865447998047,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.41680100560188293,
+ "learning_rate": 0.0006,
+ "loss": 4.951524257659912,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.4107159972190857,
+ "learning_rate": 0.0006,
+ "loss": 4.982880592346191,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.3709244430065155,
+ "learning_rate": 0.0006,
+ "loss": 4.822504997253418,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.35674360394477844,
+ "learning_rate": 0.0006,
+ "loss": 4.788774490356445,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.4003389775753021,
+ "learning_rate": 0.0006,
+ "loss": 4.818408966064453,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.3633175790309906,
+ "learning_rate": 0.0006,
+ "loss": 4.944226264953613,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.3476482629776001,
+ "learning_rate": 0.0006,
+ "loss": 4.840337753295898,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2982877790927887,
+ "learning_rate": 0.0006,
+ "loss": 4.827220439910889,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.3180890381336212,
+ "learning_rate": 0.0006,
+ "loss": 4.8601179122924805,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.28321126103401184,
+ "learning_rate": 0.0006,
+ "loss": 4.885811805725098,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.26475968956947327,
+ "learning_rate": 0.0006,
+ "loss": 4.922610282897949,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.2635623514652252,
+ "learning_rate": 0.0006,
+ "loss": 4.904339790344238,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.27366870641708374,
+ "learning_rate": 0.0006,
+ "loss": 5.035268783569336,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.28087207674980164,
+ "learning_rate": 0.0006,
+ "loss": 5.006683349609375,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2877000570297241,
+ "learning_rate": 0.0006,
+ "loss": 4.9411821365356445,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.29371026158332825,
+ "learning_rate": 0.0006,
+ "loss": 4.907064437866211,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.2828463613986969,
+ "learning_rate": 0.0006,
+ "loss": 4.820063591003418,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.27692174911499023,
+ "learning_rate": 0.0006,
+ "loss": 4.9413862228393555,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.25940948724746704,
+ "learning_rate": 0.0006,
+ "loss": 4.85456657409668,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.24962344765663147,
+ "learning_rate": 0.0006,
+ "loss": 4.843669891357422,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.24959886074066162,
+ "learning_rate": 0.0006,
+ "loss": 4.762346267700195,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.24525995552539825,
+ "learning_rate": 0.0006,
+ "loss": 4.953421592712402,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.2346443384885788,
+ "learning_rate": 0.0006,
+ "loss": 4.834078788757324,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.22497864067554474,
+ "learning_rate": 0.0006,
+ "loss": 4.869537353515625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.24211637675762177,
+ "learning_rate": 0.0006,
+ "loss": 4.9326324462890625,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.2508588433265686,
+ "learning_rate": 0.0006,
+ "loss": 4.888162612915039,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24798937141895294,
+ "learning_rate": 0.0006,
+ "loss": 4.891581058502197,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.2294262945652008,
+ "learning_rate": 0.0006,
+ "loss": 4.9137187004089355,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.22956842184066772,
+ "learning_rate": 0.0006,
+ "loss": 4.880995750427246,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.23267275094985962,
+ "learning_rate": 0.0006,
+ "loss": 4.873599052429199,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.2388632744550705,
+ "learning_rate": 0.0006,
+ "loss": 5.040642738342285,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.2315777987241745,
+ "learning_rate": 0.0006,
+ "loss": 4.872757911682129,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2357671707868576,
+ "learning_rate": 0.0006,
+ "loss": 4.9669694900512695,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.23896530270576477,
+ "learning_rate": 0.0006,
+ "loss": 4.9404191970825195,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.2503133714199066,
+ "learning_rate": 0.0006,
+ "loss": 4.994132995605469,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23686833679676056,
+ "learning_rate": 0.0006,
+ "loss": 4.855534076690674,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.41817325353622437,
+ "learning_rate": 0.0006,
+ "loss": 4.839415550231934,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.25073501467704773,
+ "learning_rate": 0.0006,
+ "loss": 4.943027496337891,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.23301787674427032,
+ "learning_rate": 0.0006,
+ "loss": 5.034562110900879,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.23630984127521515,
+ "learning_rate": 0.0006,
+ "loss": 4.892238616943359,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.23293223977088928,
+ "learning_rate": 0.0006,
+ "loss": 4.900964736938477,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.2205100655555725,
+ "learning_rate": 0.0006,
+ "loss": 4.854867935180664,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2232394516468048,
+ "learning_rate": 0.0006,
+ "loss": 4.880922317504883,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.22066038846969604,
+ "learning_rate": 0.0006,
+ "loss": 4.903459548950195,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.2279815822839737,
+ "learning_rate": 0.0006,
+ "loss": 4.959351062774658,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.22876150906085968,
+ "learning_rate": 0.0006,
+ "loss": 4.973538875579834,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.23907968401908875,
+ "learning_rate": 0.0006,
+ "loss": 5.054638385772705,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.229344442486763,
+ "learning_rate": 0.0006,
+ "loss": 4.907610893249512,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.22665154933929443,
+ "learning_rate": 0.0006,
+ "loss": 4.881254196166992,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.22871734201908112,
+ "learning_rate": 0.0006,
+ "loss": 5.046531677246094,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.2261628657579422,
+ "learning_rate": 0.0006,
+ "loss": 4.922369003295898,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.2478492558002472,
+ "learning_rate": 0.0006,
+ "loss": 4.8939337730407715,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.24122799932956696,
+ "learning_rate": 0.0006,
+ "loss": 4.975547790527344,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.23639973998069763,
+ "learning_rate": 0.0006,
+ "loss": 4.883835792541504,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.21436677873134613,
+ "learning_rate": 0.0006,
+ "loss": 4.989047050476074,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.23134244978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.960489273071289,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.2196633368730545,
+ "learning_rate": 0.0006,
+ "loss": 4.8376922607421875,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.25519922375679016,
+ "learning_rate": 0.0006,
+ "loss": 5.005063533782959,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 5.618375778198242,
+ "eval_runtime": 43.7835,
+ "eval_samples_per_second": 55.774,
+ "eval_steps_per_second": 3.494,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.22579249739646912,
+ "learning_rate": 0.0006,
+ "loss": 4.809595108032227,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.26132306456565857,
+ "learning_rate": 0.0006,
+ "loss": 4.79793643951416,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.25853824615478516,
+ "learning_rate": 0.0006,
+ "loss": 4.843017578125,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.28990259766578674,
+ "learning_rate": 0.0006,
+ "loss": 4.892221450805664,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.30275407433509827,
+ "learning_rate": 0.0006,
+ "loss": 4.825380325317383,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.3387936055660248,
+ "learning_rate": 0.0006,
+ "loss": 4.94785737991333,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.3711549937725067,
+ "learning_rate": 0.0006,
+ "loss": 4.82138204574585,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.4613936245441437,
+ "learning_rate": 0.0006,
+ "loss": 4.847029209136963,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.5963582396507263,
+ "learning_rate": 0.0006,
+ "loss": 4.916332721710205,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.7781189680099487,
+ "learning_rate": 0.0006,
+ "loss": 4.755664825439453,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 1.0786961317062378,
+ "learning_rate": 0.0006,
+ "loss": 4.8486223220825195,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 1.264509916305542,
+ "learning_rate": 0.0006,
+ "loss": 4.859688758850098,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.6558860540390015,
+ "learning_rate": 0.0006,
+ "loss": 4.843151569366455,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.7037758827209473,
+ "learning_rate": 0.0006,
+ "loss": 4.946523189544678,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.6268444657325745,
+ "learning_rate": 0.0006,
+ "loss": 4.917740821838379,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.5526893734931946,
+ "learning_rate": 0.0006,
+ "loss": 4.946929454803467,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.46909236907958984,
+ "learning_rate": 0.0006,
+ "loss": 4.927574157714844,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.5189411640167236,
+ "learning_rate": 0.0006,
+ "loss": 4.849272727966309,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.4552496373653412,
+ "learning_rate": 0.0006,
+ "loss": 4.862515449523926,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.35777556896209717,
+ "learning_rate": 0.0006,
+ "loss": 4.87974739074707,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.3415146768093109,
+ "learning_rate": 0.0006,
+ "loss": 4.967772960662842,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.3098277747631073,
+ "learning_rate": 0.0006,
+ "loss": 4.941368579864502,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.307086318731308,
+ "learning_rate": 0.0006,
+ "loss": 4.887994766235352,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.27516987919807434,
+ "learning_rate": 0.0006,
+ "loss": 4.931004524230957,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.2638928294181824,
+ "learning_rate": 0.0006,
+ "loss": 4.919968605041504,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.27821648120880127,
+ "learning_rate": 0.0006,
+ "loss": 4.919415473937988,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.2577863335609436,
+ "learning_rate": 0.0006,
+ "loss": 4.887144088745117,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.2548697590827942,
+ "learning_rate": 0.0006,
+ "loss": 4.9209747314453125,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.2375801056623459,
+ "learning_rate": 0.0006,
+ "loss": 4.981429100036621,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.24701446294784546,
+ "learning_rate": 0.0006,
+ "loss": 4.899306297302246,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.24088579416275024,
+ "learning_rate": 0.0006,
+ "loss": 4.875080108642578,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.22877338528633118,
+ "learning_rate": 0.0006,
+ "loss": 4.77262020111084,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2278391420841217,
+ "learning_rate": 0.0006,
+ "loss": 4.929962158203125,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.23062074184417725,
+ "learning_rate": 0.0006,
+ "loss": 4.912036418914795,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.21301782131195068,
+ "learning_rate": 0.0006,
+ "loss": 4.941250801086426,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.23527051508426666,
+ "learning_rate": 0.0006,
+ "loss": 4.952563762664795,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2202436625957489,
+ "learning_rate": 0.0006,
+ "loss": 4.856666564941406,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22671134769916534,
+ "learning_rate": 0.0006,
+ "loss": 4.921791076660156,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.21676139533519745,
+ "learning_rate": 0.0006,
+ "loss": 4.895837306976318,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.2105361372232437,
+ "learning_rate": 0.0006,
+ "loss": 4.906024932861328,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.21324989199638367,
+ "learning_rate": 0.0006,
+ "loss": 4.868413925170898,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.21031267940998077,
+ "learning_rate": 0.0006,
+ "loss": 4.846315860748291,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.22347337007522583,
+ "learning_rate": 0.0006,
+ "loss": 4.8600006103515625,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.2148006409406662,
+ "learning_rate": 0.0006,
+ "loss": 4.921928405761719,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2090986669063568,
+ "learning_rate": 0.0006,
+ "loss": 4.892671585083008,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21176575124263763,
+ "learning_rate": 0.0006,
+ "loss": 4.854193210601807,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.2042233794927597,
+ "learning_rate": 0.0006,
+ "loss": 4.7385406494140625,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.2293599396944046,
+ "learning_rate": 0.0006,
+ "loss": 4.867591381072998,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.21847687661647797,
+ "learning_rate": 0.0006,
+ "loss": 4.835083484649658,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.2140309065580368,
+ "learning_rate": 0.0006,
+ "loss": 4.839532852172852,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.22436466813087463,
+ "learning_rate": 0.0006,
+ "loss": 4.864219665527344,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.20764856040477753,
+ "learning_rate": 0.0006,
+ "loss": 4.968031406402588,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.22208192944526672,
+ "learning_rate": 0.0006,
+ "loss": 4.929033279418945,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.23778831958770752,
+ "learning_rate": 0.0006,
+ "loss": 4.916086196899414,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.23211197555065155,
+ "learning_rate": 0.0006,
+ "loss": 4.985804557800293,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.22114013135433197,
+ "learning_rate": 0.0006,
+ "loss": 4.889162063598633,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.2479127198457718,
+ "learning_rate": 0.0006,
+ "loss": 4.933280944824219,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.2269778996706009,
+ "learning_rate": 0.0006,
+ "loss": 4.922603607177734,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.22033706307411194,
+ "learning_rate": 0.0006,
+ "loss": 4.852389812469482,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.21537335216999054,
+ "learning_rate": 0.0006,
+ "loss": 4.968966484069824,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.2255326807498932,
+ "learning_rate": 0.0006,
+ "loss": 4.920167446136475,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.23299142718315125,
+ "learning_rate": 0.0006,
+ "loss": 4.955693244934082,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.23558512330055237,
+ "learning_rate": 0.0006,
+ "loss": 4.943650722503662,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.23574590682983398,
+ "learning_rate": 0.0006,
+ "loss": 4.8803253173828125,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.21929168701171875,
+ "learning_rate": 0.0006,
+ "loss": 4.866758346557617,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.21141263842582703,
+ "learning_rate": 0.0006,
+ "loss": 4.910624027252197,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.22126126289367676,
+ "learning_rate": 0.0006,
+ "loss": 4.898010730743408,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.21633656322956085,
+ "learning_rate": 0.0006,
+ "loss": 4.898642063140869,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.2055092453956604,
+ "learning_rate": 0.0006,
+ "loss": 4.999601364135742,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.21713142096996307,
+ "learning_rate": 0.0006,
+ "loss": 5.06076717376709,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.22607268393039703,
+ "learning_rate": 0.0006,
+ "loss": 4.837459564208984,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.2539910078048706,
+ "learning_rate": 0.0006,
+ "loss": 4.875609397888184,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 5.625279903411865,
+ "eval_runtime": 43.9596,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2504737079143524,
+ "learning_rate": 0.0006,
+ "loss": 4.838294506072998,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.2851513624191284,
+ "learning_rate": 0.0006,
+ "loss": 4.756039142608643,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.2804785966873169,
+ "learning_rate": 0.0006,
+ "loss": 4.8786821365356445,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.30619603395462036,
+ "learning_rate": 0.0006,
+ "loss": 4.8795599937438965,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.32694053649902344,
+ "learning_rate": 0.0006,
+ "loss": 4.785887718200684,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.3489350378513336,
+ "learning_rate": 0.0006,
+ "loss": 4.803055763244629,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.31503453850746155,
+ "learning_rate": 0.0006,
+ "loss": 4.85374641418457,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.30912914872169495,
+ "learning_rate": 0.0006,
+ "loss": 4.83103609085083,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.3118198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.750751972198486,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.27299851179122925,
+ "learning_rate": 0.0006,
+ "loss": 4.781091690063477,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2759952247142792,
+ "learning_rate": 0.0006,
+ "loss": 4.83078670501709,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.2822282910346985,
+ "learning_rate": 0.0006,
+ "loss": 4.815742492675781,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.2892833352088928,
+ "learning_rate": 0.0006,
+ "loss": 4.811395645141602,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.2790832817554474,
+ "learning_rate": 0.0006,
+ "loss": 4.8151960372924805,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.28979772329330444,
+ "learning_rate": 0.0006,
+ "loss": 4.801294326782227,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.2895258367061615,
+ "learning_rate": 0.0006,
+ "loss": 4.915355682373047,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.2755886912345886,
+ "learning_rate": 0.0006,
+ "loss": 4.826793670654297,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.2806237041950226,
+ "learning_rate": 0.0006,
+ "loss": 4.860479354858398,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.3022560775279999,
+ "learning_rate": 0.0006,
+ "loss": 4.894186973571777,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.2832705080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.7305378913879395,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.27682286500930786,
+ "learning_rate": 0.0006,
+ "loss": 4.842325210571289,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.27526795864105225,
+ "learning_rate": 0.0006,
+ "loss": 4.832039833068848,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.25996512174606323,
+ "learning_rate": 0.0006,
+ "loss": 4.762640953063965,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.25903308391571045,
+ "learning_rate": 0.0006,
+ "loss": 4.8344197273254395,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.28561344742774963,
+ "learning_rate": 0.0006,
+ "loss": 4.988165378570557,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.27336442470550537,
+ "learning_rate": 0.0006,
+ "loss": 4.852186679840088,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.26083794236183167,
+ "learning_rate": 0.0006,
+ "loss": 4.8323655128479,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.26779961585998535,
+ "learning_rate": 0.0006,
+ "loss": 4.84951114654541,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.2546665072441101,
+ "learning_rate": 0.0006,
+ "loss": 4.949132442474365,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.23965208232402802,
+ "learning_rate": 0.0006,
+ "loss": 4.80186128616333,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2380605787038803,
+ "learning_rate": 0.0006,
+ "loss": 4.817536354064941,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.2421215921640396,
+ "learning_rate": 0.0006,
+ "loss": 4.88615608215332,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.2353103905916214,
+ "learning_rate": 0.0006,
+ "loss": 4.851449489593506,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.23474812507629395,
+ "learning_rate": 0.0006,
+ "loss": 4.858880996704102,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.25967830419540405,
+ "learning_rate": 0.0006,
+ "loss": 4.902411460876465,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.25371989607810974,
+ "learning_rate": 0.0006,
+ "loss": 4.864758014678955,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.23590026795864105,
+ "learning_rate": 0.0006,
+ "loss": 4.832785129547119,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23552364110946655,
+ "learning_rate": 0.0006,
+ "loss": 4.868142604827881,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23813676834106445,
+ "learning_rate": 0.0006,
+ "loss": 4.852168083190918,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.23368221521377563,
+ "learning_rate": 0.0006,
+ "loss": 4.900445938110352,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.22632816433906555,
+ "learning_rate": 0.0006,
+ "loss": 4.844457626342773,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.23022238910198212,
+ "learning_rate": 0.0006,
+ "loss": 4.85957145690918,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.2243710607290268,
+ "learning_rate": 0.0006,
+ "loss": 4.841772079467773,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.22977106273174286,
+ "learning_rate": 0.0006,
+ "loss": 4.9422736167907715,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.2244744896888733,
+ "learning_rate": 0.0006,
+ "loss": 4.758354187011719,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.22535455226898193,
+ "learning_rate": 0.0006,
+ "loss": 4.915562152862549,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.21879108250141144,
+ "learning_rate": 0.0006,
+ "loss": 4.813960075378418,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.2230217456817627,
+ "learning_rate": 0.0006,
+ "loss": 4.868906021118164,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.22431543469429016,
+ "learning_rate": 0.0006,
+ "loss": 4.825711250305176,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.21768595278263092,
+ "learning_rate": 0.0006,
+ "loss": 4.907125949859619,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.23058106005191803,
+ "learning_rate": 0.0006,
+ "loss": 4.827013969421387,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.23529572784900665,
+ "learning_rate": 0.0006,
+ "loss": 4.978236198425293,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2591295838356018,
+ "learning_rate": 0.0006,
+ "loss": 5.0127153396606445,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.2579593062400818,
+ "learning_rate": 0.0006,
+ "loss": 4.806724548339844,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.25126948952674866,
+ "learning_rate": 0.0006,
+ "loss": 4.891393661499023,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.2559744417667389,
+ "learning_rate": 0.0006,
+ "loss": 4.744538307189941,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.2465924173593521,
+ "learning_rate": 0.0006,
+ "loss": 4.8044891357421875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.2377517968416214,
+ "learning_rate": 0.0006,
+ "loss": 4.80463171005249,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.2516980469226837,
+ "learning_rate": 0.0006,
+ "loss": 4.932928085327148,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.2485285997390747,
+ "learning_rate": 0.0006,
+ "loss": 5.0681023597717285,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.25599437952041626,
+ "learning_rate": 0.0006,
+ "loss": 4.885824203491211,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.2474682629108429,
+ "learning_rate": 0.0006,
+ "loss": 4.885628700256348,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2525995075702667,
+ "learning_rate": 0.0006,
+ "loss": 4.84395170211792,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2424824833869934,
+ "learning_rate": 0.0006,
+ "loss": 4.789297580718994,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2302202731370926,
+ "learning_rate": 0.0006,
+ "loss": 4.806092262268066,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2271379679441452,
+ "learning_rate": 0.0006,
+ "loss": 4.856675148010254,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.22951440513134003,
+ "learning_rate": 0.0006,
+ "loss": 4.801736831665039,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.24330873787403107,
+ "learning_rate": 0.0006,
+ "loss": 4.946207046508789,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2446075677871704,
+ "learning_rate": 0.0006,
+ "loss": 4.888392925262451,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.22055856883525848,
+ "learning_rate": 0.0006,
+ "loss": 4.877448558807373,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.22741298377513885,
+ "learning_rate": 0.0006,
+ "loss": 4.896193981170654,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.26812079548835754,
+ "learning_rate": 0.0006,
+ "loss": 4.838033676147461,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 5.657428741455078,
+ "eval_runtime": 43.9239,
+ "eval_samples_per_second": 55.596,
+ "eval_steps_per_second": 3.483,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.2544923722743988,
+ "learning_rate": 0.0006,
+ "loss": 4.894584655761719,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.2896263301372528,
+ "learning_rate": 0.0006,
+ "loss": 4.809931755065918,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2956641614437103,
+ "learning_rate": 0.0006,
+ "loss": 4.752936363220215,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.30063682794570923,
+ "learning_rate": 0.0006,
+ "loss": 4.750651836395264,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.31451180577278137,
+ "learning_rate": 0.0006,
+ "loss": 4.758318901062012,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.3321535289287567,
+ "learning_rate": 0.0006,
+ "loss": 4.810308456420898,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.3452267050743103,
+ "learning_rate": 0.0006,
+ "loss": 4.822650909423828,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.3849124014377594,
+ "learning_rate": 0.0006,
+ "loss": 4.697601318359375,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.36861762404441833,
+ "learning_rate": 0.0006,
+ "loss": 4.806733131408691,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.32106244564056396,
+ "learning_rate": 0.0006,
+ "loss": 4.826780319213867,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.32934635877609253,
+ "learning_rate": 0.0006,
+ "loss": 4.8232197761535645,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.3263178765773773,
+ "learning_rate": 0.0006,
+ "loss": 4.715615272521973,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.3452235460281372,
+ "learning_rate": 0.0006,
+ "loss": 4.8265886306762695,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.3345649540424347,
+ "learning_rate": 0.0006,
+ "loss": 4.906521797180176,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.32137855887413025,
+ "learning_rate": 0.0006,
+ "loss": 4.8092546463012695,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.31116610765457153,
+ "learning_rate": 0.0006,
+ "loss": 4.7163262367248535,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.3143131732940674,
+ "learning_rate": 0.0006,
+ "loss": 4.820006370544434,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.3249242901802063,
+ "learning_rate": 0.0006,
+ "loss": 4.7522430419921875,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.3169978857040405,
+ "learning_rate": 0.0006,
+ "loss": 4.729442596435547,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.29442888498306274,
+ "learning_rate": 0.0006,
+ "loss": 4.858549118041992,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.2953328490257263,
+ "learning_rate": 0.0006,
+ "loss": 4.878421783447266,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.28057861328125,
+ "learning_rate": 0.0006,
+ "loss": 4.734894752502441,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.27618902921676636,
+ "learning_rate": 0.0006,
+ "loss": 4.792823791503906,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.2867262065410614,
+ "learning_rate": 0.0006,
+ "loss": 4.880163192749023,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.30026376247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.777165412902832,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.31120428442955017,
+ "learning_rate": 0.0006,
+ "loss": 4.920294284820557,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.3088955879211426,
+ "learning_rate": 0.0006,
+ "loss": 4.830722808837891,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.2937430739402771,
+ "learning_rate": 0.0006,
+ "loss": 4.748791217803955,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.2857159674167633,
+ "learning_rate": 0.0006,
+ "loss": 4.696996212005615,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.28611940145492554,
+ "learning_rate": 0.0006,
+ "loss": 4.857858657836914,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.2996751070022583,
+ "learning_rate": 0.0006,
+ "loss": 4.963169097900391,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.31856271624565125,
+ "learning_rate": 0.0006,
+ "loss": 4.8621015548706055,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.2911488711833954,
+ "learning_rate": 0.0006,
+ "loss": 4.833442687988281,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.27650997042655945,
+ "learning_rate": 0.0006,
+ "loss": 4.880586624145508,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.29595834016799927,
+ "learning_rate": 0.0006,
+ "loss": 4.994001388549805,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.26299768686294556,
+ "learning_rate": 0.0006,
+ "loss": 4.878082275390625,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.24914029240608215,
+ "learning_rate": 0.0006,
+ "loss": 4.863940715789795,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.24980434775352478,
+ "learning_rate": 0.0006,
+ "loss": 4.7974700927734375,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.24568985402584076,
+ "learning_rate": 0.0006,
+ "loss": 4.850179672241211,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.2553185224533081,
+ "learning_rate": 0.0006,
+ "loss": 4.721436023712158,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.23800437152385712,
+ "learning_rate": 0.0006,
+ "loss": 4.915726661682129,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.24168169498443604,
+ "learning_rate": 0.0006,
+ "loss": 4.919476509094238,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.23254059255123138,
+ "learning_rate": 0.0006,
+ "loss": 4.837396621704102,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.23272280395030975,
+ "learning_rate": 0.0006,
+ "loss": 4.894709587097168,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.2424369603395462,
+ "learning_rate": 0.0006,
+ "loss": 4.852464199066162,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.24014078080654144,
+ "learning_rate": 0.0006,
+ "loss": 4.771071434020996,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.2327149361371994,
+ "learning_rate": 0.0006,
+ "loss": 4.8530707359313965,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.24060578644275665,
+ "learning_rate": 0.0006,
+ "loss": 4.890263557434082,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.2369765341281891,
+ "learning_rate": 0.0006,
+ "loss": 4.847378730773926,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.23085379600524902,
+ "learning_rate": 0.0006,
+ "loss": 4.797319412231445,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.2267085462808609,
+ "learning_rate": 0.0006,
+ "loss": 4.854727745056152,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.23491983115673065,
+ "learning_rate": 0.0006,
+ "loss": 4.830386161804199,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24790893495082855,
+ "learning_rate": 0.0006,
+ "loss": 4.816285133361816,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.23857788741588593,
+ "learning_rate": 0.0006,
+ "loss": 4.890524387359619,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.2411605417728424,
+ "learning_rate": 0.0006,
+ "loss": 4.848807334899902,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.26007628440856934,
+ "learning_rate": 0.0006,
+ "loss": 4.8576154708862305,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.25929391384124756,
+ "learning_rate": 0.0006,
+ "loss": 4.913393974304199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.2540329694747925,
+ "learning_rate": 0.0006,
+ "loss": 4.895297527313232,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.25809070467948914,
+ "learning_rate": 0.0006,
+ "loss": 4.865652084350586,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.2543012797832489,
+ "learning_rate": 0.0006,
+ "loss": 4.935735702514648,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2556969225406647,
+ "learning_rate": 0.0006,
+ "loss": 4.862171649932861,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.2529013752937317,
+ "learning_rate": 0.0006,
+ "loss": 4.858964920043945,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.24566322565078735,
+ "learning_rate": 0.0006,
+ "loss": 4.887772083282471,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.2518221139907837,
+ "learning_rate": 0.0006,
+ "loss": 4.9013519287109375,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.2681237757205963,
+ "learning_rate": 0.0006,
+ "loss": 4.92396879196167,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.23980696499347687,
+ "learning_rate": 0.0006,
+ "loss": 4.803556442260742,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.25379857420921326,
+ "learning_rate": 0.0006,
+ "loss": 4.88879919052124,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.2691017985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.89013147354126,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2836360037326813,
+ "learning_rate": 0.0006,
+ "loss": 4.861413955688477,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.29678046703338623,
+ "learning_rate": 0.0006,
+ "loss": 4.862863063812256,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.2586080729961395,
+ "learning_rate": 0.0006,
+ "loss": 4.797509670257568,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.28984177112579346,
+ "learning_rate": 0.0006,
+ "loss": 4.688202857971191,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 5.647079944610596,
+ "eval_runtime": 43.9659,
+ "eval_samples_per_second": 55.543,
+ "eval_steps_per_second": 3.48,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.3042246997356415,
+ "learning_rate": 0.0006,
+ "loss": 4.765769958496094,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.31654679775238037,
+ "learning_rate": 0.0006,
+ "loss": 4.739487648010254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.3512209355831146,
+ "learning_rate": 0.0006,
+ "loss": 4.756409168243408,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.33363401889801025,
+ "learning_rate": 0.0006,
+ "loss": 4.752679824829102,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.3480837345123291,
+ "learning_rate": 0.0006,
+ "loss": 4.751740455627441,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.34325599670410156,
+ "learning_rate": 0.0006,
+ "loss": 4.800487518310547,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.35521915555000305,
+ "learning_rate": 0.0006,
+ "loss": 4.792442321777344,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.3971202075481415,
+ "learning_rate": 0.0006,
+ "loss": 4.839323043823242,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.42870670557022095,
+ "learning_rate": 0.0006,
+ "loss": 4.7881598472595215,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.41002270579338074,
+ "learning_rate": 0.0006,
+ "loss": 4.837263107299805,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.41879814863204956,
+ "learning_rate": 0.0006,
+ "loss": 4.787181377410889,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.39727288484573364,
+ "learning_rate": 0.0006,
+ "loss": 4.689166069030762,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.4117949306964874,
+ "learning_rate": 0.0006,
+ "loss": 4.741512775421143,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.3903196156024933,
+ "learning_rate": 0.0006,
+ "loss": 4.939431190490723,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.39510613679885864,
+ "learning_rate": 0.0006,
+ "loss": 4.793046951293945,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.4282018542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.798737525939941,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.4028005599975586,
+ "learning_rate": 0.0006,
+ "loss": 4.850426197052002,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.3823135793209076,
+ "learning_rate": 0.0006,
+ "loss": 4.807843208312988,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.3591195344924927,
+ "learning_rate": 0.0006,
+ "loss": 4.792397499084473,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.34220069646835327,
+ "learning_rate": 0.0006,
+ "loss": 4.783420562744141,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.3544970154762268,
+ "learning_rate": 0.0006,
+ "loss": 4.7830281257629395,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.3208852708339691,
+ "learning_rate": 0.0006,
+ "loss": 4.851056098937988,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2918044626712799,
+ "learning_rate": 0.0006,
+ "loss": 4.726936340332031,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.27928468585014343,
+ "learning_rate": 0.0006,
+ "loss": 4.789541721343994,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.2986469268798828,
+ "learning_rate": 0.0006,
+ "loss": 4.757097244262695,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.3019244968891144,
+ "learning_rate": 0.0006,
+ "loss": 4.89695930480957,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2990078926086426,
+ "learning_rate": 0.0006,
+ "loss": 4.802218437194824,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.29555121064186096,
+ "learning_rate": 0.0006,
+ "loss": 4.818314552307129,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2858138382434845,
+ "learning_rate": 0.0006,
+ "loss": 4.875483512878418,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.2614677846431732,
+ "learning_rate": 0.0006,
+ "loss": 4.905603408813477,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.27893856167793274,
+ "learning_rate": 0.0006,
+ "loss": 4.819657802581787,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.272381991147995,
+ "learning_rate": 0.0006,
+ "loss": 4.852667808532715,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.25571849942207336,
+ "learning_rate": 0.0006,
+ "loss": 4.741304874420166,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.24815352261066437,
+ "learning_rate": 0.0006,
+ "loss": 4.802125930786133,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.27039676904678345,
+ "learning_rate": 0.0006,
+ "loss": 4.7783989906311035,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.2787652313709259,
+ "learning_rate": 0.0006,
+ "loss": 4.72538423538208,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.27525728940963745,
+ "learning_rate": 0.0006,
+ "loss": 4.738187789916992,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.2768784165382385,
+ "learning_rate": 0.0006,
+ "loss": 4.84246826171875,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.24836532771587372,
+ "learning_rate": 0.0006,
+ "loss": 4.829537391662598,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.25333014130592346,
+ "learning_rate": 0.0006,
+ "loss": 4.821444988250732,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.27703550457954407,
+ "learning_rate": 0.0006,
+ "loss": 4.757432460784912,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.2729257643222809,
+ "learning_rate": 0.0006,
+ "loss": 4.843412399291992,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2721844017505646,
+ "learning_rate": 0.0006,
+ "loss": 4.808291912078857,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.27415281534194946,
+ "learning_rate": 0.0006,
+ "loss": 4.788895606994629,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.25578397512435913,
+ "learning_rate": 0.0006,
+ "loss": 4.898778438568115,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.23653355240821838,
+ "learning_rate": 0.0006,
+ "loss": 4.707027912139893,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23619019985198975,
+ "learning_rate": 0.0006,
+ "loss": 4.836171627044678,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.25441300868988037,
+ "learning_rate": 0.0006,
+ "loss": 4.876093864440918,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.26004758477211,
+ "learning_rate": 0.0006,
+ "loss": 4.827149391174316,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.2452673465013504,
+ "learning_rate": 0.0006,
+ "loss": 4.893497467041016,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.25367382168769836,
+ "learning_rate": 0.0006,
+ "loss": 4.824868679046631,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.24220238626003265,
+ "learning_rate": 0.0006,
+ "loss": 4.8279876708984375,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.245235875248909,
+ "learning_rate": 0.0006,
+ "loss": 4.86391544342041,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.2554823160171509,
+ "learning_rate": 0.0006,
+ "loss": 4.759535789489746,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.26047852635383606,
+ "learning_rate": 0.0006,
+ "loss": 4.833014488220215,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.25643855333328247,
+ "learning_rate": 0.0006,
+ "loss": 4.8568925857543945,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.2723510265350342,
+ "learning_rate": 0.0006,
+ "loss": 4.813891410827637,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.27686530351638794,
+ "learning_rate": 0.0006,
+ "loss": 4.902313232421875,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2904725968837738,
+ "learning_rate": 0.0006,
+ "loss": 4.8087158203125,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2731470763683319,
+ "learning_rate": 0.0006,
+ "loss": 4.794158458709717,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.24979770183563232,
+ "learning_rate": 0.0006,
+ "loss": 4.910498142242432,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.24108903110027313,
+ "learning_rate": 0.0006,
+ "loss": 4.853915214538574,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.2519422471523285,
+ "learning_rate": 0.0006,
+ "loss": 4.863593101501465,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.23865459859371185,
+ "learning_rate": 0.0006,
+ "loss": 4.9878387451171875,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.24233412742614746,
+ "learning_rate": 0.0006,
+ "loss": 4.8081865310668945,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.24141386151313782,
+ "learning_rate": 0.0006,
+ "loss": 4.872373580932617,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.2452598214149475,
+ "learning_rate": 0.0006,
+ "loss": 4.9965362548828125,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.23441722989082336,
+ "learning_rate": 0.0006,
+ "loss": 4.828550338745117,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.22854767739772797,
+ "learning_rate": 0.0006,
+ "loss": 4.8352861404418945,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.23713107407093048,
+ "learning_rate": 0.0006,
+ "loss": 4.891653060913086,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.2392406016588211,
+ "learning_rate": 0.0006,
+ "loss": 4.9386444091796875,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.2785041630268097,
+ "learning_rate": 0.0006,
+ "loss": 4.923316955566406,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 5.693624496459961,
+ "eval_runtime": 44.1546,
+ "eval_samples_per_second": 55.306,
+ "eval_steps_per_second": 3.465,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.2517661154270172,
+ "learning_rate": 0.0006,
+ "loss": 4.780309677124023,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.27914828062057495,
+ "learning_rate": 0.0006,
+ "loss": 4.6999592781066895,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.28881552815437317,
+ "learning_rate": 0.0006,
+ "loss": 4.702980995178223,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.28083357214927673,
+ "learning_rate": 0.0006,
+ "loss": 4.63825798034668,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.2726970911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.675126075744629,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2875966429710388,
+ "learning_rate": 0.0006,
+ "loss": 4.820473670959473,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.3123854398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.82038688659668,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.3680395781993866,
+ "learning_rate": 0.0006,
+ "loss": 4.7045183181762695,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.4078810214996338,
+ "learning_rate": 0.0006,
+ "loss": 4.78702449798584,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.40222451090812683,
+ "learning_rate": 0.0006,
+ "loss": 4.817971229553223,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.4006662666797638,
+ "learning_rate": 0.0006,
+ "loss": 4.786521911621094,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.45862552523612976,
+ "learning_rate": 0.0006,
+ "loss": 4.745394706726074,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.5281919240951538,
+ "learning_rate": 0.0006,
+ "loss": 4.634189605712891,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.5757725238800049,
+ "learning_rate": 0.0006,
+ "loss": 4.779071807861328,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.633377730846405,
+ "learning_rate": 0.0006,
+ "loss": 4.856950759887695,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.6395874619483948,
+ "learning_rate": 0.0006,
+ "loss": 4.7706146240234375,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.5068890452384949,
+ "learning_rate": 0.0006,
+ "loss": 4.902734279632568,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.47786474227905273,
+ "learning_rate": 0.0006,
+ "loss": 4.875908851623535,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.516613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.805601596832275,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.5190202593803406,
+ "learning_rate": 0.0006,
+ "loss": 4.766936302185059,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.475728839635849,
+ "learning_rate": 0.0006,
+ "loss": 4.871570587158203,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.4622924327850342,
+ "learning_rate": 0.0006,
+ "loss": 4.837436676025391,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.4352988302707672,
+ "learning_rate": 0.0006,
+ "loss": 4.795676231384277,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.4068149924278259,
+ "learning_rate": 0.0006,
+ "loss": 4.799002647399902,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.3830578327178955,
+ "learning_rate": 0.0006,
+ "loss": 4.662718772888184,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.37022629380226135,
+ "learning_rate": 0.0006,
+ "loss": 4.687708854675293,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.3631822168827057,
+ "learning_rate": 0.0006,
+ "loss": 4.849669456481934,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.3286333382129669,
+ "learning_rate": 0.0006,
+ "loss": 4.8405866622924805,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.3121919631958008,
+ "learning_rate": 0.0006,
+ "loss": 4.720195770263672,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.2828214466571808,
+ "learning_rate": 0.0006,
+ "loss": 4.920707702636719,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.28562137484550476,
+ "learning_rate": 0.0006,
+ "loss": 4.784852981567383,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.2830047905445099,
+ "learning_rate": 0.0006,
+ "loss": 4.831488132476807,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.2708739638328552,
+ "learning_rate": 0.0006,
+ "loss": 4.764632225036621,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.2688941955566406,
+ "learning_rate": 0.0006,
+ "loss": 4.743519306182861,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.2799918055534363,
+ "learning_rate": 0.0006,
+ "loss": 4.895413875579834,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.2659923732280731,
+ "learning_rate": 0.0006,
+ "loss": 4.783902168273926,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.25158217549324036,
+ "learning_rate": 0.0006,
+ "loss": 4.763776779174805,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.25982847809791565,
+ "learning_rate": 0.0006,
+ "loss": 4.861703872680664,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.2528466582298279,
+ "learning_rate": 0.0006,
+ "loss": 4.793123245239258,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.2438122034072876,
+ "learning_rate": 0.0006,
+ "loss": 4.725234031677246,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.23206153512001038,
+ "learning_rate": 0.0006,
+ "loss": 4.80317497253418,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.24357691407203674,
+ "learning_rate": 0.0006,
+ "loss": 4.738122940063477,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.25925347208976746,
+ "learning_rate": 0.0006,
+ "loss": 4.91569185256958,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2550504505634308,
+ "learning_rate": 0.0006,
+ "loss": 4.793295860290527,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.26924577355384827,
+ "learning_rate": 0.0006,
+ "loss": 4.920884132385254,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.27172550559043884,
+ "learning_rate": 0.0006,
+ "loss": 4.8238959312438965,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.2663852870464325,
+ "learning_rate": 0.0006,
+ "loss": 4.805103778839111,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.24759750068187714,
+ "learning_rate": 0.0006,
+ "loss": 4.877344131469727,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.2427828311920166,
+ "learning_rate": 0.0006,
+ "loss": 4.736141204833984,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.24985744059085846,
+ "learning_rate": 0.0006,
+ "loss": 4.775145530700684,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.24847744405269623,
+ "learning_rate": 0.0006,
+ "loss": 4.735613822937012,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.23182041943073273,
+ "learning_rate": 0.0006,
+ "loss": 4.698587417602539,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.24409908056259155,
+ "learning_rate": 0.0006,
+ "loss": 4.8477463722229,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.22469258308410645,
+ "learning_rate": 0.0006,
+ "loss": 4.968327522277832,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.25137174129486084,
+ "learning_rate": 0.0006,
+ "loss": 4.796964645385742,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.24264009296894073,
+ "learning_rate": 0.0006,
+ "loss": 4.7929840087890625,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2403515726327896,
+ "learning_rate": 0.0006,
+ "loss": 4.798130035400391,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.2349568009376526,
+ "learning_rate": 0.0006,
+ "loss": 4.880330562591553,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.24160413444042206,
+ "learning_rate": 0.0006,
+ "loss": 4.767426490783691,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.23826612532138824,
+ "learning_rate": 0.0006,
+ "loss": 4.770536422729492,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.2324829250574112,
+ "learning_rate": 0.0006,
+ "loss": 4.797504425048828,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.22950394451618195,
+ "learning_rate": 0.0006,
+ "loss": 4.899392604827881,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.23382946848869324,
+ "learning_rate": 0.0006,
+ "loss": 4.783044338226318,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.23512005805969238,
+ "learning_rate": 0.0006,
+ "loss": 4.765007019042969,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.23449337482452393,
+ "learning_rate": 0.0006,
+ "loss": 4.7383317947387695,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.23261594772338867,
+ "learning_rate": 0.0006,
+ "loss": 4.874032020568848,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.23119406402111053,
+ "learning_rate": 0.0006,
+ "loss": 4.829891681671143,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.2354062795639038,
+ "learning_rate": 0.0006,
+ "loss": 4.775463104248047,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.23506847023963928,
+ "learning_rate": 0.0006,
+ "loss": 4.772071838378906,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2378455549478531,
+ "learning_rate": 0.0006,
+ "loss": 4.841557502746582,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.2424905151128769,
+ "learning_rate": 0.0006,
+ "loss": 4.921994686126709,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.28491395711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.753820419311523,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 5.65425443649292,
+ "eval_runtime": 43.741,
+ "eval_samples_per_second": 55.829,
+ "eval_steps_per_second": 3.498,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.2651735544204712,
+ "learning_rate": 0.0006,
+ "loss": 4.822512149810791,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.25682687759399414,
+ "learning_rate": 0.0006,
+ "loss": 4.699320316314697,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.27568337321281433,
+ "learning_rate": 0.0006,
+ "loss": 4.715444564819336,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.2839796841144562,
+ "learning_rate": 0.0006,
+ "loss": 4.736414909362793,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28977105021476746,
+ "learning_rate": 0.0006,
+ "loss": 4.798601150512695,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.30644169449806213,
+ "learning_rate": 0.0006,
+ "loss": 4.7132768630981445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.31375980377197266,
+ "learning_rate": 0.0006,
+ "loss": 4.680423736572266,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.3464736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.709571361541748,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.3812749981880188,
+ "learning_rate": 0.0006,
+ "loss": 4.765852928161621,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.3942825496196747,
+ "learning_rate": 0.0006,
+ "loss": 4.8519487380981445,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.3755537271499634,
+ "learning_rate": 0.0006,
+ "loss": 4.843024253845215,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.372954398393631,
+ "learning_rate": 0.0006,
+ "loss": 4.687772750854492,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.3395370543003082,
+ "learning_rate": 0.0006,
+ "loss": 4.711304187774658,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.3191606402397156,
+ "learning_rate": 0.0006,
+ "loss": 4.624861717224121,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.34707602858543396,
+ "learning_rate": 0.0006,
+ "loss": 4.858656883239746,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.3357042372226715,
+ "learning_rate": 0.0006,
+ "loss": 4.6940507888793945,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.3064693808555603,
+ "learning_rate": 0.0006,
+ "loss": 4.798828125,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.29616647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.685208320617676,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.29680365324020386,
+ "learning_rate": 0.0006,
+ "loss": 4.726274490356445,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.28521019220352173,
+ "learning_rate": 0.0006,
+ "loss": 4.788668632507324,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2931210994720459,
+ "learning_rate": 0.0006,
+ "loss": 4.7508649826049805,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.2881876826286316,
+ "learning_rate": 0.0006,
+ "loss": 4.746420860290527,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2801826298236847,
+ "learning_rate": 0.0006,
+ "loss": 4.683245658874512,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.2906980514526367,
+ "learning_rate": 0.0006,
+ "loss": 4.845611095428467,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.3018617033958435,
+ "learning_rate": 0.0006,
+ "loss": 4.677291393280029,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.2702983319759369,
+ "learning_rate": 0.0006,
+ "loss": 4.788144111633301,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.2676537036895752,
+ "learning_rate": 0.0006,
+ "loss": 4.724802017211914,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.29593425989151,
+ "learning_rate": 0.0006,
+ "loss": 4.764520645141602,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.28293377161026,
+ "learning_rate": 0.0006,
+ "loss": 4.714746475219727,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.2842622697353363,
+ "learning_rate": 0.0006,
+ "loss": 4.843788146972656,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.3051214814186096,
+ "learning_rate": 0.0006,
+ "loss": 4.8960418701171875,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.2953107953071594,
+ "learning_rate": 0.0006,
+ "loss": 4.705848693847656,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.29817044734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.789251804351807,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.3101460933685303,
+ "learning_rate": 0.0006,
+ "loss": 4.83610725402832,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.33733323216438293,
+ "learning_rate": 0.0006,
+ "loss": 4.75191593170166,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.31207138299942017,
+ "learning_rate": 0.0006,
+ "loss": 4.737748146057129,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.29941996932029724,
+ "learning_rate": 0.0006,
+ "loss": 4.768226146697998,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.3001103103160858,
+ "learning_rate": 0.0006,
+ "loss": 4.830472946166992,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.2882770597934723,
+ "learning_rate": 0.0006,
+ "loss": 4.771499156951904,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.27840057015419006,
+ "learning_rate": 0.0006,
+ "loss": 4.8326029777526855,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.25528186559677124,
+ "learning_rate": 0.0006,
+ "loss": 4.764768123626709,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.268640398979187,
+ "learning_rate": 0.0006,
+ "loss": 4.808634281158447,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2617936432361603,
+ "learning_rate": 0.0006,
+ "loss": 4.591473579406738,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.2686966359615326,
+ "learning_rate": 0.0006,
+ "loss": 4.786275863647461,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.2517758011817932,
+ "learning_rate": 0.0006,
+ "loss": 4.7354350090026855,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.2682855427265167,
+ "learning_rate": 0.0006,
+ "loss": 4.72468376159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2605709135532379,
+ "learning_rate": 0.0006,
+ "loss": 4.866681098937988,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2536171078681946,
+ "learning_rate": 0.0006,
+ "loss": 4.851197242736816,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.2701990604400635,
+ "learning_rate": 0.0006,
+ "loss": 4.769331932067871,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.27237677574157715,
+ "learning_rate": 0.0006,
+ "loss": 4.783872604370117,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.2813570201396942,
+ "learning_rate": 0.0006,
+ "loss": 4.810142517089844,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.2744118571281433,
+ "learning_rate": 0.0006,
+ "loss": 4.815219879150391,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.2710288166999817,
+ "learning_rate": 0.0006,
+ "loss": 4.818605422973633,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.2889707386493683,
+ "learning_rate": 0.0006,
+ "loss": 4.828303813934326,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.2850918471813202,
+ "learning_rate": 0.0006,
+ "loss": 4.747054100036621,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.2868293523788452,
+ "learning_rate": 0.0006,
+ "loss": 4.740411758422852,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.28165286779403687,
+ "learning_rate": 0.0006,
+ "loss": 4.802685737609863,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.286299467086792,
+ "learning_rate": 0.0006,
+ "loss": 4.819136619567871,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.28287267684936523,
+ "learning_rate": 0.0006,
+ "loss": 4.783525466918945,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.262380987405777,
+ "learning_rate": 0.0006,
+ "loss": 4.802074432373047,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.2491781860589981,
+ "learning_rate": 0.0006,
+ "loss": 4.74306058883667,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2607033848762512,
+ "learning_rate": 0.0006,
+ "loss": 4.93862247467041,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.2722719609737396,
+ "learning_rate": 0.0006,
+ "loss": 4.7540788650512695,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.2561066448688507,
+ "learning_rate": 0.0006,
+ "loss": 4.840261459350586,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.24477753043174744,
+ "learning_rate": 0.0006,
+ "loss": 4.857030868530273,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2707686126232147,
+ "learning_rate": 0.0006,
+ "loss": 4.808079719543457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.3012847602367401,
+ "learning_rate": 0.0006,
+ "loss": 4.777602195739746,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.27895209193229675,
+ "learning_rate": 0.0006,
+ "loss": 4.850140571594238,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.25467604398727417,
+ "learning_rate": 0.0006,
+ "loss": 4.776744842529297,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.2490261048078537,
+ "learning_rate": 0.0006,
+ "loss": 4.7193098068237305,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.260006844997406,
+ "learning_rate": 0.0006,
+ "loss": 4.8720808029174805,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.29867982864379883,
+ "learning_rate": 0.0006,
+ "loss": 4.712764739990234,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 5.7381439208984375,
+ "eval_runtime": 43.8225,
+ "eval_samples_per_second": 55.725,
+ "eval_steps_per_second": 3.491,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.27957597374916077,
+ "learning_rate": 0.0006,
+ "loss": 4.708453178405762,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.3089258372783661,
+ "learning_rate": 0.0006,
+ "loss": 4.695163249969482,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.33015406131744385,
+ "learning_rate": 0.0006,
+ "loss": 4.7231903076171875,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.3462355434894562,
+ "learning_rate": 0.0006,
+ "loss": 4.637484550476074,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.39061883091926575,
+ "learning_rate": 0.0006,
+ "loss": 4.742788314819336,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.415400892496109,
+ "learning_rate": 0.0006,
+ "loss": 4.676384449005127,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.42324501276016235,
+ "learning_rate": 0.0006,
+ "loss": 4.782400608062744,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.4544706344604492,
+ "learning_rate": 0.0006,
+ "loss": 4.756400108337402,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.5106502175331116,
+ "learning_rate": 0.0006,
+ "loss": 4.56374454498291,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.5006974935531616,
+ "learning_rate": 0.0006,
+ "loss": 4.793520927429199,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.4933002293109894,
+ "learning_rate": 0.0006,
+ "loss": 4.733460426330566,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.5241647958755493,
+ "learning_rate": 0.0006,
+ "loss": 4.6828813552856445,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.44245678186416626,
+ "learning_rate": 0.0006,
+ "loss": 4.751768112182617,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.38361120223999023,
+ "learning_rate": 0.0006,
+ "loss": 4.623655319213867,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.3518446087837219,
+ "learning_rate": 0.0006,
+ "loss": 4.769749641418457,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.3648504912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.740978240966797,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.3529854416847229,
+ "learning_rate": 0.0006,
+ "loss": 4.810510158538818,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.35198715329170227,
+ "learning_rate": 0.0006,
+ "loss": 4.757021903991699,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.33780762553215027,
+ "learning_rate": 0.0006,
+ "loss": 4.723731994628906,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.32158350944519043,
+ "learning_rate": 0.0006,
+ "loss": 4.83018159866333,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.3102766275405884,
+ "learning_rate": 0.0006,
+ "loss": 4.638686180114746,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.3066265881061554,
+ "learning_rate": 0.0006,
+ "loss": 4.736653804779053,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.28692805767059326,
+ "learning_rate": 0.0006,
+ "loss": 4.706271171569824,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.30464550852775574,
+ "learning_rate": 0.0006,
+ "loss": 4.792922019958496,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.31697389483451843,
+ "learning_rate": 0.0006,
+ "loss": 4.789401531219482,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.3256090581417084,
+ "learning_rate": 0.0006,
+ "loss": 4.652492523193359,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.31846821308135986,
+ "learning_rate": 0.0006,
+ "loss": 4.687521457672119,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.33362695574760437,
+ "learning_rate": 0.0006,
+ "loss": 4.852813243865967,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.32229098677635193,
+ "learning_rate": 0.0006,
+ "loss": 4.793091297149658,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.305895060300827,
+ "learning_rate": 0.0006,
+ "loss": 4.790117263793945,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.32207757234573364,
+ "learning_rate": 0.0006,
+ "loss": 4.835798263549805,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.32376420497894287,
+ "learning_rate": 0.0006,
+ "loss": 4.832633972167969,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.29015713930130005,
+ "learning_rate": 0.0006,
+ "loss": 4.877597808837891,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.28575047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.812397480010986,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.2829558849334717,
+ "learning_rate": 0.0006,
+ "loss": 4.7446794509887695,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.29258114099502563,
+ "learning_rate": 0.0006,
+ "loss": 4.808740615844727,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.27980589866638184,
+ "learning_rate": 0.0006,
+ "loss": 4.839112758636475,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.287092924118042,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.2887455224990845,
+ "learning_rate": 0.0006,
+ "loss": 4.823266983032227,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.2822439968585968,
+ "learning_rate": 0.0006,
+ "loss": 4.7365522384643555,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.27785542607307434,
+ "learning_rate": 0.0006,
+ "loss": 4.736937046051025,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.2642543613910675,
+ "learning_rate": 0.0006,
+ "loss": 4.789492130279541,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.26706528663635254,
+ "learning_rate": 0.0006,
+ "loss": 4.743452072143555,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.26766839623451233,
+ "learning_rate": 0.0006,
+ "loss": 4.686418056488037,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.26643621921539307,
+ "learning_rate": 0.0006,
+ "loss": 4.834592819213867,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.26564574241638184,
+ "learning_rate": 0.0006,
+ "loss": 4.766777038574219,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.28172358870506287,
+ "learning_rate": 0.0006,
+ "loss": 4.830361366271973,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.28709760308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.8553361892700195,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.28995248675346375,
+ "learning_rate": 0.0006,
+ "loss": 4.753190994262695,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.3077753782272339,
+ "learning_rate": 0.0006,
+ "loss": 4.806690692901611,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.3043847978115082,
+ "learning_rate": 0.0006,
+ "loss": 4.784938812255859,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.2915096580982208,
+ "learning_rate": 0.0006,
+ "loss": 4.813197135925293,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.2910963296890259,
+ "learning_rate": 0.0006,
+ "loss": 4.869767665863037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.30413174629211426,
+ "learning_rate": 0.0006,
+ "loss": 4.69779109954834,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.30291229486465454,
+ "learning_rate": 0.0006,
+ "loss": 4.786224365234375,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.28398534655570984,
+ "learning_rate": 0.0006,
+ "loss": 4.819459438323975,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.26542118191719055,
+ "learning_rate": 0.0006,
+ "loss": 4.795920372009277,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.2776884436607361,
+ "learning_rate": 0.0006,
+ "loss": 4.771847724914551,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.27123749256134033,
+ "learning_rate": 0.0006,
+ "loss": 4.909326553344727,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.2861856520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.775188446044922,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 4.790653228759766,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.25781917572021484,
+ "learning_rate": 0.0006,
+ "loss": 4.664759635925293,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.26725342869758606,
+ "learning_rate": 0.0006,
+ "loss": 4.766582489013672,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.26527532935142517,
+ "learning_rate": 0.0006,
+ "loss": 4.797867774963379,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.25810113549232483,
+ "learning_rate": 0.0006,
+ "loss": 4.744149208068848,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.27672311663627625,
+ "learning_rate": 0.0006,
+ "loss": 4.763444900512695,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.27096274495124817,
+ "learning_rate": 0.0006,
+ "loss": 4.8697404861450195,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.2675880789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.8208417892456055,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.27192285656929016,
+ "learning_rate": 0.0006,
+ "loss": 4.789412498474121,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.2644771933555603,
+ "learning_rate": 0.0006,
+ "loss": 4.725559711456299,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.2741180956363678,
+ "learning_rate": 0.0006,
+ "loss": 4.753835678100586,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.33101195096969604,
+ "learning_rate": 0.0006,
+ "loss": 4.759026527404785,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 5.727452754974365,
+ "eval_runtime": 43.8945,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.29565665125846863,
+ "learning_rate": 0.0006,
+ "loss": 4.782805919647217,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.32246479392051697,
+ "learning_rate": 0.0006,
+ "loss": 4.642186164855957,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.34455177187919617,
+ "learning_rate": 0.0006,
+ "loss": 4.690554618835449,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.38254278898239136,
+ "learning_rate": 0.0006,
+ "loss": 4.655546188354492,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.40299561619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.627650260925293,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.474243700504303,
+ "learning_rate": 0.0006,
+ "loss": 4.726396083831787,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.591938853263855,
+ "learning_rate": 0.0006,
+ "loss": 4.698812484741211,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.6522976756095886,
+ "learning_rate": 0.0006,
+ "loss": 4.713204383850098,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.6380000710487366,
+ "learning_rate": 0.0006,
+ "loss": 4.686850547790527,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.6067358255386353,
+ "learning_rate": 0.0006,
+ "loss": 4.757457733154297,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.4865918755531311,
+ "learning_rate": 0.0006,
+ "loss": 4.7170634269714355,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.4246981143951416,
+ "learning_rate": 0.0006,
+ "loss": 4.759767532348633,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.46787765622138977,
+ "learning_rate": 0.0006,
+ "loss": 4.830996990203857,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.4877549409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.696422576904297,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.43138813972473145,
+ "learning_rate": 0.0006,
+ "loss": 4.732486724853516,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.4527233839035034,
+ "learning_rate": 0.0006,
+ "loss": 4.796571731567383,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.4400719106197357,
+ "learning_rate": 0.0006,
+ "loss": 4.738979816436768,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.42386704683303833,
+ "learning_rate": 0.0006,
+ "loss": 4.745267868041992,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.39832329750061035,
+ "learning_rate": 0.0006,
+ "loss": 4.698861122131348,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.34085962176322937,
+ "learning_rate": 0.0006,
+ "loss": 4.751287460327148,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.32770636677742004,
+ "learning_rate": 0.0006,
+ "loss": 4.700435638427734,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.30734360218048096,
+ "learning_rate": 0.0006,
+ "loss": 4.795270919799805,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.30018648505210876,
+ "learning_rate": 0.0006,
+ "loss": 4.775785446166992,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.28078508377075195,
+ "learning_rate": 0.0006,
+ "loss": 4.6847310066223145,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.27858516573905945,
+ "learning_rate": 0.0006,
+ "loss": 4.62139892578125,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.2775052487850189,
+ "learning_rate": 0.0006,
+ "loss": 4.689604759216309,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.27182310819625854,
+ "learning_rate": 0.0006,
+ "loss": 4.703603267669678,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.27441373467445374,
+ "learning_rate": 0.0006,
+ "loss": 4.771522045135498,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.28369051218032837,
+ "learning_rate": 0.0006,
+ "loss": 4.7344279289245605,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.27801087498664856,
+ "learning_rate": 0.0006,
+ "loss": 4.815756320953369,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.260741651058197,
+ "learning_rate": 0.0006,
+ "loss": 4.678584098815918,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2679269313812256,
+ "learning_rate": 0.0006,
+ "loss": 4.776005744934082,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2682998776435852,
+ "learning_rate": 0.0006,
+ "loss": 4.807288646697998,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.2813175320625305,
+ "learning_rate": 0.0006,
+ "loss": 4.704584121704102,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.29015132784843445,
+ "learning_rate": 0.0006,
+ "loss": 4.614935398101807,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.26803481578826904,
+ "learning_rate": 0.0006,
+ "loss": 4.777979850769043,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.2693994343280792,
+ "learning_rate": 0.0006,
+ "loss": 4.830649375915527,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.2587449848651886,
+ "learning_rate": 0.0006,
+ "loss": 4.601074695587158,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.27199143171310425,
+ "learning_rate": 0.0006,
+ "loss": 4.763520240783691,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.26992642879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.883173942565918,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2704557776451111,
+ "learning_rate": 0.0006,
+ "loss": 4.671779632568359,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.28324055671691895,
+ "learning_rate": 0.0006,
+ "loss": 4.800065040588379,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.27991577982902527,
+ "learning_rate": 0.0006,
+ "loss": 4.842158794403076,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.2781948745250702,
+ "learning_rate": 0.0006,
+ "loss": 4.741507530212402,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.26758214831352234,
+ "learning_rate": 0.0006,
+ "loss": 4.832263946533203,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.27583763003349304,
+ "learning_rate": 0.0006,
+ "loss": 4.891838073730469,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.2717309296131134,
+ "learning_rate": 0.0006,
+ "loss": 4.738429069519043,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.2870602607727051,
+ "learning_rate": 0.0006,
+ "loss": 4.82895565032959,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.2663211524486542,
+ "learning_rate": 0.0006,
+ "loss": 4.764479160308838,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.2705448567867279,
+ "learning_rate": 0.0006,
+ "loss": 4.854879379272461,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.26410096883773804,
+ "learning_rate": 0.0006,
+ "loss": 4.711219310760498,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.27170684933662415,
+ "learning_rate": 0.0006,
+ "loss": 4.803523063659668,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.27465543150901794,
+ "learning_rate": 0.0006,
+ "loss": 4.770293235778809,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.2674322724342346,
+ "learning_rate": 0.0006,
+ "loss": 4.601097106933594,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.2709243595600128,
+ "learning_rate": 0.0006,
+ "loss": 4.766852378845215,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.267578125,
+ "learning_rate": 0.0006,
+ "loss": 4.775358200073242,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.25304368138313293,
+ "learning_rate": 0.0006,
+ "loss": 4.775961875915527,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.2621113955974579,
+ "learning_rate": 0.0006,
+ "loss": 4.749572277069092,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.2573589086532593,
+ "learning_rate": 0.0006,
+ "loss": 4.670187950134277,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.26214513182640076,
+ "learning_rate": 0.0006,
+ "loss": 4.751681804656982,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.265020489692688,
+ "learning_rate": 0.0006,
+ "loss": 4.844315528869629,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.26939794421195984,
+ "learning_rate": 0.0006,
+ "loss": 4.788665771484375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.25526562333106995,
+ "learning_rate": 0.0006,
+ "loss": 4.805676460266113,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.2622731029987335,
+ "learning_rate": 0.0006,
+ "loss": 4.832369804382324,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.27433040738105774,
+ "learning_rate": 0.0006,
+ "loss": 4.750368118286133,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2718728184700012,
+ "learning_rate": 0.0006,
+ "loss": 4.72602653503418,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2658204734325409,
+ "learning_rate": 0.0006,
+ "loss": 4.764948844909668,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.2577251195907593,
+ "learning_rate": 0.0006,
+ "loss": 4.779279708862305,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2644989490509033,
+ "learning_rate": 0.0006,
+ "loss": 4.730565547943115,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.24835661053657532,
+ "learning_rate": 0.0006,
+ "loss": 4.742295265197754,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.2419978231191635,
+ "learning_rate": 0.0006,
+ "loss": 4.791097640991211,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.29586195945739746,
+ "learning_rate": 0.0006,
+ "loss": 4.900568008422852,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 5.741308689117432,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2765388488769531,
+ "learning_rate": 0.0006,
+ "loss": 4.6378374099731445,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.33635079860687256,
+ "learning_rate": 0.0006,
+ "loss": 4.7209062576293945,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.3703792095184326,
+ "learning_rate": 0.0006,
+ "loss": 4.749224662780762,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.3477242588996887,
+ "learning_rate": 0.0006,
+ "loss": 4.731342315673828,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.3360597491264343,
+ "learning_rate": 0.0006,
+ "loss": 4.645903587341309,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.3682299852371216,
+ "learning_rate": 0.0006,
+ "loss": 4.767187118530273,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.3995528221130371,
+ "learning_rate": 0.0006,
+ "loss": 4.783187389373779,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.44273078441619873,
+ "learning_rate": 0.0006,
+ "loss": 4.686215400695801,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.4842495918273926,
+ "learning_rate": 0.0006,
+ "loss": 4.618056297302246,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.4714621305465698,
+ "learning_rate": 0.0006,
+ "loss": 4.74608039855957,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.5056980848312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630936622619629,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.4814605712890625,
+ "learning_rate": 0.0006,
+ "loss": 4.6554460525512695,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.4429831802845001,
+ "learning_rate": 0.0006,
+ "loss": 4.775774955749512,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.3921932578086853,
+ "learning_rate": 0.0006,
+ "loss": 4.688625335693359,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.3671759366989136,
+ "learning_rate": 0.0006,
+ "loss": 4.740348815917969,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.3539547920227051,
+ "learning_rate": 0.0006,
+ "loss": 4.786359786987305,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.35315510630607605,
+ "learning_rate": 0.0006,
+ "loss": 4.6600236892700195,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.34705057740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.7938432693481445,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.36557161808013916,
+ "learning_rate": 0.0006,
+ "loss": 4.796282768249512,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.3776678144931793,
+ "learning_rate": 0.0006,
+ "loss": 4.697395324707031,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.35925111174583435,
+ "learning_rate": 0.0006,
+ "loss": 4.796472549438477,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.345796138048172,
+ "learning_rate": 0.0006,
+ "loss": 4.748812675476074,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.3503935635089874,
+ "learning_rate": 0.0006,
+ "loss": 4.7405290603637695,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.326704204082489,
+ "learning_rate": 0.0006,
+ "loss": 4.7956647872924805,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.31299570202827454,
+ "learning_rate": 0.0006,
+ "loss": 4.745236396789551,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.31835827231407166,
+ "learning_rate": 0.0006,
+ "loss": 4.743412494659424,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.32689738273620605,
+ "learning_rate": 0.0006,
+ "loss": 4.693922996520996,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.3170180022716522,
+ "learning_rate": 0.0006,
+ "loss": 4.574334144592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.28856027126312256,
+ "learning_rate": 0.0006,
+ "loss": 4.69278621673584,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.28727105259895325,
+ "learning_rate": 0.0006,
+ "loss": 4.870584487915039,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.30618929862976074,
+ "learning_rate": 0.0006,
+ "loss": 4.710630416870117,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.30106228590011597,
+ "learning_rate": 0.0006,
+ "loss": 4.78621768951416,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.3127973675727844,
+ "learning_rate": 0.0006,
+ "loss": 4.732385635375977,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.34407854080200195,
+ "learning_rate": 0.0006,
+ "loss": 4.777714729309082,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.3562130033969879,
+ "learning_rate": 0.0006,
+ "loss": 4.7410688400268555,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.341702938079834,
+ "learning_rate": 0.0006,
+ "loss": 4.766774654388428,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.3303677439689636,
+ "learning_rate": 0.0006,
+ "loss": 4.77004861831665,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.31156986951828003,
+ "learning_rate": 0.0006,
+ "loss": 4.747479438781738,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.3184884190559387,
+ "learning_rate": 0.0006,
+ "loss": 4.700263977050781,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.3110527992248535,
+ "learning_rate": 0.0006,
+ "loss": 4.7161970138549805,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.28815290331840515,
+ "learning_rate": 0.0006,
+ "loss": 4.812045574188232,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.2936907410621643,
+ "learning_rate": 0.0006,
+ "loss": 4.68677282333374,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.2669891119003296,
+ "learning_rate": 0.0006,
+ "loss": 4.829817771911621,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.28854915499687195,
+ "learning_rate": 0.0006,
+ "loss": 4.700499534606934,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.29264625906944275,
+ "learning_rate": 0.0006,
+ "loss": 4.862790107727051,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.27729302644729614,
+ "learning_rate": 0.0006,
+ "loss": 4.739252090454102,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.29394328594207764,
+ "learning_rate": 0.0006,
+ "loss": 4.751524925231934,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.28779348731040955,
+ "learning_rate": 0.0006,
+ "loss": 4.740790843963623,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.3014257550239563,
+ "learning_rate": 0.0006,
+ "loss": 4.747464179992676,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.2881982624530792,
+ "learning_rate": 0.0006,
+ "loss": 4.754976272583008,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.27951666712760925,
+ "learning_rate": 0.0006,
+ "loss": 4.673883438110352,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.26965659856796265,
+ "learning_rate": 0.0006,
+ "loss": 4.78717041015625,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.2711181640625,
+ "learning_rate": 0.0006,
+ "loss": 4.6955671310424805,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.28032365441322327,
+ "learning_rate": 0.0006,
+ "loss": 4.856951713562012,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.28150424361228943,
+ "learning_rate": 0.0006,
+ "loss": 4.722073078155518,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.27731314301490784,
+ "learning_rate": 0.0006,
+ "loss": 4.731258392333984,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2575855553150177,
+ "learning_rate": 0.0006,
+ "loss": 4.777687072753906,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.26109579205513,
+ "learning_rate": 0.0006,
+ "loss": 4.789422988891602,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.2723110020160675,
+ "learning_rate": 0.0006,
+ "loss": 4.667762756347656,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.28249359130859375,
+ "learning_rate": 0.0006,
+ "loss": 4.7450056076049805,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.3242993652820587,
+ "learning_rate": 0.0006,
+ "loss": 4.785817623138428,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.32872143387794495,
+ "learning_rate": 0.0006,
+ "loss": 4.821983337402344,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.3127986788749695,
+ "learning_rate": 0.0006,
+ "loss": 4.773980617523193,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.28630203008651733,
+ "learning_rate": 0.0006,
+ "loss": 4.762338638305664,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.2872413992881775,
+ "learning_rate": 0.0006,
+ "loss": 4.73870325088501,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.27869006991386414,
+ "learning_rate": 0.0006,
+ "loss": 4.676074028015137,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.27780386805534363,
+ "learning_rate": 0.0006,
+ "loss": 4.687546253204346,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.28561264276504517,
+ "learning_rate": 0.0006,
+ "loss": 4.766041278839111,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.3019202947616577,
+ "learning_rate": 0.0006,
+ "loss": 4.758676528930664,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.29785630106925964,
+ "learning_rate": 0.0006,
+ "loss": 4.685270309448242,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.294679194688797,
+ "learning_rate": 0.0006,
+ "loss": 4.706263542175293,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.33538082242012024,
+ "learning_rate": 0.0006,
+ "loss": 4.891357421875,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 5.742898464202881,
+ "eval_runtime": 43.7303,
+ "eval_samples_per_second": 55.842,
+ "eval_steps_per_second": 3.499,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.307748943567276,
+ "learning_rate": 0.0006,
+ "loss": 4.652132034301758,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.3507491648197174,
+ "learning_rate": 0.0006,
+ "loss": 4.745697021484375,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.38408955931663513,
+ "learning_rate": 0.0006,
+ "loss": 4.598755836486816,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.378302663564682,
+ "learning_rate": 0.0006,
+ "loss": 4.70130729675293,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.4042702317237854,
+ "learning_rate": 0.0006,
+ "loss": 4.679767608642578,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.43254274129867554,
+ "learning_rate": 0.0006,
+ "loss": 4.656557083129883,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.4129202663898468,
+ "learning_rate": 0.0006,
+ "loss": 4.590503692626953,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.4524760842323303,
+ "learning_rate": 0.0006,
+ "loss": 4.729147911071777,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.4843842685222626,
+ "learning_rate": 0.0006,
+ "loss": 4.721365928649902,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.5153928995132446,
+ "learning_rate": 0.0006,
+ "loss": 4.735813140869141,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.4828259348869324,
+ "learning_rate": 0.0006,
+ "loss": 4.741212844848633,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.43388527631759644,
+ "learning_rate": 0.0006,
+ "loss": 4.635407447814941,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.40791717171669006,
+ "learning_rate": 0.0006,
+ "loss": 4.67092227935791,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.3885430097579956,
+ "learning_rate": 0.0006,
+ "loss": 4.672141075134277,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.3691073954105377,
+ "learning_rate": 0.0006,
+ "loss": 4.717827796936035,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.37537989020347595,
+ "learning_rate": 0.0006,
+ "loss": 4.635509967803955,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.3580261170864105,
+ "learning_rate": 0.0006,
+ "loss": 4.674445152282715,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.33707237243652344,
+ "learning_rate": 0.0006,
+ "loss": 4.756173133850098,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.322557270526886,
+ "learning_rate": 0.0006,
+ "loss": 4.6927595138549805,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.33501511812210083,
+ "learning_rate": 0.0006,
+ "loss": 4.661538124084473,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.3155226409435272,
+ "learning_rate": 0.0006,
+ "loss": 4.602383613586426,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.3170369267463684,
+ "learning_rate": 0.0006,
+ "loss": 4.651324272155762,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.2983688712120056,
+ "learning_rate": 0.0006,
+ "loss": 4.681132793426514,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.3062296509742737,
+ "learning_rate": 0.0006,
+ "loss": 4.682430267333984,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.3062344789505005,
+ "learning_rate": 0.0006,
+ "loss": 4.6748762130737305,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.2991633713245392,
+ "learning_rate": 0.0006,
+ "loss": 4.709694862365723,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.30382513999938965,
+ "learning_rate": 0.0006,
+ "loss": 4.781537055969238,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.28417137265205383,
+ "learning_rate": 0.0006,
+ "loss": 4.609057426452637,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2981485426425934,
+ "learning_rate": 0.0006,
+ "loss": 4.6861724853515625,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.2851252555847168,
+ "learning_rate": 0.0006,
+ "loss": 4.678035259246826,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.29023656249046326,
+ "learning_rate": 0.0006,
+ "loss": 4.687352180480957,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.29718783497810364,
+ "learning_rate": 0.0006,
+ "loss": 4.715697765350342,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.32937324047088623,
+ "learning_rate": 0.0006,
+ "loss": 4.784548759460449,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.3537621796131134,
+ "learning_rate": 0.0006,
+ "loss": 4.759381294250488,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.3421585261821747,
+ "learning_rate": 0.0006,
+ "loss": 4.665635108947754,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.3266621232032776,
+ "learning_rate": 0.0006,
+ "loss": 4.823450565338135,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.31533941626548767,
+ "learning_rate": 0.0006,
+ "loss": 4.667892932891846,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.31221628189086914,
+ "learning_rate": 0.0006,
+ "loss": 4.7118401527404785,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.3195631504058838,
+ "learning_rate": 0.0006,
+ "loss": 4.747102737426758,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.31215667724609375,
+ "learning_rate": 0.0006,
+ "loss": 4.666533946990967,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.2902519404888153,
+ "learning_rate": 0.0006,
+ "loss": 4.683106422424316,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.28596433997154236,
+ "learning_rate": 0.0006,
+ "loss": 4.760889053344727,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.2952706813812256,
+ "learning_rate": 0.0006,
+ "loss": 4.692139148712158,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.3052367866039276,
+ "learning_rate": 0.0006,
+ "loss": 4.637414932250977,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.30309316515922546,
+ "learning_rate": 0.0006,
+ "loss": 4.758205413818359,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.3082681894302368,
+ "learning_rate": 0.0006,
+ "loss": 4.847016334533691,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.2909460961818695,
+ "learning_rate": 0.0006,
+ "loss": 4.737239837646484,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.29728901386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.788440704345703,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.32178428769111633,
+ "learning_rate": 0.0006,
+ "loss": 4.755708694458008,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.303320974111557,
+ "learning_rate": 0.0006,
+ "loss": 4.715994834899902,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.30079835653305054,
+ "learning_rate": 0.0006,
+ "loss": 4.754831314086914,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.28971415758132935,
+ "learning_rate": 0.0006,
+ "loss": 4.742223262786865,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.2875448763370514,
+ "learning_rate": 0.0006,
+ "loss": 4.717167854309082,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.28033629059791565,
+ "learning_rate": 0.0006,
+ "loss": 4.641847133636475,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.28666430711746216,
+ "learning_rate": 0.0006,
+ "loss": 4.796727180480957,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.29327645897865295,
+ "learning_rate": 0.0006,
+ "loss": 4.696428298950195,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.3313707709312439,
+ "learning_rate": 0.0006,
+ "loss": 4.7517290115356445,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.3100685179233551,
+ "learning_rate": 0.0006,
+ "loss": 4.6986565589904785,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.2872202396392822,
+ "learning_rate": 0.0006,
+ "loss": 4.7693023681640625,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.2720927894115448,
+ "learning_rate": 0.0006,
+ "loss": 4.69891357421875,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2738945782184601,
+ "learning_rate": 0.0006,
+ "loss": 4.7672200202941895,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.286281943321228,
+ "learning_rate": 0.0006,
+ "loss": 4.6087822914123535,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.29023540019989014,
+ "learning_rate": 0.0006,
+ "loss": 4.6852827072143555,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.27945610880851746,
+ "learning_rate": 0.0006,
+ "loss": 4.77293586730957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2755301594734192,
+ "learning_rate": 0.0006,
+ "loss": 4.8035502433776855,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.26920655369758606,
+ "learning_rate": 0.0006,
+ "loss": 4.765191078186035,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.2701813578605652,
+ "learning_rate": 0.0006,
+ "loss": 4.732434272766113,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.2695014476776123,
+ "learning_rate": 0.0006,
+ "loss": 4.735374927520752,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.2641933262348175,
+ "learning_rate": 0.0006,
+ "loss": 4.722548484802246,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.28955790400505066,
+ "learning_rate": 0.0006,
+ "loss": 4.7334723472595215,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.27561259269714355,
+ "learning_rate": 0.0006,
+ "loss": 4.746834754943848,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.315134197473526,
+ "learning_rate": 0.0006,
+ "loss": 4.711663246154785,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 5.755283355712891,
+ "eval_runtime": 43.7798,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.287048876285553,
+ "learning_rate": 0.0006,
+ "loss": 4.670166969299316,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.3085443377494812,
+ "learning_rate": 0.0006,
+ "loss": 4.570298194885254,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.32614946365356445,
+ "learning_rate": 0.0006,
+ "loss": 4.700160026550293,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.34712618589401245,
+ "learning_rate": 0.0006,
+ "loss": 4.630962371826172,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.3547869920730591,
+ "learning_rate": 0.0006,
+ "loss": 4.6129045486450195,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.36357581615448,
+ "learning_rate": 0.0006,
+ "loss": 4.594672203063965,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.37695392966270447,
+ "learning_rate": 0.0006,
+ "loss": 4.6985368728637695,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.3704054653644562,
+ "learning_rate": 0.0006,
+ "loss": 4.639310836791992,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.37291550636291504,
+ "learning_rate": 0.0006,
+ "loss": 4.69404411315918,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.4050193727016449,
+ "learning_rate": 0.0006,
+ "loss": 4.662414073944092,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.41453561186790466,
+ "learning_rate": 0.0006,
+ "loss": 4.548445701599121,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.4440361559391022,
+ "learning_rate": 0.0006,
+ "loss": 4.64601993560791,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.48386669158935547,
+ "learning_rate": 0.0006,
+ "loss": 4.559081077575684,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.5626362562179565,
+ "learning_rate": 0.0006,
+ "loss": 4.774048805236816,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.6082192063331604,
+ "learning_rate": 0.0006,
+ "loss": 4.796083927154541,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.6320115327835083,
+ "learning_rate": 0.0006,
+ "loss": 4.729800224304199,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.604220449924469,
+ "learning_rate": 0.0006,
+ "loss": 4.70638370513916,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.5293793678283691,
+ "learning_rate": 0.0006,
+ "loss": 4.583383560180664,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.47307124733924866,
+ "learning_rate": 0.0006,
+ "loss": 4.729422569274902,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.46765756607055664,
+ "learning_rate": 0.0006,
+ "loss": 4.703826904296875,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.4657314419746399,
+ "learning_rate": 0.0006,
+ "loss": 4.845640182495117,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.44216829538345337,
+ "learning_rate": 0.0006,
+ "loss": 4.67763614654541,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.386272132396698,
+ "learning_rate": 0.0006,
+ "loss": 4.691510200500488,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.3609565198421478,
+ "learning_rate": 0.0006,
+ "loss": 4.698401927947998,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.3592374324798584,
+ "learning_rate": 0.0006,
+ "loss": 4.754452705383301,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.34718799591064453,
+ "learning_rate": 0.0006,
+ "loss": 4.659385681152344,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.35122090578079224,
+ "learning_rate": 0.0006,
+ "loss": 4.749701023101807,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.32569295167922974,
+ "learning_rate": 0.0006,
+ "loss": 4.574879169464111,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.3293575346469879,
+ "learning_rate": 0.0006,
+ "loss": 4.618185520172119,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.344714492559433,
+ "learning_rate": 0.0006,
+ "loss": 4.689083099365234,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.34389346837997437,
+ "learning_rate": 0.0006,
+ "loss": 4.684937477111816,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.32868969440460205,
+ "learning_rate": 0.0006,
+ "loss": 4.688586235046387,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.29902413487434387,
+ "learning_rate": 0.0006,
+ "loss": 4.698688507080078,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.30272406339645386,
+ "learning_rate": 0.0006,
+ "loss": 4.685981750488281,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.3049922287464142,
+ "learning_rate": 0.0006,
+ "loss": 4.759483337402344,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.3062131404876709,
+ "learning_rate": 0.0006,
+ "loss": 4.745654106140137,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.2781411111354828,
+ "learning_rate": 0.0006,
+ "loss": 4.649420738220215,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.29445481300354004,
+ "learning_rate": 0.0006,
+ "loss": 4.690814971923828,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.2962917685508728,
+ "learning_rate": 0.0006,
+ "loss": 4.73586368560791,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.30067700147628784,
+ "learning_rate": 0.0006,
+ "loss": 4.766563892364502,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.29478758573532104,
+ "learning_rate": 0.0006,
+ "loss": 4.752696990966797,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.3036063015460968,
+ "learning_rate": 0.0006,
+ "loss": 4.74267578125,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.28547579050064087,
+ "learning_rate": 0.0006,
+ "loss": 4.607710838317871,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.2785160541534424,
+ "learning_rate": 0.0006,
+ "loss": 4.794714450836182,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2733653783798218,
+ "learning_rate": 0.0006,
+ "loss": 4.638521194458008,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.2835933268070221,
+ "learning_rate": 0.0006,
+ "loss": 4.771143913269043,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.27936577796936035,
+ "learning_rate": 0.0006,
+ "loss": 4.648352146148682,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.2838217318058014,
+ "learning_rate": 0.0006,
+ "loss": 4.76566743850708,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.2696705460548401,
+ "learning_rate": 0.0006,
+ "loss": 4.643789291381836,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.2778310179710388,
+ "learning_rate": 0.0006,
+ "loss": 4.73190450668335,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.2733503580093384,
+ "learning_rate": 0.0006,
+ "loss": 4.689017295837402,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.27573180198669434,
+ "learning_rate": 0.0006,
+ "loss": 4.725031852722168,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.2874470353126526,
+ "learning_rate": 0.0006,
+ "loss": 4.628626823425293,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.30060896277427673,
+ "learning_rate": 0.0006,
+ "loss": 4.82122278213501,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.28765320777893066,
+ "learning_rate": 0.0006,
+ "loss": 4.6275634765625,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.26706475019454956,
+ "learning_rate": 0.0006,
+ "loss": 4.698736190795898,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.2694014608860016,
+ "learning_rate": 0.0006,
+ "loss": 4.728384017944336,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.26765358448028564,
+ "learning_rate": 0.0006,
+ "loss": 4.729106426239014,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.26074185967445374,
+ "learning_rate": 0.0006,
+ "loss": 4.713966369628906,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.28472673892974854,
+ "learning_rate": 0.0006,
+ "loss": 4.748163223266602,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.287402480840683,
+ "learning_rate": 0.0006,
+ "loss": 4.710760116577148,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.2722169756889343,
+ "learning_rate": 0.0006,
+ "loss": 4.761318206787109,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.29491326212882996,
+ "learning_rate": 0.0006,
+ "loss": 4.749540328979492,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.31033822894096375,
+ "learning_rate": 0.0006,
+ "loss": 4.903538703918457,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.2963752746582031,
+ "learning_rate": 0.0006,
+ "loss": 4.71293830871582,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2831304967403412,
+ "learning_rate": 0.0006,
+ "loss": 4.733281135559082,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.26391786336898804,
+ "learning_rate": 0.0006,
+ "loss": 4.710388660430908,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.2823304831981659,
+ "learning_rate": 0.0006,
+ "loss": 4.669987201690674,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.282210111618042,
+ "learning_rate": 0.0006,
+ "loss": 4.76422119140625,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.286541610956192,
+ "learning_rate": 0.0006,
+ "loss": 4.729737758636475,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.2928644120693207,
+ "learning_rate": 0.0006,
+ "loss": 4.717299461364746,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.32404375076293945,
+ "learning_rate": 0.0006,
+ "loss": 4.796152114868164,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 5.774276256561279,
+ "eval_runtime": 43.8446,
+ "eval_samples_per_second": 55.697,
+ "eval_steps_per_second": 3.49,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.3065304458141327,
+ "learning_rate": 0.0006,
+ "loss": 4.549758434295654,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.33335405588150024,
+ "learning_rate": 0.0006,
+ "loss": 4.624852180480957,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31561028957366943,
+ "learning_rate": 0.0006,
+ "loss": 4.59984016418457,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.30952802300453186,
+ "learning_rate": 0.0006,
+ "loss": 4.590179443359375,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.3130602538585663,
+ "learning_rate": 0.0006,
+ "loss": 4.676496505737305,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.3384546935558319,
+ "learning_rate": 0.0006,
+ "loss": 4.646153450012207,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.3478468358516693,
+ "learning_rate": 0.0006,
+ "loss": 4.5340118408203125,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.34877634048461914,
+ "learning_rate": 0.0006,
+ "loss": 4.665613174438477,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.3401362895965576,
+ "learning_rate": 0.0006,
+ "loss": 4.558091163635254,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.3509744107723236,
+ "learning_rate": 0.0006,
+ "loss": 4.707609176635742,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.3746175467967987,
+ "learning_rate": 0.0006,
+ "loss": 4.67491340637207,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.4556438624858856,
+ "learning_rate": 0.0006,
+ "loss": 4.740669250488281,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.5174911022186279,
+ "learning_rate": 0.0006,
+ "loss": 4.5968756675720215,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.5200676321983337,
+ "learning_rate": 0.0006,
+ "loss": 4.6458740234375,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.5355601906776428,
+ "learning_rate": 0.0006,
+ "loss": 4.735640525817871,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.545563280582428,
+ "learning_rate": 0.0006,
+ "loss": 4.732501983642578,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.5462976098060608,
+ "learning_rate": 0.0006,
+ "loss": 4.7022013664245605,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.511328935623169,
+ "learning_rate": 0.0006,
+ "loss": 4.64348030090332,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.4898354411125183,
+ "learning_rate": 0.0006,
+ "loss": 4.623063087463379,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.48300743103027344,
+ "learning_rate": 0.0006,
+ "loss": 4.589498519897461,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.38914018869400024,
+ "learning_rate": 0.0006,
+ "loss": 4.625640869140625,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.36161094903945923,
+ "learning_rate": 0.0006,
+ "loss": 4.6406941413879395,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.3600032925605774,
+ "learning_rate": 0.0006,
+ "loss": 4.684568405151367,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.3465780019760132,
+ "learning_rate": 0.0006,
+ "loss": 4.651437759399414,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.342538058757782,
+ "learning_rate": 0.0006,
+ "loss": 4.704963684082031,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.3413223624229431,
+ "learning_rate": 0.0006,
+ "loss": 4.672974586486816,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.35285884141921997,
+ "learning_rate": 0.0006,
+ "loss": 4.649431228637695,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.32807984948158264,
+ "learning_rate": 0.0006,
+ "loss": 4.669581413269043,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.34190839529037476,
+ "learning_rate": 0.0006,
+ "loss": 4.746241569519043,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.33157041668891907,
+ "learning_rate": 0.0006,
+ "loss": 4.7010650634765625,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.3284240961074829,
+ "learning_rate": 0.0006,
+ "loss": 4.639354705810547,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.31601324677467346,
+ "learning_rate": 0.0006,
+ "loss": 4.6490631103515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.3093049228191376,
+ "learning_rate": 0.0006,
+ "loss": 4.692140579223633,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.3051738440990448,
+ "learning_rate": 0.0006,
+ "loss": 4.728006362915039,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.31631335616111755,
+ "learning_rate": 0.0006,
+ "loss": 4.7384843826293945,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.2922317683696747,
+ "learning_rate": 0.0006,
+ "loss": 4.563342094421387,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.28847557306289673,
+ "learning_rate": 0.0006,
+ "loss": 4.754903316497803,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.2970533072948456,
+ "learning_rate": 0.0006,
+ "loss": 4.722106456756592,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.3128093183040619,
+ "learning_rate": 0.0006,
+ "loss": 4.645869255065918,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.2926556468009949,
+ "learning_rate": 0.0006,
+ "loss": 4.677567481994629,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.29431676864624023,
+ "learning_rate": 0.0006,
+ "loss": 4.657949447631836,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.31913504004478455,
+ "learning_rate": 0.0006,
+ "loss": 4.663957595825195,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.35639217495918274,
+ "learning_rate": 0.0006,
+ "loss": 4.716629981994629,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.3490971326828003,
+ "learning_rate": 0.0006,
+ "loss": 4.648688316345215,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.29649654030799866,
+ "learning_rate": 0.0006,
+ "loss": 4.614950180053711,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.2914186418056488,
+ "learning_rate": 0.0006,
+ "loss": 4.620098114013672,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.3174769878387451,
+ "learning_rate": 0.0006,
+ "loss": 4.714776039123535,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.3271714448928833,
+ "learning_rate": 0.0006,
+ "loss": 4.6742167472839355,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.29172855615615845,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.314121812582016,
+ "learning_rate": 0.0006,
+ "loss": 4.665582656860352,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.30894735455513,
+ "learning_rate": 0.0006,
+ "loss": 4.8380022048950195,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.2831577658653259,
+ "learning_rate": 0.0006,
+ "loss": 4.620992660522461,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2823753356933594,
+ "learning_rate": 0.0006,
+ "loss": 4.752147674560547,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.28414157032966614,
+ "learning_rate": 0.0006,
+ "loss": 4.73150634765625,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.28588220477104187,
+ "learning_rate": 0.0006,
+ "loss": 4.587608337402344,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.27907267212867737,
+ "learning_rate": 0.0006,
+ "loss": 4.731465816497803,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.3002474308013916,
+ "learning_rate": 0.0006,
+ "loss": 4.686066150665283,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.3378055989742279,
+ "learning_rate": 0.0006,
+ "loss": 4.721791744232178,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.3418593108654022,
+ "learning_rate": 0.0006,
+ "loss": 4.661843299865723,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.31571581959724426,
+ "learning_rate": 0.0006,
+ "loss": 4.680526256561279,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.30779600143432617,
+ "learning_rate": 0.0006,
+ "loss": 4.663712501525879,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.3071037828922272,
+ "learning_rate": 0.0006,
+ "loss": 4.664543151855469,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.2849939167499542,
+ "learning_rate": 0.0006,
+ "loss": 4.696779727935791,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.2891613245010376,
+ "learning_rate": 0.0006,
+ "loss": 4.714805603027344,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.29151469469070435,
+ "learning_rate": 0.0006,
+ "loss": 4.734580039978027,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.26015880703926086,
+ "learning_rate": 0.0006,
+ "loss": 4.780220985412598,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2897493541240692,
+ "learning_rate": 0.0006,
+ "loss": 4.736289978027344,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.2938452363014221,
+ "learning_rate": 0.0006,
+ "loss": 4.776765823364258,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.29073503613471985,
+ "learning_rate": 0.0006,
+ "loss": 4.805467128753662,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2753016948699951,
+ "learning_rate": 0.0006,
+ "loss": 4.649700164794922,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.27313321828842163,
+ "learning_rate": 0.0006,
+ "loss": 4.782794952392578,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.31929391622543335,
+ "learning_rate": 0.0006,
+ "loss": 4.806358337402344,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 5.757300853729248,
+ "eval_runtime": 43.8361,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.3020373582839966,
+ "learning_rate": 0.0006,
+ "loss": 4.576563358306885,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.3447909951210022,
+ "learning_rate": 0.0006,
+ "loss": 4.652361869812012,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.4024331569671631,
+ "learning_rate": 0.0006,
+ "loss": 4.606131076812744,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.4725987911224365,
+ "learning_rate": 0.0006,
+ "loss": 4.664617538452148,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.4971606433391571,
+ "learning_rate": 0.0006,
+ "loss": 4.5909013748168945,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.483463853597641,
+ "learning_rate": 0.0006,
+ "loss": 4.638282775878906,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.5144500136375427,
+ "learning_rate": 0.0006,
+ "loss": 4.5071306228637695,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.4655718505382538,
+ "learning_rate": 0.0006,
+ "loss": 4.663610458374023,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.45901769399642944,
+ "learning_rate": 0.0006,
+ "loss": 4.543540000915527,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.4578682482242584,
+ "learning_rate": 0.0006,
+ "loss": 4.700233459472656,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.41222891211509705,
+ "learning_rate": 0.0006,
+ "loss": 4.6367902755737305,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.40016305446624756,
+ "learning_rate": 0.0006,
+ "loss": 4.657614707946777,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.41412219405174255,
+ "learning_rate": 0.0006,
+ "loss": 4.706423759460449,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.4100385308265686,
+ "learning_rate": 0.0006,
+ "loss": 4.605664253234863,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.3983365595340729,
+ "learning_rate": 0.0006,
+ "loss": 4.63967227935791,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.37901362776756287,
+ "learning_rate": 0.0006,
+ "loss": 4.534994125366211,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.36480629444122314,
+ "learning_rate": 0.0006,
+ "loss": 4.687273025512695,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.36765897274017334,
+ "learning_rate": 0.0006,
+ "loss": 4.668797492980957,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.34338998794555664,
+ "learning_rate": 0.0006,
+ "loss": 4.651860237121582,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.33618098497390747,
+ "learning_rate": 0.0006,
+ "loss": 4.592582702636719,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.361708402633667,
+ "learning_rate": 0.0006,
+ "loss": 4.631037712097168,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.3599449694156647,
+ "learning_rate": 0.0006,
+ "loss": 4.61978816986084,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.3447154462337494,
+ "learning_rate": 0.0006,
+ "loss": 4.548618316650391,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.31913527846336365,
+ "learning_rate": 0.0006,
+ "loss": 4.65565299987793,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2983294725418091,
+ "learning_rate": 0.0006,
+ "loss": 4.605438232421875,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.3184450566768646,
+ "learning_rate": 0.0006,
+ "loss": 4.712775230407715,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.3317561745643616,
+ "learning_rate": 0.0006,
+ "loss": 4.643712997436523,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.32965439558029175,
+ "learning_rate": 0.0006,
+ "loss": 4.581006050109863,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.3078107535839081,
+ "learning_rate": 0.0006,
+ "loss": 4.668674468994141,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2912382185459137,
+ "learning_rate": 0.0006,
+ "loss": 4.664251804351807,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.29241427779197693,
+ "learning_rate": 0.0006,
+ "loss": 4.592551231384277,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.30285370349884033,
+ "learning_rate": 0.0006,
+ "loss": 4.764433860778809,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.30337899923324585,
+ "learning_rate": 0.0006,
+ "loss": 4.693865776062012,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2898014783859253,
+ "learning_rate": 0.0006,
+ "loss": 4.643848419189453,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.283707857131958,
+ "learning_rate": 0.0006,
+ "loss": 4.616052150726318,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.2938646078109741,
+ "learning_rate": 0.0006,
+ "loss": 4.655579566955566,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.324861615896225,
+ "learning_rate": 0.0006,
+ "loss": 4.696187496185303,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.30191269516944885,
+ "learning_rate": 0.0006,
+ "loss": 4.730968475341797,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.299152672290802,
+ "learning_rate": 0.0006,
+ "loss": 4.644778251647949,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.30297261476516724,
+ "learning_rate": 0.0006,
+ "loss": 4.722742080688477,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.3088303208351135,
+ "learning_rate": 0.0006,
+ "loss": 4.707911968231201,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.31089210510253906,
+ "learning_rate": 0.0006,
+ "loss": 4.628973960876465,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.28864020109176636,
+ "learning_rate": 0.0006,
+ "loss": 4.567415237426758,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2891201078891754,
+ "learning_rate": 0.0006,
+ "loss": 4.680665969848633,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.3034587502479553,
+ "learning_rate": 0.0006,
+ "loss": 4.7281694412231445,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2816162705421448,
+ "learning_rate": 0.0006,
+ "loss": 4.736742973327637,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.28939345479011536,
+ "learning_rate": 0.0006,
+ "loss": 4.650476932525635,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.29516950249671936,
+ "learning_rate": 0.0006,
+ "loss": 4.56840705871582,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.2940126061439514,
+ "learning_rate": 0.0006,
+ "loss": 4.72152853012085,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.32653123140335083,
+ "learning_rate": 0.0006,
+ "loss": 4.752821922302246,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.35040009021759033,
+ "learning_rate": 0.0006,
+ "loss": 4.742063522338867,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.3459375500679016,
+ "learning_rate": 0.0006,
+ "loss": 4.669220447540283,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.33729544281959534,
+ "learning_rate": 0.0006,
+ "loss": 4.6190571784973145,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.32069486379623413,
+ "learning_rate": 0.0006,
+ "loss": 4.661642074584961,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.306902140378952,
+ "learning_rate": 0.0006,
+ "loss": 4.637726783752441,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.30288752913475037,
+ "learning_rate": 0.0006,
+ "loss": 4.662792682647705,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.31327444314956665,
+ "learning_rate": 0.0006,
+ "loss": 4.719430923461914,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.31612464785575867,
+ "learning_rate": 0.0006,
+ "loss": 4.708035469055176,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.3176685571670532,
+ "learning_rate": 0.0006,
+ "loss": 4.70930290222168,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.3043796718120575,
+ "learning_rate": 0.0006,
+ "loss": 4.596065521240234,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.29696205258369446,
+ "learning_rate": 0.0006,
+ "loss": 4.7286834716796875,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.298464298248291,
+ "learning_rate": 0.0006,
+ "loss": 4.735607624053955,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.3140217363834381,
+ "learning_rate": 0.0006,
+ "loss": 4.7755303382873535,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.30558937788009644,
+ "learning_rate": 0.0006,
+ "loss": 4.663680076599121,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.29251185059547424,
+ "learning_rate": 0.0006,
+ "loss": 4.792819976806641,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2870614528656006,
+ "learning_rate": 0.0006,
+ "loss": 4.625971794128418,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.2865935266017914,
+ "learning_rate": 0.0006,
+ "loss": 4.679939270019531,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.28689131140708923,
+ "learning_rate": 0.0006,
+ "loss": 4.644127368927002,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.27560368180274963,
+ "learning_rate": 0.0006,
+ "loss": 4.664097785949707,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.2817606031894684,
+ "learning_rate": 0.0006,
+ "loss": 4.679766654968262,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.28560441732406616,
+ "learning_rate": 0.0006,
+ "loss": 4.692955017089844,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.35165202617645264,
+ "learning_rate": 0.0006,
+ "loss": 4.642341613769531,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 5.839319705963135,
+ "eval_runtime": 43.8357,
+ "eval_samples_per_second": 55.708,
+ "eval_steps_per_second": 3.49,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.31543174386024475,
+ "learning_rate": 0.0006,
+ "loss": 4.513474941253662,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.33828601241111755,
+ "learning_rate": 0.0006,
+ "loss": 4.614182949066162,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.3351331651210785,
+ "learning_rate": 0.0006,
+ "loss": 4.646537780761719,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.323313444852829,
+ "learning_rate": 0.0006,
+ "loss": 4.634343147277832,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.33375170826911926,
+ "learning_rate": 0.0006,
+ "loss": 4.710648059844971,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.36435163021087646,
+ "learning_rate": 0.0006,
+ "loss": 4.653026103973389,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.38995712995529175,
+ "learning_rate": 0.0006,
+ "loss": 4.560888767242432,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.4031015634536743,
+ "learning_rate": 0.0006,
+ "loss": 4.514697074890137,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.39468079805374146,
+ "learning_rate": 0.0006,
+ "loss": 4.638237476348877,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.42110496759414673,
+ "learning_rate": 0.0006,
+ "loss": 4.650570869445801,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.46812599897384644,
+ "learning_rate": 0.0006,
+ "loss": 4.530312538146973,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.43222105503082275,
+ "learning_rate": 0.0006,
+ "loss": 4.643311977386475,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.4154391288757324,
+ "learning_rate": 0.0006,
+ "loss": 4.662100791931152,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.4241020381450653,
+ "learning_rate": 0.0006,
+ "loss": 4.771770000457764,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.3998659551143646,
+ "learning_rate": 0.0006,
+ "loss": 4.585792064666748,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.4028931260108948,
+ "learning_rate": 0.0006,
+ "loss": 4.657351493835449,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.40144094824790955,
+ "learning_rate": 0.0006,
+ "loss": 4.590945243835449,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.3952426016330719,
+ "learning_rate": 0.0006,
+ "loss": 4.604606628417969,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.3774770200252533,
+ "learning_rate": 0.0006,
+ "loss": 4.704570770263672,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.4060847759246826,
+ "learning_rate": 0.0006,
+ "loss": 4.679835319519043,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.3798525929450989,
+ "learning_rate": 0.0006,
+ "loss": 4.682251930236816,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.3700399696826935,
+ "learning_rate": 0.0006,
+ "loss": 4.612977027893066,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.35339099168777466,
+ "learning_rate": 0.0006,
+ "loss": 4.642057418823242,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.38925960659980774,
+ "learning_rate": 0.0006,
+ "loss": 4.700014591217041,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.4631812274456024,
+ "learning_rate": 0.0006,
+ "loss": 4.6031341552734375,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.4949442744255066,
+ "learning_rate": 0.0006,
+ "loss": 4.546530723571777,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.49954885244369507,
+ "learning_rate": 0.0006,
+ "loss": 4.642653942108154,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.45241039991378784,
+ "learning_rate": 0.0006,
+ "loss": 4.5235161781311035,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.4001471698284149,
+ "learning_rate": 0.0006,
+ "loss": 4.745048999786377,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.3811562657356262,
+ "learning_rate": 0.0006,
+ "loss": 4.693822860717773,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.3969460725784302,
+ "learning_rate": 0.0006,
+ "loss": 4.71859073638916,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.39058491587638855,
+ "learning_rate": 0.0006,
+ "loss": 4.694077968597412,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.3610304594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.649267196655273,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.34086543321609497,
+ "learning_rate": 0.0006,
+ "loss": 4.735080718994141,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.35864824056625366,
+ "learning_rate": 0.0006,
+ "loss": 4.652968406677246,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.3441547155380249,
+ "learning_rate": 0.0006,
+ "loss": 4.694733142852783,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.3302605450153351,
+ "learning_rate": 0.0006,
+ "loss": 4.748199462890625,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.3289027214050293,
+ "learning_rate": 0.0006,
+ "loss": 4.62442684173584,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.3359791338443756,
+ "learning_rate": 0.0006,
+ "loss": 4.700467109680176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.3257763087749481,
+ "learning_rate": 0.0006,
+ "loss": 4.582709789276123,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.31853699684143066,
+ "learning_rate": 0.0006,
+ "loss": 4.655320644378662,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.30408182740211487,
+ "learning_rate": 0.0006,
+ "loss": 4.572656631469727,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.30974048376083374,
+ "learning_rate": 0.0006,
+ "loss": 4.596149444580078,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.34440186619758606,
+ "learning_rate": 0.0006,
+ "loss": 4.624264717102051,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.32599928975105286,
+ "learning_rate": 0.0006,
+ "loss": 4.576072692871094,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2982354760169983,
+ "learning_rate": 0.0006,
+ "loss": 4.6689252853393555,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.3248741924762726,
+ "learning_rate": 0.0006,
+ "loss": 4.671905517578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.31760135293006897,
+ "learning_rate": 0.0006,
+ "loss": 4.788260459899902,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.3247862160205841,
+ "learning_rate": 0.0006,
+ "loss": 4.645524024963379,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.29145562648773193,
+ "learning_rate": 0.0006,
+ "loss": 4.6907148361206055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.2977028787136078,
+ "learning_rate": 0.0006,
+ "loss": 4.697263717651367,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.29902350902557373,
+ "learning_rate": 0.0006,
+ "loss": 4.648673057556152,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.29621270298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.731705665588379,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.291843980550766,
+ "learning_rate": 0.0006,
+ "loss": 4.68354606628418,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.2950941324234009,
+ "learning_rate": 0.0006,
+ "loss": 4.647444248199463,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.2836013436317444,
+ "learning_rate": 0.0006,
+ "loss": 4.629232883453369,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.2985057234764099,
+ "learning_rate": 0.0006,
+ "loss": 4.69997501373291,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.31131166219711304,
+ "learning_rate": 0.0006,
+ "loss": 4.768311500549316,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.3044357895851135,
+ "learning_rate": 0.0006,
+ "loss": 4.592154502868652,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.3156500458717346,
+ "learning_rate": 0.0006,
+ "loss": 4.64116096496582,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.3127914369106293,
+ "learning_rate": 0.0006,
+ "loss": 4.594679832458496,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.30241525173187256,
+ "learning_rate": 0.0006,
+ "loss": 4.695204734802246,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.28643691539764404,
+ "learning_rate": 0.0006,
+ "loss": 4.669322967529297,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.327886164188385,
+ "learning_rate": 0.0006,
+ "loss": 4.70878791809082,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.34588995575904846,
+ "learning_rate": 0.0006,
+ "loss": 4.771905899047852,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.3039230704307556,
+ "learning_rate": 0.0006,
+ "loss": 4.681316375732422,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.28816908597946167,
+ "learning_rate": 0.0006,
+ "loss": 4.645452976226807,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.30247801542282104,
+ "learning_rate": 0.0006,
+ "loss": 4.627409934997559,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.30706167221069336,
+ "learning_rate": 0.0006,
+ "loss": 4.586199760437012,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.3044380247592926,
+ "learning_rate": 0.0006,
+ "loss": 4.72674560546875,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.3233043849468231,
+ "learning_rate": 0.0006,
+ "loss": 4.718781471252441,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.35393577814102173,
+ "learning_rate": 0.0006,
+ "loss": 4.615297794342041,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 5.840414047241211,
+ "eval_runtime": 43.9165,
+ "eval_samples_per_second": 55.606,
+ "eval_steps_per_second": 3.484,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.3321620225906372,
+ "learning_rate": 0.0006,
+ "loss": 4.600318908691406,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.3503274619579315,
+ "learning_rate": 0.0006,
+ "loss": 4.62416934967041,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.3595428764820099,
+ "learning_rate": 0.0006,
+ "loss": 4.574428558349609,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.39894571900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.5448102951049805,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.44553327560424805,
+ "learning_rate": 0.0006,
+ "loss": 4.542896747589111,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.5228663086891174,
+ "learning_rate": 0.0006,
+ "loss": 4.578975200653076,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.6081531643867493,
+ "learning_rate": 0.0006,
+ "loss": 4.476727485656738,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.605787456035614,
+ "learning_rate": 0.0006,
+ "loss": 4.663329601287842,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.6263728737831116,
+ "learning_rate": 0.0006,
+ "loss": 4.620291233062744,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.6002331972122192,
+ "learning_rate": 0.0006,
+ "loss": 4.6212053298950195,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.5345606803894043,
+ "learning_rate": 0.0006,
+ "loss": 4.63943338394165,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.5290395617485046,
+ "learning_rate": 0.0006,
+ "loss": 4.586569786071777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.4463443458080292,
+ "learning_rate": 0.0006,
+ "loss": 4.557554721832275,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.42246174812316895,
+ "learning_rate": 0.0006,
+ "loss": 4.592895030975342,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.4477933347225189,
+ "learning_rate": 0.0006,
+ "loss": 4.6135358810424805,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.4573669135570526,
+ "learning_rate": 0.0006,
+ "loss": 4.598049640655518,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.45062506198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.535355567932129,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.4321257472038269,
+ "learning_rate": 0.0006,
+ "loss": 4.6834516525268555,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.43351060152053833,
+ "learning_rate": 0.0006,
+ "loss": 4.664090633392334,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.4229077100753784,
+ "learning_rate": 0.0006,
+ "loss": 4.501832962036133,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.38668128848075867,
+ "learning_rate": 0.0006,
+ "loss": 4.611040115356445,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.37613776326179504,
+ "learning_rate": 0.0006,
+ "loss": 4.658809661865234,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.34375715255737305,
+ "learning_rate": 0.0006,
+ "loss": 4.614209175109863,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.3597649037837982,
+ "learning_rate": 0.0006,
+ "loss": 4.5670881271362305,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.3534838855266571,
+ "learning_rate": 0.0006,
+ "loss": 4.707054615020752,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.31798043847084045,
+ "learning_rate": 0.0006,
+ "loss": 4.660801887512207,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.31013432145118713,
+ "learning_rate": 0.0006,
+ "loss": 4.6243486404418945,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.3014116883277893,
+ "learning_rate": 0.0006,
+ "loss": 4.640996932983398,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.28816068172454834,
+ "learning_rate": 0.0006,
+ "loss": 4.628698348999023,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.31481680274009705,
+ "learning_rate": 0.0006,
+ "loss": 4.594593048095703,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.32127222418785095,
+ "learning_rate": 0.0006,
+ "loss": 4.681570053100586,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.3022087812423706,
+ "learning_rate": 0.0006,
+ "loss": 4.60733699798584,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.30550166964530945,
+ "learning_rate": 0.0006,
+ "loss": 4.637888431549072,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.2996579110622406,
+ "learning_rate": 0.0006,
+ "loss": 4.633310317993164,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.2910268306732178,
+ "learning_rate": 0.0006,
+ "loss": 4.601726055145264,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.29696857929229736,
+ "learning_rate": 0.0006,
+ "loss": 4.6557207107543945,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.288235604763031,
+ "learning_rate": 0.0006,
+ "loss": 4.582273483276367,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.2968430817127228,
+ "learning_rate": 0.0006,
+ "loss": 4.549392223358154,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.29677140712738037,
+ "learning_rate": 0.0006,
+ "loss": 4.5992751121521,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.2831859886646271,
+ "learning_rate": 0.0006,
+ "loss": 4.543501853942871,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2917062044143677,
+ "learning_rate": 0.0006,
+ "loss": 4.562037467956543,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.2930172085762024,
+ "learning_rate": 0.0006,
+ "loss": 4.582555770874023,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.30771926045417786,
+ "learning_rate": 0.0006,
+ "loss": 4.617639541625977,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.3005470037460327,
+ "learning_rate": 0.0006,
+ "loss": 4.7286481857299805,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.29667574167251587,
+ "learning_rate": 0.0006,
+ "loss": 4.659395217895508,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.3046879172325134,
+ "learning_rate": 0.0006,
+ "loss": 4.664639472961426,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.3116922080516815,
+ "learning_rate": 0.0006,
+ "loss": 4.573315143585205,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.2832443416118622,
+ "learning_rate": 0.0006,
+ "loss": 4.5743513107299805,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.30628111958503723,
+ "learning_rate": 0.0006,
+ "loss": 4.61782169342041,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.31703248620033264,
+ "learning_rate": 0.0006,
+ "loss": 4.725757598876953,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.2952382564544678,
+ "learning_rate": 0.0006,
+ "loss": 4.585330009460449,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.2917309105396271,
+ "learning_rate": 0.0006,
+ "loss": 4.711730480194092,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.28715914487838745,
+ "learning_rate": 0.0006,
+ "loss": 4.687237739562988,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2959245443344116,
+ "learning_rate": 0.0006,
+ "loss": 4.608839511871338,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.308108389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.618854522705078,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.308783620595932,
+ "learning_rate": 0.0006,
+ "loss": 4.705942153930664,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.2925284802913666,
+ "learning_rate": 0.0006,
+ "loss": 4.680954933166504,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.3011143207550049,
+ "learning_rate": 0.0006,
+ "loss": 4.681756973266602,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.31525957584381104,
+ "learning_rate": 0.0006,
+ "loss": 4.655550956726074,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.3187063932418823,
+ "learning_rate": 0.0006,
+ "loss": 4.616223335266113,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.31461548805236816,
+ "learning_rate": 0.0006,
+ "loss": 4.751060485839844,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.31565529108047485,
+ "learning_rate": 0.0006,
+ "loss": 4.669361591339111,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.30572032928466797,
+ "learning_rate": 0.0006,
+ "loss": 4.685685157775879,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.28766486048698425,
+ "learning_rate": 0.0006,
+ "loss": 4.622955322265625,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.3113546073436737,
+ "learning_rate": 0.0006,
+ "loss": 4.69392204284668,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.32284656167030334,
+ "learning_rate": 0.0006,
+ "loss": 4.696072101593018,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.29571300745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.6440324783325195,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.3011058568954468,
+ "learning_rate": 0.0006,
+ "loss": 4.59510612487793,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.30904021859169006,
+ "learning_rate": 0.0006,
+ "loss": 4.637422561645508,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.30851343274116516,
+ "learning_rate": 0.0006,
+ "loss": 4.658636093139648,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.30168068408966064,
+ "learning_rate": 0.0006,
+ "loss": 4.6646575927734375,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.3644706904888153,
+ "learning_rate": 0.0006,
+ "loss": 4.752438545227051,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 5.867947101593018,
+ "eval_runtime": 43.992,
+ "eval_samples_per_second": 55.51,
+ "eval_steps_per_second": 3.478,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.32679829001426697,
+ "learning_rate": 0.0006,
+ "loss": 4.5397844314575195,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.3535325825214386,
+ "learning_rate": 0.0006,
+ "loss": 4.488659858703613,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.3467579185962677,
+ "learning_rate": 0.0006,
+ "loss": 4.593907356262207,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.3603653013706207,
+ "learning_rate": 0.0006,
+ "loss": 4.556674480438232,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.4306694567203522,
+ "learning_rate": 0.0006,
+ "loss": 4.4188313484191895,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.5823283195495605,
+ "learning_rate": 0.0006,
+ "loss": 4.657480716705322,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.709908127784729,
+ "learning_rate": 0.0006,
+ "loss": 4.49940299987793,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.8264120221138,
+ "learning_rate": 0.0006,
+ "loss": 4.633574962615967,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 1.1263349056243896,
+ "learning_rate": 0.0006,
+ "loss": 4.689377784729004,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 1.1494708061218262,
+ "learning_rate": 0.0006,
+ "loss": 4.701170921325684,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.7651200294494629,
+ "learning_rate": 0.0006,
+ "loss": 4.65546989440918,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.6712098717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.679233551025391,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.5973693132400513,
+ "learning_rate": 0.0006,
+ "loss": 4.655966758728027,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.5545583367347717,
+ "learning_rate": 0.0006,
+ "loss": 4.667424201965332,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.5241208076477051,
+ "learning_rate": 0.0006,
+ "loss": 4.672753810882568,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.4671924412250519,
+ "learning_rate": 0.0006,
+ "loss": 4.72408390045166,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.46705347299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.629276275634766,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.4163855016231537,
+ "learning_rate": 0.0006,
+ "loss": 4.544649124145508,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.3751583993434906,
+ "learning_rate": 0.0006,
+ "loss": 4.611633777618408,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.35950690507888794,
+ "learning_rate": 0.0006,
+ "loss": 4.560570240020752,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.5192365646362305,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.3371301293373108,
+ "learning_rate": 0.0006,
+ "loss": 4.590736389160156,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.33555495738983154,
+ "learning_rate": 0.0006,
+ "loss": 4.68996524810791,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.33514806628227234,
+ "learning_rate": 0.0006,
+ "loss": 4.594453811645508,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.3122229278087616,
+ "learning_rate": 0.0006,
+ "loss": 4.644887447357178,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.30725935101509094,
+ "learning_rate": 0.0006,
+ "loss": 4.632709503173828,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.3313789367675781,
+ "learning_rate": 0.0006,
+ "loss": 4.545955181121826,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.3199572265148163,
+ "learning_rate": 0.0006,
+ "loss": 4.661871910095215,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.29648053646087646,
+ "learning_rate": 0.0006,
+ "loss": 4.660079479217529,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2989976108074188,
+ "learning_rate": 0.0006,
+ "loss": 4.582353591918945,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.3009944558143616,
+ "learning_rate": 0.0006,
+ "loss": 4.579360008239746,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.3066805601119995,
+ "learning_rate": 0.0006,
+ "loss": 4.637447357177734,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.3172704577445984,
+ "learning_rate": 0.0006,
+ "loss": 4.640661239624023,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.30474281311035156,
+ "learning_rate": 0.0006,
+ "loss": 4.519586563110352,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.28235259652137756,
+ "learning_rate": 0.0006,
+ "loss": 4.656527996063232,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.296500027179718,
+ "learning_rate": 0.0006,
+ "loss": 4.653820037841797,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.32468652725219727,
+ "learning_rate": 0.0006,
+ "loss": 4.6987714767456055,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.3192584216594696,
+ "learning_rate": 0.0006,
+ "loss": 4.543170928955078,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.3083389401435852,
+ "learning_rate": 0.0006,
+ "loss": 4.676158905029297,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.3118062913417816,
+ "learning_rate": 0.0006,
+ "loss": 4.694574356079102,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.31576287746429443,
+ "learning_rate": 0.0006,
+ "loss": 4.652341842651367,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.2905154824256897,
+ "learning_rate": 0.0006,
+ "loss": 4.64215087890625,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.3018540143966675,
+ "learning_rate": 0.0006,
+ "loss": 4.572279930114746,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.30587276816368103,
+ "learning_rate": 0.0006,
+ "loss": 4.701142311096191,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.30911725759506226,
+ "learning_rate": 0.0006,
+ "loss": 4.577859401702881,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.3211427927017212,
+ "learning_rate": 0.0006,
+ "loss": 4.622485160827637,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.328840047121048,
+ "learning_rate": 0.0006,
+ "loss": 4.748692035675049,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.3006831109523773,
+ "learning_rate": 0.0006,
+ "loss": 4.665857315063477,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.3068508803844452,
+ "learning_rate": 0.0006,
+ "loss": 4.636821746826172,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2949622869491577,
+ "learning_rate": 0.0006,
+ "loss": 4.660830497741699,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.2969958186149597,
+ "learning_rate": 0.0006,
+ "loss": 4.719306468963623,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.30538496375083923,
+ "learning_rate": 0.0006,
+ "loss": 4.602222442626953,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.2937524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.657732009887695,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.30403268337249756,
+ "learning_rate": 0.0006,
+ "loss": 4.667140483856201,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.2920544445514679,
+ "learning_rate": 0.0006,
+ "loss": 4.679815769195557,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.3002610504627228,
+ "learning_rate": 0.0006,
+ "loss": 4.650712966918945,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.300240159034729,
+ "learning_rate": 0.0006,
+ "loss": 4.643938064575195,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.2947950065135956,
+ "learning_rate": 0.0006,
+ "loss": 4.625290870666504,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.30320173501968384,
+ "learning_rate": 0.0006,
+ "loss": 4.627419471740723,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.31849896907806396,
+ "learning_rate": 0.0006,
+ "loss": 4.634960651397705,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.3199443817138672,
+ "learning_rate": 0.0006,
+ "loss": 4.666940689086914,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.3090095818042755,
+ "learning_rate": 0.0006,
+ "loss": 4.594564437866211,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.31382766366004944,
+ "learning_rate": 0.0006,
+ "loss": 4.5995073318481445,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.3089219629764557,
+ "learning_rate": 0.0006,
+ "loss": 4.725045204162598,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.3000302016735077,
+ "learning_rate": 0.0006,
+ "loss": 4.741748809814453,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.2981584072113037,
+ "learning_rate": 0.0006,
+ "loss": 4.615153789520264,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.28591710329055786,
+ "learning_rate": 0.0006,
+ "loss": 4.547051906585693,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2890978157520294,
+ "learning_rate": 0.0006,
+ "loss": 4.601262092590332,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.2940271198749542,
+ "learning_rate": 0.0006,
+ "loss": 4.687787055969238,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.29556405544281006,
+ "learning_rate": 0.0006,
+ "loss": 4.742071151733398,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.29128697514533997,
+ "learning_rate": 0.0006,
+ "loss": 4.64792537689209,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.33553871512413025,
+ "learning_rate": 0.0006,
+ "loss": 4.620623588562012,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 5.868772029876709,
+ "eval_runtime": 43.8744,
+ "eval_samples_per_second": 55.659,
+ "eval_steps_per_second": 3.487,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.32102730870246887,
+ "learning_rate": 0.0006,
+ "loss": 4.457406997680664,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.39387843012809753,
+ "learning_rate": 0.0006,
+ "loss": 4.506930828094482,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.3864305317401886,
+ "learning_rate": 0.0006,
+ "loss": 4.526391506195068,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.35652169585227966,
+ "learning_rate": 0.0006,
+ "loss": 4.549864768981934,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.3577899932861328,
+ "learning_rate": 0.0006,
+ "loss": 4.563225746154785,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.3750080466270447,
+ "learning_rate": 0.0006,
+ "loss": 4.479869842529297,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.3631863594055176,
+ "learning_rate": 0.0006,
+ "loss": 4.593511581420898,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.3972926437854767,
+ "learning_rate": 0.0006,
+ "loss": 4.646780967712402,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.4089537262916565,
+ "learning_rate": 0.0006,
+ "loss": 4.5130414962768555,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.4105352759361267,
+ "learning_rate": 0.0006,
+ "loss": 4.658748149871826,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.41598162055015564,
+ "learning_rate": 0.0006,
+ "loss": 4.577207565307617,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.43176910281181335,
+ "learning_rate": 0.0006,
+ "loss": 4.4943928718566895,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.430026650428772,
+ "learning_rate": 0.0006,
+ "loss": 4.551512718200684,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.42870208621025085,
+ "learning_rate": 0.0006,
+ "loss": 4.5596113204956055,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.4218558073043823,
+ "learning_rate": 0.0006,
+ "loss": 4.586698055267334,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.4171593487262726,
+ "learning_rate": 0.0006,
+ "loss": 4.559016227722168,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.4440712034702301,
+ "learning_rate": 0.0006,
+ "loss": 4.594385147094727,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.4228988289833069,
+ "learning_rate": 0.0006,
+ "loss": 4.641045570373535,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.3969295620918274,
+ "learning_rate": 0.0006,
+ "loss": 4.521888732910156,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.357148677110672,
+ "learning_rate": 0.0006,
+ "loss": 4.502840995788574,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.36044031381607056,
+ "learning_rate": 0.0006,
+ "loss": 4.663239002227783,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.3317543864250183,
+ "learning_rate": 0.0006,
+ "loss": 4.5816850662231445,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.3267202377319336,
+ "learning_rate": 0.0006,
+ "loss": 4.564973831176758,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.3181435465812683,
+ "learning_rate": 0.0006,
+ "loss": 4.651394367218018,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.3380511999130249,
+ "learning_rate": 0.0006,
+ "loss": 4.543530464172363,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.36493808031082153,
+ "learning_rate": 0.0006,
+ "loss": 4.523282051086426,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.3645824193954468,
+ "learning_rate": 0.0006,
+ "loss": 4.5930585861206055,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.35529738664627075,
+ "learning_rate": 0.0006,
+ "loss": 4.550647735595703,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.3327229917049408,
+ "learning_rate": 0.0006,
+ "loss": 4.570511817932129,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.3245350420475006,
+ "learning_rate": 0.0006,
+ "loss": 4.578631401062012,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.32731565833091736,
+ "learning_rate": 0.0006,
+ "loss": 4.608393669128418,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.29512590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.663283348083496,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.3132769763469696,
+ "learning_rate": 0.0006,
+ "loss": 4.64171028137207,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.3168777823448181,
+ "learning_rate": 0.0006,
+ "loss": 4.558446884155273,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.3134557902812958,
+ "learning_rate": 0.0006,
+ "loss": 4.6573286056518555,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.31814318895339966,
+ "learning_rate": 0.0006,
+ "loss": 4.610350608825684,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2999204993247986,
+ "learning_rate": 0.0006,
+ "loss": 4.563376426696777,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.29336023330688477,
+ "learning_rate": 0.0006,
+ "loss": 4.51207160949707,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.3147132098674774,
+ "learning_rate": 0.0006,
+ "loss": 4.662048816680908,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.3229607939720154,
+ "learning_rate": 0.0006,
+ "loss": 4.636219024658203,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.3066021800041199,
+ "learning_rate": 0.0006,
+ "loss": 4.574436187744141,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2965927720069885,
+ "learning_rate": 0.0006,
+ "loss": 4.601144313812256,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.29780101776123047,
+ "learning_rate": 0.0006,
+ "loss": 4.605687141418457,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.3117663264274597,
+ "learning_rate": 0.0006,
+ "loss": 4.680377006530762,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.3062465190887451,
+ "learning_rate": 0.0006,
+ "loss": 4.594343185424805,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.32353663444519043,
+ "learning_rate": 0.0006,
+ "loss": 4.715522289276123,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.34378892183303833,
+ "learning_rate": 0.0006,
+ "loss": 4.626800537109375,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.30320027470588684,
+ "learning_rate": 0.0006,
+ "loss": 4.520609378814697,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.30670270323753357,
+ "learning_rate": 0.0006,
+ "loss": 4.68381404876709,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.35336172580718994,
+ "learning_rate": 0.0006,
+ "loss": 4.648540496826172,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.3606588542461395,
+ "learning_rate": 0.0006,
+ "loss": 4.654687881469727,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.33996105194091797,
+ "learning_rate": 0.0006,
+ "loss": 4.708280086517334,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.3337365984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.664865493774414,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.3375627100467682,
+ "learning_rate": 0.0006,
+ "loss": 4.652868747711182,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.31927725672721863,
+ "learning_rate": 0.0006,
+ "loss": 4.6501569747924805,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2976604998111725,
+ "learning_rate": 0.0006,
+ "loss": 4.693478584289551,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.3106057047843933,
+ "learning_rate": 0.0006,
+ "loss": 4.540729522705078,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.3078087866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.636615753173828,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.3124847412109375,
+ "learning_rate": 0.0006,
+ "loss": 4.623246192932129,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.30632463097572327,
+ "learning_rate": 0.0006,
+ "loss": 4.637829780578613,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.3255152404308319,
+ "learning_rate": 0.0006,
+ "loss": 4.629300594329834,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.30422163009643555,
+ "learning_rate": 0.0006,
+ "loss": 4.634612083435059,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.31780996918678284,
+ "learning_rate": 0.0006,
+ "loss": 4.579062461853027,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.3304215669631958,
+ "learning_rate": 0.0006,
+ "loss": 4.680956840515137,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.3205261528491974,
+ "learning_rate": 0.0006,
+ "loss": 4.65199089050293,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.3105415403842926,
+ "learning_rate": 0.0006,
+ "loss": 4.6085591316223145,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.3085186183452606,
+ "learning_rate": 0.0006,
+ "loss": 4.602412223815918,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2999402582645416,
+ "learning_rate": 0.0006,
+ "loss": 4.6309614181518555,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.30624866485595703,
+ "learning_rate": 0.0006,
+ "loss": 4.678246021270752,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.32402822375297546,
+ "learning_rate": 0.0006,
+ "loss": 4.679222106933594,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.2942747175693512,
+ "learning_rate": 0.0006,
+ "loss": 4.654155731201172,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.36833468079566956,
+ "learning_rate": 0.0006,
+ "loss": 4.795251846313477,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 5.886431694030762,
+ "eval_runtime": 43.867,
+ "eval_samples_per_second": 55.668,
+ "eval_steps_per_second": 3.488,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.3376569449901581,
+ "learning_rate": 0.0006,
+ "loss": 4.6094746589660645,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.3592792749404907,
+ "learning_rate": 0.0006,
+ "loss": 4.630304336547852,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.3840537667274475,
+ "learning_rate": 0.0006,
+ "loss": 4.550912380218506,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.38572922348976135,
+ "learning_rate": 0.0006,
+ "loss": 4.54913330078125,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.41214704513549805,
+ "learning_rate": 0.0006,
+ "loss": 4.555049896240234,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.4243183135986328,
+ "learning_rate": 0.0006,
+ "loss": 4.463906288146973,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.4147425591945648,
+ "learning_rate": 0.0006,
+ "loss": 4.524829387664795,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.4191815257072449,
+ "learning_rate": 0.0006,
+ "loss": 4.511301040649414,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.4252873659133911,
+ "learning_rate": 0.0006,
+ "loss": 4.591635227203369,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.4696715474128723,
+ "learning_rate": 0.0006,
+ "loss": 4.656494617462158,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.4845951795578003,
+ "learning_rate": 0.0006,
+ "loss": 4.597105026245117,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.44407039880752563,
+ "learning_rate": 0.0006,
+ "loss": 4.605146408081055,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.4674045741558075,
+ "learning_rate": 0.0006,
+ "loss": 4.627414703369141,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.5350247025489807,
+ "learning_rate": 0.0006,
+ "loss": 4.641389846801758,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.606761634349823,
+ "learning_rate": 0.0006,
+ "loss": 4.521183967590332,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.6890456676483154,
+ "learning_rate": 0.0006,
+ "loss": 4.619729995727539,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.6656216979026794,
+ "learning_rate": 0.0006,
+ "loss": 4.6333327293396,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.6118401288986206,
+ "learning_rate": 0.0006,
+ "loss": 4.563023567199707,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.5065389275550842,
+ "learning_rate": 0.0006,
+ "loss": 4.484504699707031,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.47526147961616516,
+ "learning_rate": 0.0006,
+ "loss": 4.636885643005371,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.42722639441490173,
+ "learning_rate": 0.0006,
+ "loss": 4.585813522338867,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.4239213764667511,
+ "learning_rate": 0.0006,
+ "loss": 4.595027923583984,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.4273803234100342,
+ "learning_rate": 0.0006,
+ "loss": 4.6219706535339355,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.4111633002758026,
+ "learning_rate": 0.0006,
+ "loss": 4.678728103637695,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.39168617129325867,
+ "learning_rate": 0.0006,
+ "loss": 4.550854206085205,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.36980611085891724,
+ "learning_rate": 0.0006,
+ "loss": 4.616621017456055,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.3815658390522003,
+ "learning_rate": 0.0006,
+ "loss": 4.5428466796875,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.3536824584007263,
+ "learning_rate": 0.0006,
+ "loss": 4.5681962966918945,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.34382128715515137,
+ "learning_rate": 0.0006,
+ "loss": 4.631519794464111,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.32117727398872375,
+ "learning_rate": 0.0006,
+ "loss": 4.604540824890137,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.32249173521995544,
+ "learning_rate": 0.0006,
+ "loss": 4.649823188781738,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.331824392080307,
+ "learning_rate": 0.0006,
+ "loss": 4.626202583312988,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.32455575466156006,
+ "learning_rate": 0.0006,
+ "loss": 4.547911643981934,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.3289431929588318,
+ "learning_rate": 0.0006,
+ "loss": 4.593040466308594,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.3175783157348633,
+ "learning_rate": 0.0006,
+ "loss": 4.590227127075195,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.297781378030777,
+ "learning_rate": 0.0006,
+ "loss": 4.6700592041015625,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.282754510641098,
+ "learning_rate": 0.0006,
+ "loss": 4.563431262969971,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.28991788625717163,
+ "learning_rate": 0.0006,
+ "loss": 4.536984443664551,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.3046407401561737,
+ "learning_rate": 0.0006,
+ "loss": 4.531240463256836,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.29472219944000244,
+ "learning_rate": 0.0006,
+ "loss": 4.606196880340576,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.2958214282989502,
+ "learning_rate": 0.0006,
+ "loss": 4.526688575744629,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.3081410527229309,
+ "learning_rate": 0.0006,
+ "loss": 4.556827545166016,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.3253263235092163,
+ "learning_rate": 0.0006,
+ "loss": 4.601934432983398,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.3100697696208954,
+ "learning_rate": 0.0006,
+ "loss": 4.522622108459473,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.3102514445781708,
+ "learning_rate": 0.0006,
+ "loss": 4.582643508911133,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.30673104524612427,
+ "learning_rate": 0.0006,
+ "loss": 4.56881046295166,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.29342278838157654,
+ "learning_rate": 0.0006,
+ "loss": 4.582093715667725,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.3061942756175995,
+ "learning_rate": 0.0006,
+ "loss": 4.589405059814453,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.30959129333496094,
+ "learning_rate": 0.0006,
+ "loss": 4.61238956451416,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.30698487162590027,
+ "learning_rate": 0.0006,
+ "loss": 4.511289596557617,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.30603861808776855,
+ "learning_rate": 0.0006,
+ "loss": 4.625768661499023,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.29787641763687134,
+ "learning_rate": 0.0006,
+ "loss": 4.605008602142334,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2968330979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.561714172363281,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.2998676896095276,
+ "learning_rate": 0.0006,
+ "loss": 4.5866827964782715,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.29199257493019104,
+ "learning_rate": 0.0006,
+ "loss": 4.5962419509887695,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.3108719289302826,
+ "learning_rate": 0.0006,
+ "loss": 4.68196964263916,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.3366844356060028,
+ "learning_rate": 0.0006,
+ "loss": 4.693520545959473,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.3476267457008362,
+ "learning_rate": 0.0006,
+ "loss": 4.5637640953063965,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.34931135177612305,
+ "learning_rate": 0.0006,
+ "loss": 4.662431716918945,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.3245127499103546,
+ "learning_rate": 0.0006,
+ "loss": 4.693554878234863,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.3357960283756256,
+ "learning_rate": 0.0006,
+ "loss": 4.659487724304199,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.3154599070549011,
+ "learning_rate": 0.0006,
+ "loss": 4.593360900878906,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.311570942401886,
+ "learning_rate": 0.0006,
+ "loss": 4.650023460388184,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.31317299604415894,
+ "learning_rate": 0.0006,
+ "loss": 4.682003974914551,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.30232807993888855,
+ "learning_rate": 0.0006,
+ "loss": 4.654928207397461,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.30775555968284607,
+ "learning_rate": 0.0006,
+ "loss": 4.639370918273926,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.3335270583629608,
+ "learning_rate": 0.0006,
+ "loss": 4.540642738342285,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.3211326599121094,
+ "learning_rate": 0.0006,
+ "loss": 4.683065414428711,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.30830326676368713,
+ "learning_rate": 0.0006,
+ "loss": 4.6209187507629395,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.2977248728275299,
+ "learning_rate": 0.0006,
+ "loss": 4.675840377807617,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.294127881526947,
+ "learning_rate": 0.0006,
+ "loss": 4.577336311340332,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.3500884175300598,
+ "learning_rate": 0.0006,
+ "loss": 4.528505325317383,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 5.892303943634033,
+ "eval_runtime": 43.8195,
+ "eval_samples_per_second": 55.729,
+ "eval_steps_per_second": 3.492,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.33019131422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.513679504394531,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.36071768403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.484938621520996,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.34504544734954834,
+ "learning_rate": 0.0006,
+ "loss": 4.4595842361450195,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.3680383265018463,
+ "learning_rate": 0.0006,
+ "loss": 4.56520414352417,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.3767615258693695,
+ "learning_rate": 0.0006,
+ "loss": 4.513002395629883,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.40072882175445557,
+ "learning_rate": 0.0006,
+ "loss": 4.540881156921387,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.446611225605011,
+ "learning_rate": 0.0006,
+ "loss": 4.5999436378479,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.4845006465911865,
+ "learning_rate": 0.0006,
+ "loss": 4.494001865386963,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.5153332948684692,
+ "learning_rate": 0.0006,
+ "loss": 4.6019368171691895,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.5493197441101074,
+ "learning_rate": 0.0006,
+ "loss": 4.572149753570557,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.5705410838127136,
+ "learning_rate": 0.0006,
+ "loss": 4.589056968688965,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.576174259185791,
+ "learning_rate": 0.0006,
+ "loss": 4.661981582641602,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.5805312395095825,
+ "learning_rate": 0.0006,
+ "loss": 4.702099323272705,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.5577443242073059,
+ "learning_rate": 0.0006,
+ "loss": 4.482302665710449,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.5420400500297546,
+ "learning_rate": 0.0006,
+ "loss": 4.417548179626465,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.5095881819725037,
+ "learning_rate": 0.0006,
+ "loss": 4.583544731140137,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.498400688171387,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.41838279366493225,
+ "learning_rate": 0.0006,
+ "loss": 4.4605913162231445,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.40764474868774414,
+ "learning_rate": 0.0006,
+ "loss": 4.512393951416016,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.3524777591228485,
+ "learning_rate": 0.0006,
+ "loss": 4.6541032791137695,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.36958813667297363,
+ "learning_rate": 0.0006,
+ "loss": 4.594754219055176,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.3677785396575928,
+ "learning_rate": 0.0006,
+ "loss": 4.549311637878418,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.35815468430519104,
+ "learning_rate": 0.0006,
+ "loss": 4.600742340087891,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.3582145869731903,
+ "learning_rate": 0.0006,
+ "loss": 4.514508247375488,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.3503866195678711,
+ "learning_rate": 0.0006,
+ "loss": 4.565039157867432,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.33369141817092896,
+ "learning_rate": 0.0006,
+ "loss": 4.587607383728027,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.32815736532211304,
+ "learning_rate": 0.0006,
+ "loss": 4.605862140655518,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.31899523735046387,
+ "learning_rate": 0.0006,
+ "loss": 4.526045799255371,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.3208279013633728,
+ "learning_rate": 0.0006,
+ "loss": 4.525120735168457,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.32558873295783997,
+ "learning_rate": 0.0006,
+ "loss": 4.601841449737549,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.3286755681037903,
+ "learning_rate": 0.0006,
+ "loss": 4.47813606262207,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.330078661441803,
+ "learning_rate": 0.0006,
+ "loss": 4.544262886047363,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.3432838022708893,
+ "learning_rate": 0.0006,
+ "loss": 4.538338661193848,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.3279143273830414,
+ "learning_rate": 0.0006,
+ "loss": 4.598983287811279,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.3298380970954895,
+ "learning_rate": 0.0006,
+ "loss": 4.552884101867676,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.3217845559120178,
+ "learning_rate": 0.0006,
+ "loss": 4.588374137878418,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.3207054138183594,
+ "learning_rate": 0.0006,
+ "loss": 4.635287284851074,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.3211343288421631,
+ "learning_rate": 0.0006,
+ "loss": 4.605551719665527,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.3277553617954254,
+ "learning_rate": 0.0006,
+ "loss": 4.626095294952393,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.34028419852256775,
+ "learning_rate": 0.0006,
+ "loss": 4.556615352630615,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.35052692890167236,
+ "learning_rate": 0.0006,
+ "loss": 4.59889554977417,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.3746832609176636,
+ "learning_rate": 0.0006,
+ "loss": 4.480782508850098,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.3583945333957672,
+ "learning_rate": 0.0006,
+ "loss": 4.6078901290893555,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.30831098556518555,
+ "learning_rate": 0.0006,
+ "loss": 4.621992588043213,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.31699854135513306,
+ "learning_rate": 0.0006,
+ "loss": 4.669753074645996,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.3164736032485962,
+ "learning_rate": 0.0006,
+ "loss": 4.613119125366211,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.3161431550979614,
+ "learning_rate": 0.0006,
+ "loss": 4.661081314086914,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.3142808675765991,
+ "learning_rate": 0.0006,
+ "loss": 4.561810493469238,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.30670422315597534,
+ "learning_rate": 0.0006,
+ "loss": 4.575798034667969,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.3171522617340088,
+ "learning_rate": 0.0006,
+ "loss": 4.562540054321289,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.350437194108963,
+ "learning_rate": 0.0006,
+ "loss": 4.717964172363281,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.36181727051734924,
+ "learning_rate": 0.0006,
+ "loss": 4.659002304077148,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.35525432229042053,
+ "learning_rate": 0.0006,
+ "loss": 4.628274917602539,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.3382070064544678,
+ "learning_rate": 0.0006,
+ "loss": 4.611370086669922,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.3276289105415344,
+ "learning_rate": 0.0006,
+ "loss": 4.597448348999023,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.34109410643577576,
+ "learning_rate": 0.0006,
+ "loss": 4.5684814453125,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.35028424859046936,
+ "learning_rate": 0.0006,
+ "loss": 4.544200897216797,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.3053065240383148,
+ "learning_rate": 0.0006,
+ "loss": 4.59857177734375,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.31014037132263184,
+ "learning_rate": 0.0006,
+ "loss": 4.581692695617676,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.3025926649570465,
+ "learning_rate": 0.0006,
+ "loss": 4.551709175109863,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.30033165216445923,
+ "learning_rate": 0.0006,
+ "loss": 4.547224044799805,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.3172484338283539,
+ "learning_rate": 0.0006,
+ "loss": 4.574090003967285,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.32177501916885376,
+ "learning_rate": 0.0006,
+ "loss": 4.554319858551025,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.3300149142742157,
+ "learning_rate": 0.0006,
+ "loss": 4.643762588500977,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.32050228118896484,
+ "learning_rate": 0.0006,
+ "loss": 4.550314426422119,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.319394588470459,
+ "learning_rate": 0.0006,
+ "loss": 4.528041362762451,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.3083689510822296,
+ "learning_rate": 0.0006,
+ "loss": 4.668293476104736,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.30804482102394104,
+ "learning_rate": 0.0006,
+ "loss": 4.68104362487793,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.3053956627845764,
+ "learning_rate": 0.0006,
+ "loss": 4.672427177429199,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.3127900958061218,
+ "learning_rate": 0.0006,
+ "loss": 4.568291664123535,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.31271785497665405,
+ "learning_rate": 0.0006,
+ "loss": 4.734033584594727,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.36578524112701416,
+ "learning_rate": 0.0006,
+ "loss": 4.558261871337891,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 5.9188385009765625,
+ "eval_runtime": 44.0514,
+ "eval_samples_per_second": 55.435,
+ "eval_steps_per_second": 3.473,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.33002927899360657,
+ "learning_rate": 0.0006,
+ "loss": 4.5871686935424805,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.32921522855758667,
+ "learning_rate": 0.0006,
+ "loss": 4.531431198120117,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.3747806251049042,
+ "learning_rate": 0.0006,
+ "loss": 4.490285873413086,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36267364025115967,
+ "learning_rate": 0.0006,
+ "loss": 4.4976911544799805,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34602707624435425,
+ "learning_rate": 0.0006,
+ "loss": 4.557377815246582,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.3616466820240021,
+ "learning_rate": 0.0006,
+ "loss": 4.539243698120117,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.3702273964881897,
+ "learning_rate": 0.0006,
+ "loss": 4.37601375579834,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.37946656346321106,
+ "learning_rate": 0.0006,
+ "loss": 4.460537910461426,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.3818318843841553,
+ "learning_rate": 0.0006,
+ "loss": 4.5159196853637695,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.3858160674571991,
+ "learning_rate": 0.0006,
+ "loss": 4.571900367736816,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.42214736342430115,
+ "learning_rate": 0.0006,
+ "loss": 4.53379487991333,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.5026627779006958,
+ "learning_rate": 0.0006,
+ "loss": 4.445950508117676,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.6258031129837036,
+ "learning_rate": 0.0006,
+ "loss": 4.604684352874756,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.6795846819877625,
+ "learning_rate": 0.0006,
+ "loss": 4.475664138793945,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.6471732258796692,
+ "learning_rate": 0.0006,
+ "loss": 4.521690368652344,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.5764392614364624,
+ "learning_rate": 0.0006,
+ "loss": 4.520954608917236,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.552795946598053,
+ "learning_rate": 0.0006,
+ "loss": 4.5995588302612305,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.5335995554924011,
+ "learning_rate": 0.0006,
+ "loss": 4.581478118896484,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.5432473421096802,
+ "learning_rate": 0.0006,
+ "loss": 4.523379325866699,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.4626986086368561,
+ "learning_rate": 0.0006,
+ "loss": 4.560667991638184,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.4500770568847656,
+ "learning_rate": 0.0006,
+ "loss": 4.554061412811279,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.4454690217971802,
+ "learning_rate": 0.0006,
+ "loss": 4.567316055297852,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.39475712180137634,
+ "learning_rate": 0.0006,
+ "loss": 4.588076591491699,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.4055384695529938,
+ "learning_rate": 0.0006,
+ "loss": 4.547847747802734,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.4259888231754303,
+ "learning_rate": 0.0006,
+ "loss": 4.547989845275879,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.4277566969394684,
+ "learning_rate": 0.0006,
+ "loss": 4.5540995597839355,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.41771867871284485,
+ "learning_rate": 0.0006,
+ "loss": 4.536477088928223,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.412720650434494,
+ "learning_rate": 0.0006,
+ "loss": 4.466492652893066,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.37882891297340393,
+ "learning_rate": 0.0006,
+ "loss": 4.57110595703125,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.375965416431427,
+ "learning_rate": 0.0006,
+ "loss": 4.569025993347168,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.33902931213378906,
+ "learning_rate": 0.0006,
+ "loss": 4.447360038757324,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.3279638886451721,
+ "learning_rate": 0.0006,
+ "loss": 4.560067176818848,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.3559800386428833,
+ "learning_rate": 0.0006,
+ "loss": 4.639873027801514,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.36084872484207153,
+ "learning_rate": 0.0006,
+ "loss": 4.621465682983398,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.34137511253356934,
+ "learning_rate": 0.0006,
+ "loss": 4.528037071228027,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.3422703742980957,
+ "learning_rate": 0.0006,
+ "loss": 4.55165958404541,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.33887577056884766,
+ "learning_rate": 0.0006,
+ "loss": 4.639105796813965,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.31939300894737244,
+ "learning_rate": 0.0006,
+ "loss": 4.644297122955322,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.3148325979709625,
+ "learning_rate": 0.0006,
+ "loss": 4.614221572875977,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.3455789387226105,
+ "learning_rate": 0.0006,
+ "loss": 4.6255035400390625,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.3397600054740906,
+ "learning_rate": 0.0006,
+ "loss": 4.701758861541748,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.33400818705558777,
+ "learning_rate": 0.0006,
+ "loss": 4.571649074554443,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.32182157039642334,
+ "learning_rate": 0.0006,
+ "loss": 4.5737810134887695,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.31531867384910583,
+ "learning_rate": 0.0006,
+ "loss": 4.587385177612305,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.3044603168964386,
+ "learning_rate": 0.0006,
+ "loss": 4.489718437194824,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.3237261176109314,
+ "learning_rate": 0.0006,
+ "loss": 4.596663475036621,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.30939826369285583,
+ "learning_rate": 0.0006,
+ "loss": 4.559459686279297,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.32282719016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.576562881469727,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.3068181574344635,
+ "learning_rate": 0.0006,
+ "loss": 4.603209495544434,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2987551689147949,
+ "learning_rate": 0.0006,
+ "loss": 4.5719499588012695,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.3008659780025482,
+ "learning_rate": 0.0006,
+ "loss": 4.5602922439575195,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.32033389806747437,
+ "learning_rate": 0.0006,
+ "loss": 4.723326206207275,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.3149871230125427,
+ "learning_rate": 0.0006,
+ "loss": 4.554045677185059,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.31442156434059143,
+ "learning_rate": 0.0006,
+ "loss": 4.581071376800537,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.31102538108825684,
+ "learning_rate": 0.0006,
+ "loss": 4.523441791534424,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.31202250719070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5789384841918945,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.34600257873535156,
+ "learning_rate": 0.0006,
+ "loss": 4.670037269592285,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.3392440378665924,
+ "learning_rate": 0.0006,
+ "loss": 4.572972297668457,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.3229328989982605,
+ "learning_rate": 0.0006,
+ "loss": 4.6565656661987305,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.3255664110183716,
+ "learning_rate": 0.0006,
+ "loss": 4.620250701904297,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.3135516941547394,
+ "learning_rate": 0.0006,
+ "loss": 4.531771659851074,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.30425694584846497,
+ "learning_rate": 0.0006,
+ "loss": 4.608514308929443,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.3157452642917633,
+ "learning_rate": 0.0006,
+ "loss": 4.582360744476318,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.3245789408683777,
+ "learning_rate": 0.0006,
+ "loss": 4.609184265136719,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.3449656367301941,
+ "learning_rate": 0.0006,
+ "loss": 4.668090343475342,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.3316064178943634,
+ "learning_rate": 0.0006,
+ "loss": 4.642134666442871,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.3244764506816864,
+ "learning_rate": 0.0006,
+ "loss": 4.542974472045898,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.3212032616138458,
+ "learning_rate": 0.0006,
+ "loss": 4.541913032531738,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.3285416066646576,
+ "learning_rate": 0.0006,
+ "loss": 4.560277462005615,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.3257826566696167,
+ "learning_rate": 0.0006,
+ "loss": 4.637314796447754,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.32054489850997925,
+ "learning_rate": 0.0006,
+ "loss": 4.61334228515625,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.3789019286632538,
+ "learning_rate": 0.0006,
+ "loss": 4.513072490692139,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 5.909783363342285,
+ "eval_runtime": 43.9351,
+ "eval_samples_per_second": 55.582,
+ "eval_steps_per_second": 3.482,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.3529459834098816,
+ "learning_rate": 0.0006,
+ "loss": 4.519864082336426,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.3979780077934265,
+ "learning_rate": 0.0006,
+ "loss": 4.4511518478393555,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.4230579733848572,
+ "learning_rate": 0.0006,
+ "loss": 4.541569709777832,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.4103752374649048,
+ "learning_rate": 0.0006,
+ "loss": 4.488608360290527,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.40233784914016724,
+ "learning_rate": 0.0006,
+ "loss": 4.3520588874816895,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.3748597502708435,
+ "learning_rate": 0.0006,
+ "loss": 4.48486328125,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.4103555977344513,
+ "learning_rate": 0.0006,
+ "loss": 4.466499328613281,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.4468052387237549,
+ "learning_rate": 0.0006,
+ "loss": 4.503893852233887,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.48190978169441223,
+ "learning_rate": 0.0006,
+ "loss": 4.559674263000488,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.573493242263794,
+ "learning_rate": 0.0006,
+ "loss": 4.572394371032715,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.6748782992362976,
+ "learning_rate": 0.0006,
+ "loss": 4.614492416381836,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.7471238374710083,
+ "learning_rate": 0.0006,
+ "loss": 4.533415794372559,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.7194453477859497,
+ "learning_rate": 0.0006,
+ "loss": 4.473564624786377,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.6134870648384094,
+ "learning_rate": 0.0006,
+ "loss": 4.523277282714844,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.570927083492279,
+ "learning_rate": 0.0006,
+ "loss": 4.5340576171875,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.5462989807128906,
+ "learning_rate": 0.0006,
+ "loss": 4.530706405639648,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.5689421892166138,
+ "learning_rate": 0.0006,
+ "loss": 4.490954399108887,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.5356795191764832,
+ "learning_rate": 0.0006,
+ "loss": 4.505555152893066,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.46027812361717224,
+ "learning_rate": 0.0006,
+ "loss": 4.521742820739746,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.4745306968688965,
+ "learning_rate": 0.0006,
+ "loss": 4.584755897521973,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.444094181060791,
+ "learning_rate": 0.0006,
+ "loss": 4.496428489685059,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.41268613934516907,
+ "learning_rate": 0.0006,
+ "loss": 4.534925937652588,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.40305039286613464,
+ "learning_rate": 0.0006,
+ "loss": 4.498741149902344,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.39113733172416687,
+ "learning_rate": 0.0006,
+ "loss": 4.582345962524414,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.39830338954925537,
+ "learning_rate": 0.0006,
+ "loss": 4.520973205566406,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.3705126941204071,
+ "learning_rate": 0.0006,
+ "loss": 4.427711009979248,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.35840073227882385,
+ "learning_rate": 0.0006,
+ "loss": 4.544076442718506,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.3639092743396759,
+ "learning_rate": 0.0006,
+ "loss": 4.563519477844238,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.3520289659500122,
+ "learning_rate": 0.0006,
+ "loss": 4.663110733032227,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.3510296046733856,
+ "learning_rate": 0.0006,
+ "loss": 4.494248390197754,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.3590335547924042,
+ "learning_rate": 0.0006,
+ "loss": 4.597167015075684,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.3378481864929199,
+ "learning_rate": 0.0006,
+ "loss": 4.5078229904174805,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.35119035840034485,
+ "learning_rate": 0.0006,
+ "loss": 4.5733747482299805,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.3673848807811737,
+ "learning_rate": 0.0006,
+ "loss": 4.597458839416504,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.33177614212036133,
+ "learning_rate": 0.0006,
+ "loss": 4.601250171661377,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.3331873416900635,
+ "learning_rate": 0.0006,
+ "loss": 4.545356750488281,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.3332937955856323,
+ "learning_rate": 0.0006,
+ "loss": 4.456274509429932,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.3251349627971649,
+ "learning_rate": 0.0006,
+ "loss": 4.517425060272217,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.3327963352203369,
+ "learning_rate": 0.0006,
+ "loss": 4.52081823348999,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.31864047050476074,
+ "learning_rate": 0.0006,
+ "loss": 4.519357681274414,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.31193622946739197,
+ "learning_rate": 0.0006,
+ "loss": 4.512324333190918,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.3193425238132477,
+ "learning_rate": 0.0006,
+ "loss": 4.585651397705078,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.31671032309532166,
+ "learning_rate": 0.0006,
+ "loss": 4.6503376960754395,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.3341715633869171,
+ "learning_rate": 0.0006,
+ "loss": 4.55990743637085,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.3293953537940979,
+ "learning_rate": 0.0006,
+ "loss": 4.553444862365723,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.3132967948913574,
+ "learning_rate": 0.0006,
+ "loss": 4.528668403625488,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.331242173910141,
+ "learning_rate": 0.0006,
+ "loss": 4.577775955200195,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.33898937702178955,
+ "learning_rate": 0.0006,
+ "loss": 4.610414505004883,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.3565775156021118,
+ "learning_rate": 0.0006,
+ "loss": 4.645212173461914,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.36182543635368347,
+ "learning_rate": 0.0006,
+ "loss": 4.650064468383789,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.34398582577705383,
+ "learning_rate": 0.0006,
+ "loss": 4.58017635345459,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.3258742690086365,
+ "learning_rate": 0.0006,
+ "loss": 4.49262809753418,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.33188319206237793,
+ "learning_rate": 0.0006,
+ "loss": 4.568549633026123,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.31920915842056274,
+ "learning_rate": 0.0006,
+ "loss": 4.642508506774902,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.3228767514228821,
+ "learning_rate": 0.0006,
+ "loss": 4.546639442443848,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.3390587866306305,
+ "learning_rate": 0.0006,
+ "loss": 4.6085309982299805,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.33813244104385376,
+ "learning_rate": 0.0006,
+ "loss": 4.570669174194336,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.3336787223815918,
+ "learning_rate": 0.0006,
+ "loss": 4.570155143737793,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.3316628336906433,
+ "learning_rate": 0.0006,
+ "loss": 4.508556365966797,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.3254280090332031,
+ "learning_rate": 0.0006,
+ "loss": 4.540132522583008,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.32846084237098694,
+ "learning_rate": 0.0006,
+ "loss": 4.570301532745361,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.34197020530700684,
+ "learning_rate": 0.0006,
+ "loss": 4.565659999847412,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.34584248065948486,
+ "learning_rate": 0.0006,
+ "loss": 4.646714210510254,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.3285089135169983,
+ "learning_rate": 0.0006,
+ "loss": 4.522369861602783,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.3440167307853699,
+ "learning_rate": 0.0006,
+ "loss": 4.4935302734375,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.3309609293937683,
+ "learning_rate": 0.0006,
+ "loss": 4.565093040466309,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.33793050050735474,
+ "learning_rate": 0.0006,
+ "loss": 4.642390251159668,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.3244447708129883,
+ "learning_rate": 0.0006,
+ "loss": 4.485556602478027,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.31058987975120544,
+ "learning_rate": 0.0006,
+ "loss": 4.517026424407959,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.32864809036254883,
+ "learning_rate": 0.0006,
+ "loss": 4.567702293395996,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.32634779810905457,
+ "learning_rate": 0.0006,
+ "loss": 4.623037815093994,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.3524244427680969,
+ "learning_rate": 0.0006,
+ "loss": 4.478612899780273,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 5.941532135009766,
+ "eval_runtime": 43.7296,
+ "eval_samples_per_second": 55.843,
+ "eval_steps_per_second": 3.499,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.32990139722824097,
+ "learning_rate": 0.0006,
+ "loss": 4.456730365753174,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.3594086468219757,
+ "learning_rate": 0.0006,
+ "loss": 4.490044593811035,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.3931017816066742,
+ "learning_rate": 0.0006,
+ "loss": 4.616276264190674,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.4035770893096924,
+ "learning_rate": 0.0006,
+ "loss": 4.486318588256836,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.41765478253364563,
+ "learning_rate": 0.0006,
+ "loss": 4.532828330993652,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.46074530482292175,
+ "learning_rate": 0.0006,
+ "loss": 4.440274238586426,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.5449804067611694,
+ "learning_rate": 0.0006,
+ "loss": 4.476844787597656,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.60612553358078,
+ "learning_rate": 0.0006,
+ "loss": 4.545952796936035,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.6130566596984863,
+ "learning_rate": 0.0006,
+ "loss": 4.560299396514893,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.6504288911819458,
+ "learning_rate": 0.0006,
+ "loss": 4.4344282150268555,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.6151083707809448,
+ "learning_rate": 0.0006,
+ "loss": 4.4910478591918945,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.5050859451293945,
+ "learning_rate": 0.0006,
+ "loss": 4.520050048828125,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.5110967755317688,
+ "learning_rate": 0.0006,
+ "loss": 4.595564842224121,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.5126118659973145,
+ "learning_rate": 0.0006,
+ "loss": 4.531866073608398,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.5418575406074524,
+ "learning_rate": 0.0006,
+ "loss": 4.596108436584473,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.5088527798652649,
+ "learning_rate": 0.0006,
+ "loss": 4.478536128997803,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.4763719141483307,
+ "learning_rate": 0.0006,
+ "loss": 4.524604797363281,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.4463818073272705,
+ "learning_rate": 0.0006,
+ "loss": 4.57131290435791,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.4172837436199188,
+ "learning_rate": 0.0006,
+ "loss": 4.424685478210449,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.40977197885513306,
+ "learning_rate": 0.0006,
+ "loss": 4.493807792663574,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.3930491805076599,
+ "learning_rate": 0.0006,
+ "loss": 4.594828128814697,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.3969508409500122,
+ "learning_rate": 0.0006,
+ "loss": 4.545233249664307,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.3693484663963318,
+ "learning_rate": 0.0006,
+ "loss": 4.513204097747803,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.38123440742492676,
+ "learning_rate": 0.0006,
+ "loss": 4.547538757324219,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.36660829186439514,
+ "learning_rate": 0.0006,
+ "loss": 4.515231609344482,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.3788309395313263,
+ "learning_rate": 0.0006,
+ "loss": 4.489774703979492,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.3813137114048004,
+ "learning_rate": 0.0006,
+ "loss": 4.478123188018799,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.36875471472740173,
+ "learning_rate": 0.0006,
+ "loss": 4.594342231750488,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.3791654109954834,
+ "learning_rate": 0.0006,
+ "loss": 4.468699932098389,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.3763084411621094,
+ "learning_rate": 0.0006,
+ "loss": 4.616625785827637,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.3587021827697754,
+ "learning_rate": 0.0006,
+ "loss": 4.539617538452148,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.34851619601249695,
+ "learning_rate": 0.0006,
+ "loss": 4.480391502380371,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.37807559967041016,
+ "learning_rate": 0.0006,
+ "loss": 4.511460781097412,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.36360645294189453,
+ "learning_rate": 0.0006,
+ "loss": 4.481889247894287,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.3337446451187134,
+ "learning_rate": 0.0006,
+ "loss": 4.508285999298096,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.3353908360004425,
+ "learning_rate": 0.0006,
+ "loss": 4.447798728942871,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.34003564715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.529563903808594,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.34275174140930176,
+ "learning_rate": 0.0006,
+ "loss": 4.570059776306152,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.3506580889225006,
+ "learning_rate": 0.0006,
+ "loss": 4.560369968414307,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.33923977613449097,
+ "learning_rate": 0.0006,
+ "loss": 4.519384384155273,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.3413059413433075,
+ "learning_rate": 0.0006,
+ "loss": 4.570132255554199,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.3206268548965454,
+ "learning_rate": 0.0006,
+ "loss": 4.460726261138916,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.3217783272266388,
+ "learning_rate": 0.0006,
+ "loss": 4.480734825134277,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.33246132731437683,
+ "learning_rate": 0.0006,
+ "loss": 4.497376441955566,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.32414498925209045,
+ "learning_rate": 0.0006,
+ "loss": 4.46730375289917,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.3355283737182617,
+ "learning_rate": 0.0006,
+ "loss": 4.564468860626221,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.32480335235595703,
+ "learning_rate": 0.0006,
+ "loss": 4.423971176147461,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.32865017652511597,
+ "learning_rate": 0.0006,
+ "loss": 4.585268497467041,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.33544862270355225,
+ "learning_rate": 0.0006,
+ "loss": 4.570686340332031,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.3386329710483551,
+ "learning_rate": 0.0006,
+ "loss": 4.645244598388672,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.3309078812599182,
+ "learning_rate": 0.0006,
+ "loss": 4.550087928771973,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.3386440873146057,
+ "learning_rate": 0.0006,
+ "loss": 4.642998695373535,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.3356795012950897,
+ "learning_rate": 0.0006,
+ "loss": 4.562416076660156,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.3209732174873352,
+ "learning_rate": 0.0006,
+ "loss": 4.545802593231201,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.3287436366081238,
+ "learning_rate": 0.0006,
+ "loss": 4.538415431976318,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.3287898898124695,
+ "learning_rate": 0.0006,
+ "loss": 4.646333694458008,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.33000847697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.521495819091797,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.3361126780509949,
+ "learning_rate": 0.0006,
+ "loss": 4.5255889892578125,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.3464498221874237,
+ "learning_rate": 0.0006,
+ "loss": 4.6289215087890625,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.3255040943622589,
+ "learning_rate": 0.0006,
+ "loss": 4.587310791015625,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.31582584977149963,
+ "learning_rate": 0.0006,
+ "loss": 4.533671855926514,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.3107019364833832,
+ "learning_rate": 0.0006,
+ "loss": 4.553849220275879,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.3431045413017273,
+ "learning_rate": 0.0006,
+ "loss": 4.63334846496582,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.3482385575771332,
+ "learning_rate": 0.0006,
+ "loss": 4.5784592628479,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.3176349103450775,
+ "learning_rate": 0.0006,
+ "loss": 4.536602973937988,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.3355482518672943,
+ "learning_rate": 0.0006,
+ "loss": 4.540004253387451,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.3434502184391022,
+ "learning_rate": 0.0006,
+ "loss": 4.603529930114746,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.3283020257949829,
+ "learning_rate": 0.0006,
+ "loss": 4.628040313720703,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.3211916387081146,
+ "learning_rate": 0.0006,
+ "loss": 4.540966033935547,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.32085084915161133,
+ "learning_rate": 0.0006,
+ "loss": 4.574923992156982,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.3256046175956726,
+ "learning_rate": 0.0006,
+ "loss": 4.5741963386535645,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.374008446931839,
+ "learning_rate": 0.0006,
+ "loss": 4.556973457336426,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 5.969478607177734,
+ "eval_runtime": 43.8997,
+ "eval_samples_per_second": 55.627,
+ "eval_steps_per_second": 3.485,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.3660697937011719,
+ "learning_rate": 0.0006,
+ "loss": 4.526994705200195,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.40237879753112793,
+ "learning_rate": 0.0006,
+ "loss": 4.519327640533447,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.37493664026260376,
+ "learning_rate": 0.0006,
+ "loss": 4.353384017944336,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.35467877984046936,
+ "learning_rate": 0.0006,
+ "loss": 4.44672966003418,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.3864268660545349,
+ "learning_rate": 0.0006,
+ "loss": 4.488339900970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.3900777995586395,
+ "learning_rate": 0.0006,
+ "loss": 4.3989763259887695,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.40269407629966736,
+ "learning_rate": 0.0006,
+ "loss": 4.409543037414551,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.38848167657852173,
+ "learning_rate": 0.0006,
+ "loss": 4.4971513748168945,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.4221501648426056,
+ "learning_rate": 0.0006,
+ "loss": 4.418233871459961,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.48378536105155945,
+ "learning_rate": 0.0006,
+ "loss": 4.442915916442871,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.5030325651168823,
+ "learning_rate": 0.0006,
+ "loss": 4.495261192321777,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.46620380878448486,
+ "learning_rate": 0.0006,
+ "loss": 4.443329811096191,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.435846745967865,
+ "learning_rate": 0.0006,
+ "loss": 4.4132843017578125,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.4145846664905548,
+ "learning_rate": 0.0006,
+ "loss": 4.524697303771973,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.4116297960281372,
+ "learning_rate": 0.0006,
+ "loss": 4.417523384094238,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.4228637218475342,
+ "learning_rate": 0.0006,
+ "loss": 4.515313148498535,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.42848020792007446,
+ "learning_rate": 0.0006,
+ "loss": 4.567151069641113,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.42159804701805115,
+ "learning_rate": 0.0006,
+ "loss": 4.442926406860352,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.4330490231513977,
+ "learning_rate": 0.0006,
+ "loss": 4.555915832519531,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.41472724080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.494548320770264,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.394792765378952,
+ "learning_rate": 0.0006,
+ "loss": 4.469666481018066,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.3902173340320587,
+ "learning_rate": 0.0006,
+ "loss": 4.583088397979736,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.3649148941040039,
+ "learning_rate": 0.0006,
+ "loss": 4.589382648468018,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.37050527334213257,
+ "learning_rate": 0.0006,
+ "loss": 4.485354423522949,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.3601132333278656,
+ "learning_rate": 0.0006,
+ "loss": 4.509812355041504,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.361530065536499,
+ "learning_rate": 0.0006,
+ "loss": 4.532493591308594,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.35860979557037354,
+ "learning_rate": 0.0006,
+ "loss": 4.445265293121338,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.34788063168525696,
+ "learning_rate": 0.0006,
+ "loss": 4.535902976989746,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.33711206912994385,
+ "learning_rate": 0.0006,
+ "loss": 4.611602783203125,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.3538261950016022,
+ "learning_rate": 0.0006,
+ "loss": 4.614827632904053,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.3684042990207672,
+ "learning_rate": 0.0006,
+ "loss": 4.527917861938477,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.37184828519821167,
+ "learning_rate": 0.0006,
+ "loss": 4.421222686767578,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.351406067609787,
+ "learning_rate": 0.0006,
+ "loss": 4.429673194885254,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.3445351719856262,
+ "learning_rate": 0.0006,
+ "loss": 4.424338340759277,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.35715988278388977,
+ "learning_rate": 0.0006,
+ "loss": 4.511861801147461,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.39163023233413696,
+ "learning_rate": 0.0006,
+ "loss": 4.595410346984863,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.41142988204956055,
+ "learning_rate": 0.0006,
+ "loss": 4.498429298400879,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.4001641869544983,
+ "learning_rate": 0.0006,
+ "loss": 4.4725141525268555,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.38717585802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.4988837242126465,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.371802419424057,
+ "learning_rate": 0.0006,
+ "loss": 4.582442283630371,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.3715151250362396,
+ "learning_rate": 0.0006,
+ "loss": 4.564949989318848,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.34672001004219055,
+ "learning_rate": 0.0006,
+ "loss": 4.483756065368652,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.33154991269111633,
+ "learning_rate": 0.0006,
+ "loss": 4.603157997131348,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.35700857639312744,
+ "learning_rate": 0.0006,
+ "loss": 4.61152458190918,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.3342421054840088,
+ "learning_rate": 0.0006,
+ "loss": 4.604679107666016,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.33268895745277405,
+ "learning_rate": 0.0006,
+ "loss": 4.494576454162598,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.3092094659805298,
+ "learning_rate": 0.0006,
+ "loss": 4.467197418212891,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.3105630576610565,
+ "learning_rate": 0.0006,
+ "loss": 4.524104118347168,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.3112806975841522,
+ "learning_rate": 0.0006,
+ "loss": 4.598183631896973,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.32654494047164917,
+ "learning_rate": 0.0006,
+ "loss": 4.560606956481934,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.3123837113380432,
+ "learning_rate": 0.0006,
+ "loss": 4.5417160987854,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.30493614077568054,
+ "learning_rate": 0.0006,
+ "loss": 4.4957990646362305,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.32211819291114807,
+ "learning_rate": 0.0006,
+ "loss": 4.510657787322998,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.3061928451061249,
+ "learning_rate": 0.0006,
+ "loss": 4.4888410568237305,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.3293484151363373,
+ "learning_rate": 0.0006,
+ "loss": 4.493224143981934,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.3363630175590515,
+ "learning_rate": 0.0006,
+ "loss": 4.611512184143066,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.3212876617908478,
+ "learning_rate": 0.0006,
+ "loss": 4.541720867156982,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.33978405594825745,
+ "learning_rate": 0.0006,
+ "loss": 4.570886135101318,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.3419513404369354,
+ "learning_rate": 0.0006,
+ "loss": 4.511307716369629,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.3477413058280945,
+ "learning_rate": 0.0006,
+ "loss": 4.562254428863525,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.3464774787425995,
+ "learning_rate": 0.0006,
+ "loss": 4.4771904945373535,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.3585011661052704,
+ "learning_rate": 0.0006,
+ "loss": 4.571287631988525,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.35845983028411865,
+ "learning_rate": 0.0006,
+ "loss": 4.614164352416992,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.34492379426956177,
+ "learning_rate": 0.0006,
+ "loss": 4.569354057312012,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.3545559346675873,
+ "learning_rate": 0.0006,
+ "loss": 4.618325233459473,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.34906676411628723,
+ "learning_rate": 0.0006,
+ "loss": 4.571200370788574,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.3551170229911804,
+ "learning_rate": 0.0006,
+ "loss": 4.670862197875977,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.35136666893959045,
+ "learning_rate": 0.0006,
+ "loss": 4.701116561889648,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.337865948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.5943708419799805,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.3113224506378174,
+ "learning_rate": 0.0006,
+ "loss": 4.544900417327881,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.3170933723449707,
+ "learning_rate": 0.0006,
+ "loss": 4.620759010314941,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.36298856139183044,
+ "learning_rate": 0.0006,
+ "loss": 4.554266929626465,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 5.9520769119262695,
+ "eval_runtime": 43.7638,
+ "eval_samples_per_second": 55.8,
+ "eval_steps_per_second": 3.496,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.35303112864494324,
+ "learning_rate": 0.0006,
+ "loss": 4.517671585083008,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.4049229323863983,
+ "learning_rate": 0.0006,
+ "loss": 4.32159423828125,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.41811424493789673,
+ "learning_rate": 0.0006,
+ "loss": 4.5229716300964355,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.3989298939704895,
+ "learning_rate": 0.0006,
+ "loss": 4.432945251464844,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.4113371968269348,
+ "learning_rate": 0.0006,
+ "loss": 4.506433486938477,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.4796616733074188,
+ "learning_rate": 0.0006,
+ "loss": 4.466229438781738,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.5478755235671997,
+ "learning_rate": 0.0006,
+ "loss": 4.445276260375977,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.6331852078437805,
+ "learning_rate": 0.0006,
+ "loss": 4.508879661560059,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.6938227415084839,
+ "learning_rate": 0.0006,
+ "loss": 4.46402645111084,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.725892186164856,
+ "learning_rate": 0.0006,
+ "loss": 4.525447845458984,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.7637119293212891,
+ "learning_rate": 0.0006,
+ "loss": 4.5782012939453125,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.7260075807571411,
+ "learning_rate": 0.0006,
+ "loss": 4.491940021514893,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.6114561557769775,
+ "learning_rate": 0.0006,
+ "loss": 4.400191307067871,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.596961259841919,
+ "learning_rate": 0.0006,
+ "loss": 4.5157470703125,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.6057553291320801,
+ "learning_rate": 0.0006,
+ "loss": 4.51947546005249,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.5578837990760803,
+ "learning_rate": 0.0006,
+ "loss": 4.360864639282227,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.48469677567481995,
+ "learning_rate": 0.0006,
+ "loss": 4.556163787841797,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.5084373950958252,
+ "learning_rate": 0.0006,
+ "loss": 4.522780418395996,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.46191343665122986,
+ "learning_rate": 0.0006,
+ "loss": 4.582215785980225,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.46243610978126526,
+ "learning_rate": 0.0006,
+ "loss": 4.524454116821289,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.43271467089653015,
+ "learning_rate": 0.0006,
+ "loss": 4.553678512573242,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.42276686429977417,
+ "learning_rate": 0.0006,
+ "loss": 4.52027702331543,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.39781975746154785,
+ "learning_rate": 0.0006,
+ "loss": 4.436924934387207,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.3989979028701782,
+ "learning_rate": 0.0006,
+ "loss": 4.5459418296813965,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.37322884798049927,
+ "learning_rate": 0.0006,
+ "loss": 4.457328796386719,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.39352941513061523,
+ "learning_rate": 0.0006,
+ "loss": 4.546238899230957,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.4094995856285095,
+ "learning_rate": 0.0006,
+ "loss": 4.56801176071167,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.4136136472225189,
+ "learning_rate": 0.0006,
+ "loss": 4.5552473068237305,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.38797232508659363,
+ "learning_rate": 0.0006,
+ "loss": 4.540107727050781,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.3743198812007904,
+ "learning_rate": 0.0006,
+ "loss": 4.61223030090332,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.37019675970077515,
+ "learning_rate": 0.0006,
+ "loss": 4.5185136795043945,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.3716682493686676,
+ "learning_rate": 0.0006,
+ "loss": 4.5144548416137695,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.37433356046676636,
+ "learning_rate": 0.0006,
+ "loss": 4.605284214019775,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.35030031204223633,
+ "learning_rate": 0.0006,
+ "loss": 4.433964729309082,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.34015387296676636,
+ "learning_rate": 0.0006,
+ "loss": 4.521615505218506,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.33504682779312134,
+ "learning_rate": 0.0006,
+ "loss": 4.433694839477539,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.3401985764503479,
+ "learning_rate": 0.0006,
+ "loss": 4.427435874938965,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.3336697816848755,
+ "learning_rate": 0.0006,
+ "loss": 4.479516983032227,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.3520839810371399,
+ "learning_rate": 0.0006,
+ "loss": 4.552259922027588,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.37065544724464417,
+ "learning_rate": 0.0006,
+ "loss": 4.553750991821289,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.35805585980415344,
+ "learning_rate": 0.0006,
+ "loss": 4.475344657897949,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.3296140730381012,
+ "learning_rate": 0.0006,
+ "loss": 4.436403274536133,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.37811753153800964,
+ "learning_rate": 0.0006,
+ "loss": 4.530160903930664,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.37403422594070435,
+ "learning_rate": 0.0006,
+ "loss": 4.5286970138549805,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.36441004276275635,
+ "learning_rate": 0.0006,
+ "loss": 4.53255558013916,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.36478832364082336,
+ "learning_rate": 0.0006,
+ "loss": 4.612654685974121,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.33873388171195984,
+ "learning_rate": 0.0006,
+ "loss": 4.4835052490234375,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.3341080844402313,
+ "learning_rate": 0.0006,
+ "loss": 4.530523300170898,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.3368055820465088,
+ "learning_rate": 0.0006,
+ "loss": 4.547337532043457,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.33329257369041443,
+ "learning_rate": 0.0006,
+ "loss": 4.504129886627197,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.32131633162498474,
+ "learning_rate": 0.0006,
+ "loss": 4.41353178024292,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.3307730555534363,
+ "learning_rate": 0.0006,
+ "loss": 4.513792037963867,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.3132787048816681,
+ "learning_rate": 0.0006,
+ "loss": 4.481952667236328,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.3415828347206116,
+ "learning_rate": 0.0006,
+ "loss": 4.603824615478516,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.3554075360298157,
+ "learning_rate": 0.0006,
+ "loss": 4.52272891998291,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.35552358627319336,
+ "learning_rate": 0.0006,
+ "loss": 4.590546607971191,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.34661146998405457,
+ "learning_rate": 0.0006,
+ "loss": 4.530884742736816,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.32980236411094666,
+ "learning_rate": 0.0006,
+ "loss": 4.569944381713867,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.3204209804534912,
+ "learning_rate": 0.0006,
+ "loss": 4.621525287628174,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.34645888209342957,
+ "learning_rate": 0.0006,
+ "loss": 4.640268325805664,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.34345459938049316,
+ "learning_rate": 0.0006,
+ "loss": 4.57299280166626,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.31283891201019287,
+ "learning_rate": 0.0006,
+ "loss": 4.512124538421631,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.3264627158641815,
+ "learning_rate": 0.0006,
+ "loss": 4.539945125579834,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.32764381170272827,
+ "learning_rate": 0.0006,
+ "loss": 4.587368965148926,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.33571943640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.541814804077148,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.3281124532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.657299041748047,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.32940414547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.566315650939941,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.34157609939575195,
+ "learning_rate": 0.0006,
+ "loss": 4.513726234436035,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.3395758867263794,
+ "learning_rate": 0.0006,
+ "loss": 4.399216651916504,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.32446882128715515,
+ "learning_rate": 0.0006,
+ "loss": 4.511756896972656,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.3214825689792633,
+ "learning_rate": 0.0006,
+ "loss": 4.60077428817749,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.38103142380714417,
+ "learning_rate": 0.0006,
+ "loss": 4.513268947601318,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 5.997299671173096,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.38904476165771484,
+ "learning_rate": 0.0006,
+ "loss": 4.4267683029174805,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.4867170453071594,
+ "learning_rate": 0.0006,
+ "loss": 4.6331377029418945,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.5432860851287842,
+ "learning_rate": 0.0006,
+ "loss": 4.486640930175781,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.5891098976135254,
+ "learning_rate": 0.0006,
+ "loss": 4.439168930053711,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.651566207408905,
+ "learning_rate": 0.0006,
+ "loss": 4.442290306091309,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.7374010682106018,
+ "learning_rate": 0.0006,
+ "loss": 4.506593227386475,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.687479555606842,
+ "learning_rate": 0.0006,
+ "loss": 4.355170726776123,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.5559279322624207,
+ "learning_rate": 0.0006,
+ "loss": 4.4775848388671875,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.4740068316459656,
+ "learning_rate": 0.0006,
+ "loss": 4.406060218811035,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.4503956437110901,
+ "learning_rate": 0.0006,
+ "loss": 4.50202751159668,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.43447068333625793,
+ "learning_rate": 0.0006,
+ "loss": 4.406303405761719,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.467534601688385,
+ "learning_rate": 0.0006,
+ "loss": 4.456825256347656,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.4274725317955017,
+ "learning_rate": 0.0006,
+ "loss": 4.519631862640381,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.4458267092704773,
+ "learning_rate": 0.0006,
+ "loss": 4.5075273513793945,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.4589817523956299,
+ "learning_rate": 0.0006,
+ "loss": 4.53427791595459,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.4369298219680786,
+ "learning_rate": 0.0006,
+ "loss": 4.453665733337402,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.40208619832992554,
+ "learning_rate": 0.0006,
+ "loss": 4.491055488586426,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.42825907468795776,
+ "learning_rate": 0.0006,
+ "loss": 4.40598201751709,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.4087942838668823,
+ "learning_rate": 0.0006,
+ "loss": 4.464543342590332,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.4127184748649597,
+ "learning_rate": 0.0006,
+ "loss": 4.453717231750488,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.3792072832584381,
+ "learning_rate": 0.0006,
+ "loss": 4.540654182434082,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.37761303782463074,
+ "learning_rate": 0.0006,
+ "loss": 4.5173444747924805,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.39462578296661377,
+ "learning_rate": 0.0006,
+ "loss": 4.475564956665039,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.389240026473999,
+ "learning_rate": 0.0006,
+ "loss": 4.47003173828125,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.3284401595592499,
+ "learning_rate": 0.0006,
+ "loss": 4.509256362915039,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.36065322160720825,
+ "learning_rate": 0.0006,
+ "loss": 4.519750595092773,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.4047972559928894,
+ "learning_rate": 0.0006,
+ "loss": 4.544723987579346,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.3983764946460724,
+ "learning_rate": 0.0006,
+ "loss": 4.463843822479248,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.3566279411315918,
+ "learning_rate": 0.0006,
+ "loss": 4.49434232711792,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.3635500371456146,
+ "learning_rate": 0.0006,
+ "loss": 4.540027618408203,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.3570628762245178,
+ "learning_rate": 0.0006,
+ "loss": 4.553153991699219,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.3723495900630951,
+ "learning_rate": 0.0006,
+ "loss": 4.440988063812256,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.36362147331237793,
+ "learning_rate": 0.0006,
+ "loss": 4.4362382888793945,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.35589995980262756,
+ "learning_rate": 0.0006,
+ "loss": 4.51686954498291,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.36702191829681396,
+ "learning_rate": 0.0006,
+ "loss": 4.512096405029297,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.33874306082725525,
+ "learning_rate": 0.0006,
+ "loss": 4.540366172790527,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.3516198992729187,
+ "learning_rate": 0.0006,
+ "loss": 4.62489652633667,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.3683012127876282,
+ "learning_rate": 0.0006,
+ "loss": 4.585978031158447,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.3635624349117279,
+ "learning_rate": 0.0006,
+ "loss": 4.489178657531738,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.34836307168006897,
+ "learning_rate": 0.0006,
+ "loss": 4.460101127624512,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.34091171622276306,
+ "learning_rate": 0.0006,
+ "loss": 4.5094757080078125,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.3533838987350464,
+ "learning_rate": 0.0006,
+ "loss": 4.432389259338379,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.3747945725917816,
+ "learning_rate": 0.0006,
+ "loss": 4.478375434875488,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.3577699363231659,
+ "learning_rate": 0.0006,
+ "loss": 4.414947509765625,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.3335869610309601,
+ "learning_rate": 0.0006,
+ "loss": 4.533723831176758,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.33465003967285156,
+ "learning_rate": 0.0006,
+ "loss": 4.447335243225098,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.3213546872138977,
+ "learning_rate": 0.0006,
+ "loss": 4.590419769287109,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.33528566360473633,
+ "learning_rate": 0.0006,
+ "loss": 4.535307884216309,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.32287919521331787,
+ "learning_rate": 0.0006,
+ "loss": 4.460314750671387,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.3327800929546356,
+ "learning_rate": 0.0006,
+ "loss": 4.472071170806885,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.3455285131931305,
+ "learning_rate": 0.0006,
+ "loss": 4.512870788574219,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.3649083971977234,
+ "learning_rate": 0.0006,
+ "loss": 4.566398620605469,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.34520331025123596,
+ "learning_rate": 0.0006,
+ "loss": 4.531142234802246,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.33229365944862366,
+ "learning_rate": 0.0006,
+ "loss": 4.534731864929199,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.32676762342453003,
+ "learning_rate": 0.0006,
+ "loss": 4.495224952697754,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.35570159554481506,
+ "learning_rate": 0.0006,
+ "loss": 4.454304218292236,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.3650519847869873,
+ "learning_rate": 0.0006,
+ "loss": 4.496518135070801,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.34958651661872864,
+ "learning_rate": 0.0006,
+ "loss": 4.484814643859863,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.33145833015441895,
+ "learning_rate": 0.0006,
+ "loss": 4.58726692199707,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.35525912046432495,
+ "learning_rate": 0.0006,
+ "loss": 4.604259490966797,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.36418667435646057,
+ "learning_rate": 0.0006,
+ "loss": 4.545116424560547,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.3634072542190552,
+ "learning_rate": 0.0006,
+ "loss": 4.5807976722717285,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.3330601751804352,
+ "learning_rate": 0.0006,
+ "loss": 4.644209861755371,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.3328757882118225,
+ "learning_rate": 0.0006,
+ "loss": 4.428152084350586,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.35513442754745483,
+ "learning_rate": 0.0006,
+ "loss": 4.537221908569336,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.3442719578742981,
+ "learning_rate": 0.0006,
+ "loss": 4.513792991638184,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.33836424350738525,
+ "learning_rate": 0.0006,
+ "loss": 4.516441822052002,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.3266754150390625,
+ "learning_rate": 0.0006,
+ "loss": 4.566867828369141,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.3323577046394348,
+ "learning_rate": 0.0006,
+ "loss": 4.578335285186768,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.33459651470184326,
+ "learning_rate": 0.0006,
+ "loss": 4.54951286315918,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.322121798992157,
+ "learning_rate": 0.0006,
+ "loss": 4.502225399017334,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.3783724009990692,
+ "learning_rate": 0.0006,
+ "loss": 4.567020416259766,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 6.006827354431152,
+ "eval_runtime": 44.0891,
+ "eval_samples_per_second": 55.388,
+ "eval_steps_per_second": 3.47,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.32853618264198303,
+ "learning_rate": 0.0006,
+ "loss": 4.462612152099609,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.368930846452713,
+ "learning_rate": 0.0006,
+ "loss": 4.465127944946289,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.3777396082878113,
+ "learning_rate": 0.0006,
+ "loss": 4.386007308959961,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.367422878742218,
+ "learning_rate": 0.0006,
+ "loss": 4.381991386413574,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.37991753220558167,
+ "learning_rate": 0.0006,
+ "loss": 4.377860069274902,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.42323318123817444,
+ "learning_rate": 0.0006,
+ "loss": 4.37595272064209,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.4760129153728485,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.5124046802520752,
+ "learning_rate": 0.0006,
+ "loss": 4.337190628051758,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.531071662902832,
+ "learning_rate": 0.0006,
+ "loss": 4.451430320739746,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.5384536981582642,
+ "learning_rate": 0.0006,
+ "loss": 4.4486517906188965,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.5250184535980225,
+ "learning_rate": 0.0006,
+ "loss": 4.405571460723877,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.46931883692741394,
+ "learning_rate": 0.0006,
+ "loss": 4.422909736633301,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.43585965037345886,
+ "learning_rate": 0.0006,
+ "loss": 4.4146623611450195,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.4541586935520172,
+ "learning_rate": 0.0006,
+ "loss": 4.525043964385986,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.4525131285190582,
+ "learning_rate": 0.0006,
+ "loss": 4.445549964904785,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.43060410022735596,
+ "learning_rate": 0.0006,
+ "loss": 4.569626808166504,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.41200605034828186,
+ "learning_rate": 0.0006,
+ "loss": 4.4296722412109375,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.41548681259155273,
+ "learning_rate": 0.0006,
+ "loss": 4.471395015716553,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.4114936590194702,
+ "learning_rate": 0.0006,
+ "loss": 4.488224029541016,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.3813242018222809,
+ "learning_rate": 0.0006,
+ "loss": 4.526697158813477,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.3632749915122986,
+ "learning_rate": 0.0006,
+ "loss": 4.436177730560303,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.3940926790237427,
+ "learning_rate": 0.0006,
+ "loss": 4.460351943969727,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.3619038164615631,
+ "learning_rate": 0.0006,
+ "loss": 4.518864631652832,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.3489382266998291,
+ "learning_rate": 0.0006,
+ "loss": 4.396579742431641,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.358996719121933,
+ "learning_rate": 0.0006,
+ "loss": 4.481385231018066,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.3564680814743042,
+ "learning_rate": 0.0006,
+ "loss": 4.467512130737305,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.34345853328704834,
+ "learning_rate": 0.0006,
+ "loss": 4.384468078613281,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.35230007767677307,
+ "learning_rate": 0.0006,
+ "loss": 4.386395454406738,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.3841094374656677,
+ "learning_rate": 0.0006,
+ "loss": 4.503620147705078,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.35597774386405945,
+ "learning_rate": 0.0006,
+ "loss": 4.392177581787109,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.37488853931427,
+ "learning_rate": 0.0006,
+ "loss": 4.520835876464844,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.3686712384223938,
+ "learning_rate": 0.0006,
+ "loss": 4.512207984924316,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.3633238971233368,
+ "learning_rate": 0.0006,
+ "loss": 4.476304054260254,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.35327470302581787,
+ "learning_rate": 0.0006,
+ "loss": 4.486106872558594,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.36043164134025574,
+ "learning_rate": 0.0006,
+ "loss": 4.5887932777404785,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.35618555545806885,
+ "learning_rate": 0.0006,
+ "loss": 4.432713985443115,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.35672447085380554,
+ "learning_rate": 0.0006,
+ "loss": 4.420745849609375,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.34077218174934387,
+ "learning_rate": 0.0006,
+ "loss": 4.5055437088012695,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.36629998683929443,
+ "learning_rate": 0.0006,
+ "loss": 4.466887474060059,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.3518354892730713,
+ "learning_rate": 0.0006,
+ "loss": 4.460048198699951,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.3671749532222748,
+ "learning_rate": 0.0006,
+ "loss": 4.481925010681152,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.35547134280204773,
+ "learning_rate": 0.0006,
+ "loss": 4.491135597229004,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.331259161233902,
+ "learning_rate": 0.0006,
+ "loss": 4.431758880615234,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.361924409866333,
+ "learning_rate": 0.0006,
+ "loss": 4.5314178466796875,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.3710547983646393,
+ "learning_rate": 0.0006,
+ "loss": 4.476513385772705,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.3744674026966095,
+ "learning_rate": 0.0006,
+ "loss": 4.5139265060424805,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.3566974699497223,
+ "learning_rate": 0.0006,
+ "loss": 4.506993293762207,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.356650173664093,
+ "learning_rate": 0.0006,
+ "loss": 4.314001083374023,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.3512333929538727,
+ "learning_rate": 0.0006,
+ "loss": 4.426201820373535,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.34401875734329224,
+ "learning_rate": 0.0006,
+ "loss": 4.476150989532471,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.3562363386154175,
+ "learning_rate": 0.0006,
+ "loss": 4.414971351623535,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.356920450925827,
+ "learning_rate": 0.0006,
+ "loss": 4.5345072746276855,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.35387253761291504,
+ "learning_rate": 0.0006,
+ "loss": 4.562994003295898,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.3269110321998596,
+ "learning_rate": 0.0006,
+ "loss": 4.439030647277832,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.3546333611011505,
+ "learning_rate": 0.0006,
+ "loss": 4.542754650115967,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.38223791122436523,
+ "learning_rate": 0.0006,
+ "loss": 4.403573036193848,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.36478695273399353,
+ "learning_rate": 0.0006,
+ "loss": 4.491611480712891,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.3781295716762543,
+ "learning_rate": 0.0006,
+ "loss": 4.601706504821777,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.368025541305542,
+ "learning_rate": 0.0006,
+ "loss": 4.5557661056518555,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.3557749390602112,
+ "learning_rate": 0.0006,
+ "loss": 4.537637710571289,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.3501970171928406,
+ "learning_rate": 0.0006,
+ "loss": 4.46262264251709,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.3471882939338684,
+ "learning_rate": 0.0006,
+ "loss": 4.577760219573975,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.34618252515792847,
+ "learning_rate": 0.0006,
+ "loss": 4.499895095825195,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.33488839864730835,
+ "learning_rate": 0.0006,
+ "loss": 4.439484119415283,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.33412304520606995,
+ "learning_rate": 0.0006,
+ "loss": 4.520278453826904,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.3468182682991028,
+ "learning_rate": 0.0006,
+ "loss": 4.469455718994141,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.3660058081150055,
+ "learning_rate": 0.0006,
+ "loss": 4.493475437164307,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.3734740912914276,
+ "learning_rate": 0.0006,
+ "loss": 4.493892192840576,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.3794167637825012,
+ "learning_rate": 0.0006,
+ "loss": 4.48382568359375,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.35964176058769226,
+ "learning_rate": 0.0006,
+ "loss": 4.554006576538086,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.3686473071575165,
+ "learning_rate": 0.0006,
+ "loss": 4.606235027313232,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.41534164547920227,
+ "learning_rate": 0.0006,
+ "loss": 4.62783145904541,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 6.042169094085693,
+ "eval_runtime": 43.761,
+ "eval_samples_per_second": 55.803,
+ "eval_steps_per_second": 3.496,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.3582662343978882,
+ "learning_rate": 0.0006,
+ "loss": 4.367033004760742,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.4083438515663147,
+ "learning_rate": 0.0006,
+ "loss": 4.4895124435424805,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.4229201078414917,
+ "learning_rate": 0.0006,
+ "loss": 4.370609283447266,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.39792340993881226,
+ "learning_rate": 0.0006,
+ "loss": 4.497011184692383,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.388003408908844,
+ "learning_rate": 0.0006,
+ "loss": 4.4592461585998535,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.39949673414230347,
+ "learning_rate": 0.0006,
+ "loss": 4.462596416473389,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.4372541308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.447797775268555,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.46834954619407654,
+ "learning_rate": 0.0006,
+ "loss": 4.308385848999023,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.5688929557800293,
+ "learning_rate": 0.0006,
+ "loss": 4.365313529968262,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.6704147458076477,
+ "learning_rate": 0.0006,
+ "loss": 4.486667156219482,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.7112005949020386,
+ "learning_rate": 0.0006,
+ "loss": 4.361507415771484,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.6994309425354004,
+ "learning_rate": 0.0006,
+ "loss": 4.438989639282227,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.6150463223457336,
+ "learning_rate": 0.0006,
+ "loss": 4.435388565063477,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.5012004375457764,
+ "learning_rate": 0.0006,
+ "loss": 4.390518665313721,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.5038489699363708,
+ "learning_rate": 0.0006,
+ "loss": 4.545775413513184,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.46290716528892517,
+ "learning_rate": 0.0006,
+ "loss": 4.488037586212158,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.4344721734523773,
+ "learning_rate": 0.0006,
+ "loss": 4.4336395263671875,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.4434686303138733,
+ "learning_rate": 0.0006,
+ "loss": 4.463184356689453,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.40731993317604065,
+ "learning_rate": 0.0006,
+ "loss": 4.405695915222168,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.4375665783882141,
+ "learning_rate": 0.0006,
+ "loss": 4.444109916687012,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.40874218940734863,
+ "learning_rate": 0.0006,
+ "loss": 4.4757890701293945,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.3767406940460205,
+ "learning_rate": 0.0006,
+ "loss": 4.522805213928223,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.38738706707954407,
+ "learning_rate": 0.0006,
+ "loss": 4.465547561645508,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.3685896098613739,
+ "learning_rate": 0.0006,
+ "loss": 4.466242790222168,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.3774345815181732,
+ "learning_rate": 0.0006,
+ "loss": 4.484253883361816,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.3831925094127655,
+ "learning_rate": 0.0006,
+ "loss": 4.472195625305176,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.3828861117362976,
+ "learning_rate": 0.0006,
+ "loss": 4.453568458557129,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.37291333079338074,
+ "learning_rate": 0.0006,
+ "loss": 4.451351165771484,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.3853893280029297,
+ "learning_rate": 0.0006,
+ "loss": 4.549152374267578,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.3881666958332062,
+ "learning_rate": 0.0006,
+ "loss": 4.508666038513184,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.3738086223602295,
+ "learning_rate": 0.0006,
+ "loss": 4.372381210327148,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.3791394531726837,
+ "learning_rate": 0.0006,
+ "loss": 4.339181423187256,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.37420526146888733,
+ "learning_rate": 0.0006,
+ "loss": 4.402055263519287,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.35743793845176697,
+ "learning_rate": 0.0006,
+ "loss": 4.4151201248168945,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.36366918683052063,
+ "learning_rate": 0.0006,
+ "loss": 4.558487892150879,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.37367990612983704,
+ "learning_rate": 0.0006,
+ "loss": 4.4660186767578125,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.36849185824394226,
+ "learning_rate": 0.0006,
+ "loss": 4.4328460693359375,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.35874050855636597,
+ "learning_rate": 0.0006,
+ "loss": 4.501498222351074,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.3439449369907379,
+ "learning_rate": 0.0006,
+ "loss": 4.514956474304199,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.34982672333717346,
+ "learning_rate": 0.0006,
+ "loss": 4.432663440704346,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.3427469730377197,
+ "learning_rate": 0.0006,
+ "loss": 4.53687047958374,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.34122076630592346,
+ "learning_rate": 0.0006,
+ "loss": 4.511679649353027,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.34995922446250916,
+ "learning_rate": 0.0006,
+ "loss": 4.431851387023926,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.3598015010356903,
+ "learning_rate": 0.0006,
+ "loss": 4.500715732574463,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.3571312427520752,
+ "learning_rate": 0.0006,
+ "loss": 4.3919477462768555,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.349813848733902,
+ "learning_rate": 0.0006,
+ "loss": 4.429527282714844,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.34486183524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.49825382232666,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.35661765933036804,
+ "learning_rate": 0.0006,
+ "loss": 4.532907009124756,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.3797028064727783,
+ "learning_rate": 0.0006,
+ "loss": 4.500331878662109,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.4064275920391083,
+ "learning_rate": 0.0006,
+ "loss": 4.517643928527832,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.43707364797592163,
+ "learning_rate": 0.0006,
+ "loss": 4.516770362854004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.39768990874290466,
+ "learning_rate": 0.0006,
+ "loss": 4.423864364624023,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.3774828612804413,
+ "learning_rate": 0.0006,
+ "loss": 4.569332122802734,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 4.5672287940979,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.3456677794456482,
+ "learning_rate": 0.0006,
+ "loss": 4.4826250076293945,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.3427235782146454,
+ "learning_rate": 0.0006,
+ "loss": 4.482532501220703,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.35089850425720215,
+ "learning_rate": 0.0006,
+ "loss": 4.497298717498779,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.3862971365451813,
+ "learning_rate": 0.0006,
+ "loss": 4.494993209838867,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.3872345983982086,
+ "learning_rate": 0.0006,
+ "loss": 4.4641265869140625,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.37451717257499695,
+ "learning_rate": 0.0006,
+ "loss": 4.5539751052856445,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.3411077558994293,
+ "learning_rate": 0.0006,
+ "loss": 4.439755439758301,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.37356171011924744,
+ "learning_rate": 0.0006,
+ "loss": 4.558586597442627,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.36969587206840515,
+ "learning_rate": 0.0006,
+ "loss": 4.5714921951293945,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.3607325553894043,
+ "learning_rate": 0.0006,
+ "loss": 4.5500946044921875,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.35142892599105835,
+ "learning_rate": 0.0006,
+ "loss": 4.43544864654541,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.3639235198497772,
+ "learning_rate": 0.0006,
+ "loss": 4.51536750793457,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.3697306215763092,
+ "learning_rate": 0.0006,
+ "loss": 4.602231025695801,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.3497442305088043,
+ "learning_rate": 0.0006,
+ "loss": 4.491847038269043,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.35614675283432007,
+ "learning_rate": 0.0006,
+ "loss": 4.516396522521973,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.3396896421909332,
+ "learning_rate": 0.0006,
+ "loss": 4.572662353515625,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.3296530246734619,
+ "learning_rate": 0.0006,
+ "loss": 4.503357887268066,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.39734646677970886,
+ "learning_rate": 0.0006,
+ "loss": 4.617473602294922,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 6.078064918518066,
+ "eval_runtime": 43.8508,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.3651960492134094,
+ "learning_rate": 0.0006,
+ "loss": 4.38209867477417,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.42956092953681946,
+ "learning_rate": 0.0006,
+ "loss": 4.36821174621582,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.4263833463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.395481586456299,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.40590521693229675,
+ "learning_rate": 0.0006,
+ "loss": 4.548542022705078,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.3810324966907501,
+ "learning_rate": 0.0006,
+ "loss": 4.428560733795166,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.4093029499053955,
+ "learning_rate": 0.0006,
+ "loss": 4.364042282104492,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.4427941143512726,
+ "learning_rate": 0.0006,
+ "loss": 4.417634010314941,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.5076028108596802,
+ "learning_rate": 0.0006,
+ "loss": 4.403231143951416,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.6097886562347412,
+ "learning_rate": 0.0006,
+ "loss": 4.457414627075195,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.7824211716651917,
+ "learning_rate": 0.0006,
+ "loss": 4.393448352813721,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.880927324295044,
+ "learning_rate": 0.0006,
+ "loss": 4.425724029541016,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.8435710072517395,
+ "learning_rate": 0.0006,
+ "loss": 4.451290130615234,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.7285138964653015,
+ "learning_rate": 0.0006,
+ "loss": 4.47327995300293,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.6542113423347473,
+ "learning_rate": 0.0006,
+ "loss": 4.48089599609375,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.5451841354370117,
+ "learning_rate": 0.0006,
+ "loss": 4.365630149841309,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.5435286164283752,
+ "learning_rate": 0.0006,
+ "loss": 4.473834037780762,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.48534685373306274,
+ "learning_rate": 0.0006,
+ "loss": 4.4412665367126465,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.496584951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.28601598739624,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.47510403394699097,
+ "learning_rate": 0.0006,
+ "loss": 4.409165859222412,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.40819454193115234,
+ "learning_rate": 0.0006,
+ "loss": 4.405090808868408,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.4026843309402466,
+ "learning_rate": 0.0006,
+ "loss": 4.364956855773926,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.3890523910522461,
+ "learning_rate": 0.0006,
+ "loss": 4.400479316711426,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.41334471106529236,
+ "learning_rate": 0.0006,
+ "loss": 4.488551139831543,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.4133543074131012,
+ "learning_rate": 0.0006,
+ "loss": 4.415935516357422,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.38404449820518494,
+ "learning_rate": 0.0006,
+ "loss": 4.424680709838867,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.3972908556461334,
+ "learning_rate": 0.0006,
+ "loss": 4.434515953063965,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.36936846375465393,
+ "learning_rate": 0.0006,
+ "loss": 4.44220495223999,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.3899446427822113,
+ "learning_rate": 0.0006,
+ "loss": 4.56641149520874,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.3968387842178345,
+ "learning_rate": 0.0006,
+ "loss": 4.527149677276611,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.3847099542617798,
+ "learning_rate": 0.0006,
+ "loss": 4.4707932472229,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.36679205298423767,
+ "learning_rate": 0.0006,
+ "loss": 4.415038108825684,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.3768857419490814,
+ "learning_rate": 0.0006,
+ "loss": 4.436174392700195,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.36546987295150757,
+ "learning_rate": 0.0006,
+ "loss": 4.377763748168945,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.35834288597106934,
+ "learning_rate": 0.0006,
+ "loss": 4.570962905883789,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.3731405735015869,
+ "learning_rate": 0.0006,
+ "loss": 4.329690933227539,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.3573066294193268,
+ "learning_rate": 0.0006,
+ "loss": 4.506242752075195,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.3470059037208557,
+ "learning_rate": 0.0006,
+ "loss": 4.411970138549805,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.3473946750164032,
+ "learning_rate": 0.0006,
+ "loss": 4.413405895233154,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.36662453413009644,
+ "learning_rate": 0.0006,
+ "loss": 4.510307312011719,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.3651449382305145,
+ "learning_rate": 0.0006,
+ "loss": 4.551748752593994,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.3381642699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.38339900970459,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.3719469904899597,
+ "learning_rate": 0.0006,
+ "loss": 4.455236434936523,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.3571246564388275,
+ "learning_rate": 0.0006,
+ "loss": 4.495994567871094,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.35758304595947266,
+ "learning_rate": 0.0006,
+ "loss": 4.428824424743652,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.34523504972457886,
+ "learning_rate": 0.0006,
+ "loss": 4.4055023193359375,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.3323740065097809,
+ "learning_rate": 0.0006,
+ "loss": 4.4405670166015625,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.3406590223312378,
+ "learning_rate": 0.0006,
+ "loss": 4.630194664001465,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.3630630373954773,
+ "learning_rate": 0.0006,
+ "loss": 4.441995620727539,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.3695090711116791,
+ "learning_rate": 0.0006,
+ "loss": 4.504590034484863,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.354377418756485,
+ "learning_rate": 0.0006,
+ "loss": 4.480928897857666,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.347619891166687,
+ "learning_rate": 0.0006,
+ "loss": 4.4833197593688965,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.35458409786224365,
+ "learning_rate": 0.0006,
+ "loss": 4.435677528381348,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.36406439542770386,
+ "learning_rate": 0.0006,
+ "loss": 4.547893524169922,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.3731665313243866,
+ "learning_rate": 0.0006,
+ "loss": 4.540064811706543,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.38077425956726074,
+ "learning_rate": 0.0006,
+ "loss": 4.527038097381592,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.3859257996082306,
+ "learning_rate": 0.0006,
+ "loss": 4.522737503051758,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.3686114251613617,
+ "learning_rate": 0.0006,
+ "loss": 4.423748016357422,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.35939234495162964,
+ "learning_rate": 0.0006,
+ "loss": 4.46516752243042,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.3577890992164612,
+ "learning_rate": 0.0006,
+ "loss": 4.4799699783325195,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.3783135712146759,
+ "learning_rate": 0.0006,
+ "loss": 4.553424835205078,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.3880096673965454,
+ "learning_rate": 0.0006,
+ "loss": 4.523763656616211,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.37520354986190796,
+ "learning_rate": 0.0006,
+ "loss": 4.492466926574707,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.33252400159835815,
+ "learning_rate": 0.0006,
+ "loss": 4.425802707672119,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.32802218198776245,
+ "learning_rate": 0.0006,
+ "loss": 4.4640398025512695,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.3527446389198303,
+ "learning_rate": 0.0006,
+ "loss": 4.511631488800049,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.36002135276794434,
+ "learning_rate": 0.0006,
+ "loss": 4.481298446655273,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.3554088771343231,
+ "learning_rate": 0.0006,
+ "loss": 4.488155841827393,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.33969753980636597,
+ "learning_rate": 0.0006,
+ "loss": 4.5499162673950195,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.34298911690711975,
+ "learning_rate": 0.0006,
+ "loss": 4.487153053283691,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.3438885807991028,
+ "learning_rate": 0.0006,
+ "loss": 4.531944274902344,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.34945011138916016,
+ "learning_rate": 0.0006,
+ "loss": 4.471215724945068,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.3923031687736511,
+ "learning_rate": 0.0006,
+ "loss": 4.212644577026367,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 6.080368518829346,
+ "eval_runtime": 44.1409,
+ "eval_samples_per_second": 55.323,
+ "eval_steps_per_second": 3.466,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.37651586532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.384128093719482,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.40670016407966614,
+ "learning_rate": 0.0006,
+ "loss": 4.431879043579102,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.4339146018028259,
+ "learning_rate": 0.0006,
+ "loss": 4.324412822723389,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.45135679841041565,
+ "learning_rate": 0.0006,
+ "loss": 4.413969039916992,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.44892802834510803,
+ "learning_rate": 0.0006,
+ "loss": 4.432966232299805,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.4989248514175415,
+ "learning_rate": 0.0006,
+ "loss": 4.416604518890381,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.5580516457557678,
+ "learning_rate": 0.0006,
+ "loss": 4.441137313842773,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.6170709133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.478781700134277,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.6360894441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.435848236083984,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.5782052874565125,
+ "learning_rate": 0.0006,
+ "loss": 4.355332374572754,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.48975449800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.339064598083496,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.5082816481590271,
+ "learning_rate": 0.0006,
+ "loss": 4.419503211975098,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.4976898729801178,
+ "learning_rate": 0.0006,
+ "loss": 4.450881004333496,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.4585951864719391,
+ "learning_rate": 0.0006,
+ "loss": 4.45768928527832,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.4451828896999359,
+ "learning_rate": 0.0006,
+ "loss": 4.377121925354004,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.43856924772262573,
+ "learning_rate": 0.0006,
+ "loss": 4.521053314208984,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.4324304163455963,
+ "learning_rate": 0.0006,
+ "loss": 4.450983047485352,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.4344736337661743,
+ "learning_rate": 0.0006,
+ "loss": 4.390157699584961,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.3939952552318573,
+ "learning_rate": 0.0006,
+ "loss": 4.417701244354248,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.38554903864860535,
+ "learning_rate": 0.0006,
+ "loss": 4.41594123840332,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.38533687591552734,
+ "learning_rate": 0.0006,
+ "loss": 4.475393772125244,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.3820497989654541,
+ "learning_rate": 0.0006,
+ "loss": 4.458919525146484,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.38072291016578674,
+ "learning_rate": 0.0006,
+ "loss": 4.408658981323242,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.3898736238479614,
+ "learning_rate": 0.0006,
+ "loss": 4.419947624206543,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.3575943410396576,
+ "learning_rate": 0.0006,
+ "loss": 4.406661033630371,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.36567923426628113,
+ "learning_rate": 0.0006,
+ "loss": 4.3276824951171875,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.346829891204834,
+ "learning_rate": 0.0006,
+ "loss": 4.48641300201416,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.3463636040687561,
+ "learning_rate": 0.0006,
+ "loss": 4.394601821899414,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.3512531816959381,
+ "learning_rate": 0.0006,
+ "loss": 4.389430999755859,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.35256630182266235,
+ "learning_rate": 0.0006,
+ "loss": 4.369239807128906,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.34576165676116943,
+ "learning_rate": 0.0006,
+ "loss": 4.472862720489502,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.34324318170547485,
+ "learning_rate": 0.0006,
+ "loss": 4.3496222496032715,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.35961565375328064,
+ "learning_rate": 0.0006,
+ "loss": 4.412078857421875,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.34824132919311523,
+ "learning_rate": 0.0006,
+ "loss": 4.428851127624512,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.34614458680152893,
+ "learning_rate": 0.0006,
+ "loss": 4.436285972595215,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.351731538772583,
+ "learning_rate": 0.0006,
+ "loss": 4.40335750579834,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.35821884870529175,
+ "learning_rate": 0.0006,
+ "loss": 4.444912910461426,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.3590186536312103,
+ "learning_rate": 0.0006,
+ "loss": 4.395397663116455,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.40094488859176636,
+ "learning_rate": 0.0006,
+ "loss": 4.4531989097595215,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.4223143458366394,
+ "learning_rate": 0.0006,
+ "loss": 4.322312831878662,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.3909565210342407,
+ "learning_rate": 0.0006,
+ "loss": 4.487264156341553,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.3404933214187622,
+ "learning_rate": 0.0006,
+ "loss": 4.510981559753418,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.3452378511428833,
+ "learning_rate": 0.0006,
+ "loss": 4.468415260314941,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.35990920662879944,
+ "learning_rate": 0.0006,
+ "loss": 4.401268482208252,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.3942641615867615,
+ "learning_rate": 0.0006,
+ "loss": 4.470156192779541,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.40389496088027954,
+ "learning_rate": 0.0006,
+ "loss": 4.4868340492248535,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.42726999521255493,
+ "learning_rate": 0.0006,
+ "loss": 4.4538726806640625,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.41744017601013184,
+ "learning_rate": 0.0006,
+ "loss": 4.470617771148682,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.38410690426826477,
+ "learning_rate": 0.0006,
+ "loss": 4.4835205078125,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.390063613653183,
+ "learning_rate": 0.0006,
+ "loss": 4.378921031951904,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.4232037663459778,
+ "learning_rate": 0.0006,
+ "loss": 4.508237838745117,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.36894989013671875,
+ "learning_rate": 0.0006,
+ "loss": 4.48462438583374,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.3787451684474945,
+ "learning_rate": 0.0006,
+ "loss": 4.512439250946045,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.3955521881580353,
+ "learning_rate": 0.0006,
+ "loss": 4.575541973114014,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.4088609218597412,
+ "learning_rate": 0.0006,
+ "loss": 4.541800022125244,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.4100678265094757,
+ "learning_rate": 0.0006,
+ "loss": 4.476718902587891,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.3965912163257599,
+ "learning_rate": 0.0006,
+ "loss": 4.525032997131348,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.4125767946243286,
+ "learning_rate": 0.0006,
+ "loss": 4.505224227905273,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.4085708558559418,
+ "learning_rate": 0.0006,
+ "loss": 4.495236396789551,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.3957611620426178,
+ "learning_rate": 0.0006,
+ "loss": 4.42926549911499,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.37757614254951477,
+ "learning_rate": 0.0006,
+ "loss": 4.454717636108398,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.3475726544857025,
+ "learning_rate": 0.0006,
+ "loss": 4.427743911743164,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.3613670766353607,
+ "learning_rate": 0.0006,
+ "loss": 4.483582496643066,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.38781681656837463,
+ "learning_rate": 0.0006,
+ "loss": 4.532332897186279,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.3784087598323822,
+ "learning_rate": 0.0006,
+ "loss": 4.478180885314941,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.3608993589878082,
+ "learning_rate": 0.0006,
+ "loss": 4.337360382080078,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.3642866909503937,
+ "learning_rate": 0.0006,
+ "loss": 4.487359523773193,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.34810706973075867,
+ "learning_rate": 0.0006,
+ "loss": 4.423933029174805,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.3757745623588562,
+ "learning_rate": 0.0006,
+ "loss": 4.404055595397949,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.37898802757263184,
+ "learning_rate": 0.0006,
+ "loss": 4.414997577667236,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.3631143569946289,
+ "learning_rate": 0.0006,
+ "loss": 4.464874744415283,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.4197080433368683,
+ "learning_rate": 0.0006,
+ "loss": 4.431639194488525,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 6.048519611358643,
+ "eval_runtime": 43.8893,
+ "eval_samples_per_second": 55.64,
+ "eval_steps_per_second": 3.486,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.40002161264419556,
+ "learning_rate": 0.0006,
+ "loss": 4.2838897705078125,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.42791178822517395,
+ "learning_rate": 0.0006,
+ "loss": 4.388862609863281,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.44897857308387756,
+ "learning_rate": 0.0006,
+ "loss": 4.363739967346191,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.48965492844581604,
+ "learning_rate": 0.0006,
+ "loss": 4.412276268005371,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.5731410980224609,
+ "learning_rate": 0.0006,
+ "loss": 4.455599784851074,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.6601160764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.497766494750977,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.7701702117919922,
+ "learning_rate": 0.0006,
+ "loss": 4.469317436218262,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.7932248711585999,
+ "learning_rate": 0.0006,
+ "loss": 4.442869663238525,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.7784151434898376,
+ "learning_rate": 0.0006,
+ "loss": 4.482107639312744,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.632568895816803,
+ "learning_rate": 0.0006,
+ "loss": 4.381863594055176,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.6189999580383301,
+ "learning_rate": 0.0006,
+ "loss": 4.380049705505371,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.5236480236053467,
+ "learning_rate": 0.0006,
+ "loss": 4.4106340408325195,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.5458868741989136,
+ "learning_rate": 0.0006,
+ "loss": 4.370614051818848,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.5013874769210815,
+ "learning_rate": 0.0006,
+ "loss": 4.4427409172058105,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.49883124232292175,
+ "learning_rate": 0.0006,
+ "loss": 4.356327056884766,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.42850786447525024,
+ "learning_rate": 0.0006,
+ "loss": 4.342260360717773,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.4191346764564514,
+ "learning_rate": 0.0006,
+ "loss": 4.381067752838135,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.4248778820037842,
+ "learning_rate": 0.0006,
+ "loss": 4.420592784881592,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.4220712184906006,
+ "learning_rate": 0.0006,
+ "loss": 4.396391868591309,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.4216805696487427,
+ "learning_rate": 0.0006,
+ "loss": 4.465494155883789,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.39985784888267517,
+ "learning_rate": 0.0006,
+ "loss": 4.425363540649414,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.3649823069572449,
+ "learning_rate": 0.0006,
+ "loss": 4.353935241699219,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.37190961837768555,
+ "learning_rate": 0.0006,
+ "loss": 4.369488716125488,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.3689049184322357,
+ "learning_rate": 0.0006,
+ "loss": 4.345516204833984,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.37125086784362793,
+ "learning_rate": 0.0006,
+ "loss": 4.45371150970459,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.37874776124954224,
+ "learning_rate": 0.0006,
+ "loss": 4.42258882522583,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.37361109256744385,
+ "learning_rate": 0.0006,
+ "loss": 4.393985748291016,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.3715338110923767,
+ "learning_rate": 0.0006,
+ "loss": 4.400383472442627,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.37065786123275757,
+ "learning_rate": 0.0006,
+ "loss": 4.404849052429199,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.37074118852615356,
+ "learning_rate": 0.0006,
+ "loss": 4.343298435211182,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.37071913480758667,
+ "learning_rate": 0.0006,
+ "loss": 4.423038482666016,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.3734203279018402,
+ "learning_rate": 0.0006,
+ "loss": 4.447600364685059,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.3662360906600952,
+ "learning_rate": 0.0006,
+ "loss": 4.420468330383301,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.36340466141700745,
+ "learning_rate": 0.0006,
+ "loss": 4.4208526611328125,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.36530470848083496,
+ "learning_rate": 0.0006,
+ "loss": 4.415825843811035,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.3806111216545105,
+ "learning_rate": 0.0006,
+ "loss": 4.437899589538574,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.3882310092449188,
+ "learning_rate": 0.0006,
+ "loss": 4.481082916259766,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.38961488008499146,
+ "learning_rate": 0.0006,
+ "loss": 4.403285026550293,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.3947104513645172,
+ "learning_rate": 0.0006,
+ "loss": 4.457721710205078,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.3729825019836426,
+ "learning_rate": 0.0006,
+ "loss": 4.425243377685547,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.36937031149864197,
+ "learning_rate": 0.0006,
+ "loss": 4.5000739097595215,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.35722941160202026,
+ "learning_rate": 0.0006,
+ "loss": 4.453850746154785,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.3721231520175934,
+ "learning_rate": 0.0006,
+ "loss": 4.377143859863281,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.3987407088279724,
+ "learning_rate": 0.0006,
+ "loss": 4.470792770385742,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.386233389377594,
+ "learning_rate": 0.0006,
+ "loss": 4.46428108215332,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.36830610036849976,
+ "learning_rate": 0.0006,
+ "loss": 4.470434188842773,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.3601131737232208,
+ "learning_rate": 0.0006,
+ "loss": 4.477059841156006,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.372490793466568,
+ "learning_rate": 0.0006,
+ "loss": 4.5787353515625,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.37806445360183716,
+ "learning_rate": 0.0006,
+ "loss": 4.4222211837768555,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.3531482517719269,
+ "learning_rate": 0.0006,
+ "loss": 4.382338047027588,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.35285475850105286,
+ "learning_rate": 0.0006,
+ "loss": 4.536506652832031,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.374388724565506,
+ "learning_rate": 0.0006,
+ "loss": 4.392180442810059,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.3808997571468353,
+ "learning_rate": 0.0006,
+ "loss": 4.461131572723389,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.3765960931777954,
+ "learning_rate": 0.0006,
+ "loss": 4.488598346710205,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.40631911158561707,
+ "learning_rate": 0.0006,
+ "loss": 4.481075286865234,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.41654083132743835,
+ "learning_rate": 0.0006,
+ "loss": 4.435528755187988,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.4136480391025543,
+ "learning_rate": 0.0006,
+ "loss": 4.412014007568359,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.3973941504955292,
+ "learning_rate": 0.0006,
+ "loss": 4.521568298339844,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.3933893144130707,
+ "learning_rate": 0.0006,
+ "loss": 4.506556034088135,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.3768777847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.431772232055664,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.3421437442302704,
+ "learning_rate": 0.0006,
+ "loss": 4.452234745025635,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.36480122804641724,
+ "learning_rate": 0.0006,
+ "loss": 4.416487216949463,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.35735464096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.584882736206055,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3376610279083252,
+ "learning_rate": 0.0006,
+ "loss": 4.512720584869385,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.3631819486618042,
+ "learning_rate": 0.0006,
+ "loss": 4.522831916809082,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.3494698107242584,
+ "learning_rate": 0.0006,
+ "loss": 4.414884090423584,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.35363155603408813,
+ "learning_rate": 0.0006,
+ "loss": 4.5463409423828125,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.35111331939697266,
+ "learning_rate": 0.0006,
+ "loss": 4.448951721191406,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.3703661262989044,
+ "learning_rate": 0.0006,
+ "loss": 4.5529680252075195,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.3520756959915161,
+ "learning_rate": 0.0006,
+ "loss": 4.368987083435059,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.35740381479263306,
+ "learning_rate": 0.0006,
+ "loss": 4.444482803344727,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.4059290587902069,
+ "learning_rate": 0.0006,
+ "loss": 4.515585899353027,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 6.050164699554443,
+ "eval_runtime": 43.8182,
+ "eval_samples_per_second": 55.73,
+ "eval_steps_per_second": 3.492,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.35771796107292175,
+ "learning_rate": 0.0006,
+ "loss": 4.301813125610352,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.40332671999931335,
+ "learning_rate": 0.0006,
+ "loss": 4.360955238342285,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.46813446283340454,
+ "learning_rate": 0.0006,
+ "loss": 4.38316011428833,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.507505476474762,
+ "learning_rate": 0.0006,
+ "loss": 4.374207496643066,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.5569645762443542,
+ "learning_rate": 0.0006,
+ "loss": 4.422743797302246,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.615269660949707,
+ "learning_rate": 0.0006,
+ "loss": 4.333048343658447,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.6419816613197327,
+ "learning_rate": 0.0006,
+ "loss": 4.416837692260742,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.6828307509422302,
+ "learning_rate": 0.0006,
+ "loss": 4.537117958068848,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.7655261158943176,
+ "learning_rate": 0.0006,
+ "loss": 4.399624824523926,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.7479486465454102,
+ "learning_rate": 0.0006,
+ "loss": 4.321059226989746,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.6468533277511597,
+ "learning_rate": 0.0006,
+ "loss": 4.3979902267456055,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.6511934399604797,
+ "learning_rate": 0.0006,
+ "loss": 4.4166998863220215,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.5896724462509155,
+ "learning_rate": 0.0006,
+ "loss": 4.362468242645264,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.5266854763031006,
+ "learning_rate": 0.0006,
+ "loss": 4.413194179534912,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.5279261469841003,
+ "learning_rate": 0.0006,
+ "loss": 4.418636322021484,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.44585999846458435,
+ "learning_rate": 0.0006,
+ "loss": 4.396679878234863,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.4403722286224365,
+ "learning_rate": 0.0006,
+ "loss": 4.358011245727539,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.43598002195358276,
+ "learning_rate": 0.0006,
+ "loss": 4.3168230056762695,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.4530533254146576,
+ "learning_rate": 0.0006,
+ "loss": 4.420524597167969,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.42248469591140747,
+ "learning_rate": 0.0006,
+ "loss": 4.437036037445068,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.4129302501678467,
+ "learning_rate": 0.0006,
+ "loss": 4.401163101196289,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.4065084755420685,
+ "learning_rate": 0.0006,
+ "loss": 4.387587547302246,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.39080071449279785,
+ "learning_rate": 0.0006,
+ "loss": 4.382462501525879,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.38765111565589905,
+ "learning_rate": 0.0006,
+ "loss": 4.468915939331055,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.37594327330589294,
+ "learning_rate": 0.0006,
+ "loss": 4.434645652770996,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.36347171664237976,
+ "learning_rate": 0.0006,
+ "loss": 4.3778815269470215,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.3849727213382721,
+ "learning_rate": 0.0006,
+ "loss": 4.581855773925781,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.3627156913280487,
+ "learning_rate": 0.0006,
+ "loss": 4.390300750732422,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.3697161376476288,
+ "learning_rate": 0.0006,
+ "loss": 4.36556339263916,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.3870200216770172,
+ "learning_rate": 0.0006,
+ "loss": 4.431047439575195,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.3788292109966278,
+ "learning_rate": 0.0006,
+ "loss": 4.357823371887207,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.4002898037433624,
+ "learning_rate": 0.0006,
+ "loss": 4.373149394989014,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.3831816017627716,
+ "learning_rate": 0.0006,
+ "loss": 4.466398239135742,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.3851330876350403,
+ "learning_rate": 0.0006,
+ "loss": 4.381778717041016,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.3597946763038635,
+ "learning_rate": 0.0006,
+ "loss": 4.399598121643066,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.4017202854156494,
+ "learning_rate": 0.0006,
+ "loss": 4.493282318115234,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.3808429539203644,
+ "learning_rate": 0.0006,
+ "loss": 4.494315147399902,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.38137903809547424,
+ "learning_rate": 0.0006,
+ "loss": 4.46751594543457,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.3846489489078522,
+ "learning_rate": 0.0006,
+ "loss": 4.500199794769287,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.3925791382789612,
+ "learning_rate": 0.0006,
+ "loss": 4.470220565795898,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.39188623428344727,
+ "learning_rate": 0.0006,
+ "loss": 4.585577011108398,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.4070899784564972,
+ "learning_rate": 0.0006,
+ "loss": 4.484718322753906,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.36127614974975586,
+ "learning_rate": 0.0006,
+ "loss": 4.338343620300293,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.3327208161354065,
+ "learning_rate": 0.0006,
+ "loss": 4.4112701416015625,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.35561731457710266,
+ "learning_rate": 0.0006,
+ "loss": 4.4732513427734375,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.36223331093788147,
+ "learning_rate": 0.0006,
+ "loss": 4.443561553955078,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.3331153988838196,
+ "learning_rate": 0.0006,
+ "loss": 4.371982574462891,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.3283083140850067,
+ "learning_rate": 0.0006,
+ "loss": 4.381229400634766,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.3390030562877655,
+ "learning_rate": 0.0006,
+ "loss": 4.424715995788574,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.3469902276992798,
+ "learning_rate": 0.0006,
+ "loss": 4.450153827667236,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.34429556131362915,
+ "learning_rate": 0.0006,
+ "loss": 4.510263442993164,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.3523925840854645,
+ "learning_rate": 0.0006,
+ "loss": 4.455308437347412,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.36440351605415344,
+ "learning_rate": 0.0006,
+ "loss": 4.464590549468994,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.35937783122062683,
+ "learning_rate": 0.0006,
+ "loss": 4.439001083374023,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.3599601686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.45351505279541,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.34224891662597656,
+ "learning_rate": 0.0006,
+ "loss": 4.573355197906494,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.3464285433292389,
+ "learning_rate": 0.0006,
+ "loss": 4.4812822341918945,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.3475101590156555,
+ "learning_rate": 0.0006,
+ "loss": 4.420902252197266,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.3340461552143097,
+ "learning_rate": 0.0006,
+ "loss": 4.3519816398620605,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.34345802664756775,
+ "learning_rate": 0.0006,
+ "loss": 4.435214996337891,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.3367236256599426,
+ "learning_rate": 0.0006,
+ "loss": 4.452141284942627,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.3512774109840393,
+ "learning_rate": 0.0006,
+ "loss": 4.428730010986328,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.355158269405365,
+ "learning_rate": 0.0006,
+ "loss": 4.432847023010254,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.3388429582118988,
+ "learning_rate": 0.0006,
+ "loss": 4.369837760925293,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.32442569732666016,
+ "learning_rate": 0.0006,
+ "loss": 4.448355674743652,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.3378674387931824,
+ "learning_rate": 0.0006,
+ "loss": 4.4517107009887695,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.3276962339878082,
+ "learning_rate": 0.0006,
+ "loss": 4.516361236572266,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.3349641263484955,
+ "learning_rate": 0.0006,
+ "loss": 4.443840026855469,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.3214022219181061,
+ "learning_rate": 0.0006,
+ "loss": 4.444334030151367,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.3366580307483673,
+ "learning_rate": 0.0006,
+ "loss": 4.5375261306762695,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.3439915180206299,
+ "learning_rate": 0.0006,
+ "loss": 4.413857936859131,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.40173009037971497,
+ "learning_rate": 0.0006,
+ "loss": 4.369746685028076,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 6.086186408996582,
+ "eval_runtime": 43.8752,
+ "eval_samples_per_second": 55.658,
+ "eval_steps_per_second": 3.487,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.38245317339897156,
+ "learning_rate": 0.0006,
+ "loss": 4.299053192138672,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.43212321400642395,
+ "learning_rate": 0.0006,
+ "loss": 4.330706596374512,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.44602957367897034,
+ "learning_rate": 0.0006,
+ "loss": 4.341794967651367,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.45735234022140503,
+ "learning_rate": 0.0006,
+ "loss": 4.414517402648926,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.4408721327781677,
+ "learning_rate": 0.0006,
+ "loss": 4.4163408279418945,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.4459008276462555,
+ "learning_rate": 0.0006,
+ "loss": 4.363755226135254,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.4418315589427948,
+ "learning_rate": 0.0006,
+ "loss": 4.415468215942383,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.4763852059841156,
+ "learning_rate": 0.0006,
+ "loss": 4.406156539916992,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.6339309215545654,
+ "learning_rate": 0.0006,
+ "loss": 4.375487327575684,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.8202705979347229,
+ "learning_rate": 0.0006,
+ "loss": 4.436740875244141,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.9396615028381348,
+ "learning_rate": 0.0006,
+ "loss": 4.368621349334717,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.9883325695991516,
+ "learning_rate": 0.0006,
+ "loss": 4.441226482391357,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.8591291308403015,
+ "learning_rate": 0.0006,
+ "loss": 4.405136585235596,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.7043272256851196,
+ "learning_rate": 0.0006,
+ "loss": 4.434637546539307,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.6578401923179626,
+ "learning_rate": 0.0006,
+ "loss": 4.403204917907715,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.6545839309692383,
+ "learning_rate": 0.0006,
+ "loss": 4.412930488586426,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.565765917301178,
+ "learning_rate": 0.0006,
+ "loss": 4.323338985443115,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.5190567970275879,
+ "learning_rate": 0.0006,
+ "loss": 4.427402019500732,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.5191048383712769,
+ "learning_rate": 0.0006,
+ "loss": 4.340369701385498,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.4873320162296295,
+ "learning_rate": 0.0006,
+ "loss": 4.281628608703613,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.46453067660331726,
+ "learning_rate": 0.0006,
+ "loss": 4.37819766998291,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.4455416798591614,
+ "learning_rate": 0.0006,
+ "loss": 4.394742965698242,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.439604252576828,
+ "learning_rate": 0.0006,
+ "loss": 4.390010356903076,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.4258780777454376,
+ "learning_rate": 0.0006,
+ "loss": 4.361170291900635,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.4123433530330658,
+ "learning_rate": 0.0006,
+ "loss": 4.339145660400391,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.39588114619255066,
+ "learning_rate": 0.0006,
+ "loss": 4.373623371124268,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.37702375650405884,
+ "learning_rate": 0.0006,
+ "loss": 4.390480995178223,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.4018733501434326,
+ "learning_rate": 0.0006,
+ "loss": 4.430567741394043,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.4081452190876007,
+ "learning_rate": 0.0006,
+ "loss": 4.378662109375,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.40314799547195435,
+ "learning_rate": 0.0006,
+ "loss": 4.507838249206543,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.38464534282684326,
+ "learning_rate": 0.0006,
+ "loss": 4.385561943054199,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.3863300383090973,
+ "learning_rate": 0.0006,
+ "loss": 4.397193908691406,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.3835234045982361,
+ "learning_rate": 0.0006,
+ "loss": 4.378633499145508,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.352247029542923,
+ "learning_rate": 0.0006,
+ "loss": 4.303338050842285,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.3616277873516083,
+ "learning_rate": 0.0006,
+ "loss": 4.310194969177246,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.365900456905365,
+ "learning_rate": 0.0006,
+ "loss": 4.353884696960449,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.36707863211631775,
+ "learning_rate": 0.0006,
+ "loss": 4.421991348266602,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.3546100854873657,
+ "learning_rate": 0.0006,
+ "loss": 4.400345802307129,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.3488907516002655,
+ "learning_rate": 0.0006,
+ "loss": 4.456745147705078,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.36204683780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.404692649841309,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.3447822630405426,
+ "learning_rate": 0.0006,
+ "loss": 4.412806510925293,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.3683006763458252,
+ "learning_rate": 0.0006,
+ "loss": 4.412301063537598,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.3449929356575012,
+ "learning_rate": 0.0006,
+ "loss": 4.450092315673828,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.3572375178337097,
+ "learning_rate": 0.0006,
+ "loss": 4.420159339904785,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.38059812784194946,
+ "learning_rate": 0.0006,
+ "loss": 4.490204811096191,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.3573983609676361,
+ "learning_rate": 0.0006,
+ "loss": 4.478780269622803,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.3336041271686554,
+ "learning_rate": 0.0006,
+ "loss": 4.390864372253418,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.3697162866592407,
+ "learning_rate": 0.0006,
+ "loss": 4.398273468017578,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.3573780357837677,
+ "learning_rate": 0.0006,
+ "loss": 4.364694118499756,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.34966012835502625,
+ "learning_rate": 0.0006,
+ "loss": 4.452040672302246,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.3551003634929657,
+ "learning_rate": 0.0006,
+ "loss": 4.4469099044799805,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.3608260154724121,
+ "learning_rate": 0.0006,
+ "loss": 4.392778396606445,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.35079050064086914,
+ "learning_rate": 0.0006,
+ "loss": 4.386116027832031,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.374968558549881,
+ "learning_rate": 0.0006,
+ "loss": 4.462519645690918,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.3675695061683655,
+ "learning_rate": 0.0006,
+ "loss": 4.474714756011963,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.35269397497177124,
+ "learning_rate": 0.0006,
+ "loss": 4.40271520614624,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.36085471510887146,
+ "learning_rate": 0.0006,
+ "loss": 4.466996192932129,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.35736560821533203,
+ "learning_rate": 0.0006,
+ "loss": 4.360330581665039,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.37928277254104614,
+ "learning_rate": 0.0006,
+ "loss": 4.519956588745117,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.3631852865219116,
+ "learning_rate": 0.0006,
+ "loss": 4.505251884460449,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.3702476918697357,
+ "learning_rate": 0.0006,
+ "loss": 4.489693641662598,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.35891976952552795,
+ "learning_rate": 0.0006,
+ "loss": 4.440847396850586,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.358114629983902,
+ "learning_rate": 0.0006,
+ "loss": 4.385695457458496,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.3418334424495697,
+ "learning_rate": 0.0006,
+ "loss": 4.463915824890137,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.34228792786598206,
+ "learning_rate": 0.0006,
+ "loss": 4.457302093505859,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.3559451997280121,
+ "learning_rate": 0.0006,
+ "loss": 4.490300178527832,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.3406083881855011,
+ "learning_rate": 0.0006,
+ "loss": 4.396295547485352,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.3264327049255371,
+ "learning_rate": 0.0006,
+ "loss": 4.45979118347168,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.3357771337032318,
+ "learning_rate": 0.0006,
+ "loss": 4.4291887283325195,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.3448813259601593,
+ "learning_rate": 0.0006,
+ "loss": 4.400168418884277,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.36362844705581665,
+ "learning_rate": 0.0006,
+ "loss": 4.519902229309082,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.40646156668663025,
+ "learning_rate": 0.0006,
+ "loss": 4.487122535705566,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 6.139466762542725,
+ "eval_runtime": 44.1138,
+ "eval_samples_per_second": 55.357,
+ "eval_steps_per_second": 3.468,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.3563331663608551,
+ "learning_rate": 0.0006,
+ "loss": 4.328133583068848,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.4387088418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.388730049133301,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.4324904978275299,
+ "learning_rate": 0.0006,
+ "loss": 4.319937705993652,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.3969995379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.348919868469238,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.41444316506385803,
+ "learning_rate": 0.0006,
+ "loss": 4.320723533630371,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.4292107820510864,
+ "learning_rate": 0.0006,
+ "loss": 4.380110740661621,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.42512136697769165,
+ "learning_rate": 0.0006,
+ "loss": 4.38393497467041,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.4951581656932831,
+ "learning_rate": 0.0006,
+ "loss": 4.36334228515625,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.5567541718482971,
+ "learning_rate": 0.0006,
+ "loss": 4.333499908447266,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.5966919660568237,
+ "learning_rate": 0.0006,
+ "loss": 4.374789237976074,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.6186896562576294,
+ "learning_rate": 0.0006,
+ "loss": 4.385105609893799,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.59421306848526,
+ "learning_rate": 0.0006,
+ "loss": 4.3138532638549805,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.5089704394340515,
+ "learning_rate": 0.0006,
+ "loss": 4.432981491088867,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.4902808368206024,
+ "learning_rate": 0.0006,
+ "loss": 4.393428325653076,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.4565696716308594,
+ "learning_rate": 0.0006,
+ "loss": 4.295050621032715,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.42537644505500793,
+ "learning_rate": 0.0006,
+ "loss": 4.3601908683776855,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.43424853682518005,
+ "learning_rate": 0.0006,
+ "loss": 4.375512599945068,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.44025975465774536,
+ "learning_rate": 0.0006,
+ "loss": 4.339735984802246,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.43128249049186707,
+ "learning_rate": 0.0006,
+ "loss": 4.502779483795166,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.43828925490379333,
+ "learning_rate": 0.0006,
+ "loss": 4.327267646789551,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.4280127286911011,
+ "learning_rate": 0.0006,
+ "loss": 4.442357063293457,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.42501839995384216,
+ "learning_rate": 0.0006,
+ "loss": 4.3521528244018555,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.40918034315109253,
+ "learning_rate": 0.0006,
+ "loss": 4.32548713684082,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.3973439037799835,
+ "learning_rate": 0.0006,
+ "loss": 4.317666053771973,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.4059169590473175,
+ "learning_rate": 0.0006,
+ "loss": 4.306331634521484,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.40877652168273926,
+ "learning_rate": 0.0006,
+ "loss": 4.4500041007995605,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.3708176612854004,
+ "learning_rate": 0.0006,
+ "loss": 4.317200183868408,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.3914033770561218,
+ "learning_rate": 0.0006,
+ "loss": 4.334835052490234,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.391461044549942,
+ "learning_rate": 0.0006,
+ "loss": 4.354623317718506,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.42077040672302246,
+ "learning_rate": 0.0006,
+ "loss": 4.449740409851074,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.44365620613098145,
+ "learning_rate": 0.0006,
+ "loss": 4.41463565826416,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.4146276116371155,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.3821662664413452,
+ "learning_rate": 0.0006,
+ "loss": 4.3601531982421875,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.3681902587413788,
+ "learning_rate": 0.0006,
+ "loss": 4.348063945770264,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.38770776987075806,
+ "learning_rate": 0.0006,
+ "loss": 4.341071128845215,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.40111610293388367,
+ "learning_rate": 0.0006,
+ "loss": 4.441782474517822,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.39545953273773193,
+ "learning_rate": 0.0006,
+ "loss": 4.437163352966309,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.40249213576316833,
+ "learning_rate": 0.0006,
+ "loss": 4.428383827209473,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.40735718607902527,
+ "learning_rate": 0.0006,
+ "loss": 4.3796820640563965,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.37912920117378235,
+ "learning_rate": 0.0006,
+ "loss": 4.493289947509766,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.36147844791412354,
+ "learning_rate": 0.0006,
+ "loss": 4.291683197021484,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.40388068556785583,
+ "learning_rate": 0.0006,
+ "loss": 4.454119682312012,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.3967590630054474,
+ "learning_rate": 0.0006,
+ "loss": 4.384385108947754,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.3685106337070465,
+ "learning_rate": 0.0006,
+ "loss": 4.445840835571289,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.36845797300338745,
+ "learning_rate": 0.0006,
+ "loss": 4.346038818359375,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.3790728747844696,
+ "learning_rate": 0.0006,
+ "loss": 4.42084264755249,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.3729080557823181,
+ "learning_rate": 0.0006,
+ "loss": 4.363055229187012,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.37578439712524414,
+ "learning_rate": 0.0006,
+ "loss": 4.354137420654297,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.35820019245147705,
+ "learning_rate": 0.0006,
+ "loss": 4.476889610290527,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.3508419096469879,
+ "learning_rate": 0.0006,
+ "loss": 4.330228805541992,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.37704533338546753,
+ "learning_rate": 0.0006,
+ "loss": 4.402864933013916,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.37747466564178467,
+ "learning_rate": 0.0006,
+ "loss": 4.4176764488220215,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.3841301500797272,
+ "learning_rate": 0.0006,
+ "loss": 4.450597763061523,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.39078447222709656,
+ "learning_rate": 0.0006,
+ "loss": 4.434445381164551,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.37561744451522827,
+ "learning_rate": 0.0006,
+ "loss": 4.4231061935424805,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.3962526023387909,
+ "learning_rate": 0.0006,
+ "loss": 4.459231853485107,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.3923233449459076,
+ "learning_rate": 0.0006,
+ "loss": 4.409456253051758,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.38914746046066284,
+ "learning_rate": 0.0006,
+ "loss": 4.476226806640625,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.38080915808677673,
+ "learning_rate": 0.0006,
+ "loss": 4.379795551300049,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.40428125858306885,
+ "learning_rate": 0.0006,
+ "loss": 4.429141044616699,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.38432836532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.40167760848999,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.36916297674179077,
+ "learning_rate": 0.0006,
+ "loss": 4.382322788238525,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.3448847234249115,
+ "learning_rate": 0.0006,
+ "loss": 4.463572025299072,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.3635480999946594,
+ "learning_rate": 0.0006,
+ "loss": 4.471230506896973,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.3658510446548462,
+ "learning_rate": 0.0006,
+ "loss": 4.4517436027526855,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.36554548144340515,
+ "learning_rate": 0.0006,
+ "loss": 4.460488319396973,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.34836408495903015,
+ "learning_rate": 0.0006,
+ "loss": 4.394038200378418,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.3535001873970032,
+ "learning_rate": 0.0006,
+ "loss": 4.574051856994629,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.36046063899993896,
+ "learning_rate": 0.0006,
+ "loss": 4.464230537414551,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.35910242795944214,
+ "learning_rate": 0.0006,
+ "loss": 4.431210994720459,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.34702202677726746,
+ "learning_rate": 0.0006,
+ "loss": 4.4352264404296875,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.4115723967552185,
+ "learning_rate": 0.0006,
+ "loss": 4.355191707611084,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 6.10045862197876,
+ "eval_runtime": 43.881,
+ "eval_samples_per_second": 55.651,
+ "eval_steps_per_second": 3.487,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.3880091607570648,
+ "learning_rate": 0.0006,
+ "loss": 4.2891340255737305,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.46462568640708923,
+ "learning_rate": 0.0006,
+ "loss": 4.368136882781982,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.46417036652565,
+ "learning_rate": 0.0006,
+ "loss": 4.290570259094238,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.42546287178993225,
+ "learning_rate": 0.0006,
+ "loss": 4.275969505310059,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.42158621549606323,
+ "learning_rate": 0.0006,
+ "loss": 4.3133697509765625,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.41421398520469666,
+ "learning_rate": 0.0006,
+ "loss": 4.318943977355957,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.4261677861213684,
+ "learning_rate": 0.0006,
+ "loss": 4.386415481567383,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.4547804594039917,
+ "learning_rate": 0.0006,
+ "loss": 4.200797080993652,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.5152761340141296,
+ "learning_rate": 0.0006,
+ "loss": 4.392667770385742,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.6397215127944946,
+ "learning_rate": 0.0006,
+ "loss": 4.365647315979004,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.867751955986023,
+ "learning_rate": 0.0006,
+ "loss": 4.404231071472168,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 1.113226056098938,
+ "learning_rate": 0.0006,
+ "loss": 4.4237775802612305,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.9725164771080017,
+ "learning_rate": 0.0006,
+ "loss": 4.353878021240234,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.8986128568649292,
+ "learning_rate": 0.0006,
+ "loss": 4.404200553894043,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.644611656665802,
+ "learning_rate": 0.0006,
+ "loss": 4.314446449279785,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.5430455803871155,
+ "learning_rate": 0.0006,
+ "loss": 4.404072284698486,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.5315895080566406,
+ "learning_rate": 0.0006,
+ "loss": 4.339350700378418,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.4984396696090698,
+ "learning_rate": 0.0006,
+ "loss": 4.418368339538574,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.4928722679615021,
+ "learning_rate": 0.0006,
+ "loss": 4.351061820983887,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.4810708463191986,
+ "learning_rate": 0.0006,
+ "loss": 4.32480525970459,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.4846661388874054,
+ "learning_rate": 0.0006,
+ "loss": 4.410396099090576,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.45098942518234253,
+ "learning_rate": 0.0006,
+ "loss": 4.434419631958008,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.4603881239891052,
+ "learning_rate": 0.0006,
+ "loss": 4.374553680419922,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.47921186685562134,
+ "learning_rate": 0.0006,
+ "loss": 4.43428373336792,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.458781361579895,
+ "learning_rate": 0.0006,
+ "loss": 4.345955848693848,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.43630266189575195,
+ "learning_rate": 0.0006,
+ "loss": 4.396679401397705,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.4061865210533142,
+ "learning_rate": 0.0006,
+ "loss": 4.3547186851501465,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.3998570740222931,
+ "learning_rate": 0.0006,
+ "loss": 4.42930793762207,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.43052756786346436,
+ "learning_rate": 0.0006,
+ "loss": 4.483987808227539,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.40878528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.4177021980285645,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.41628801822662354,
+ "learning_rate": 0.0006,
+ "loss": 4.383821487426758,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.39991578459739685,
+ "learning_rate": 0.0006,
+ "loss": 4.403266429901123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.3781890571117401,
+ "learning_rate": 0.0006,
+ "loss": 4.361995220184326,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.38037991523742676,
+ "learning_rate": 0.0006,
+ "loss": 4.520498275756836,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.3687450587749481,
+ "learning_rate": 0.0006,
+ "loss": 4.34592342376709,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.3800104558467865,
+ "learning_rate": 0.0006,
+ "loss": 4.395520210266113,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.38416075706481934,
+ "learning_rate": 0.0006,
+ "loss": 4.432024002075195,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.38714301586151123,
+ "learning_rate": 0.0006,
+ "loss": 4.371710300445557,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.3560386002063751,
+ "learning_rate": 0.0006,
+ "loss": 4.389065265655518,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.3583020269870758,
+ "learning_rate": 0.0006,
+ "loss": 4.294467926025391,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.3507572412490845,
+ "learning_rate": 0.0006,
+ "loss": 4.335668563842773,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.3481273353099823,
+ "learning_rate": 0.0006,
+ "loss": 4.355007171630859,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.3648652732372284,
+ "learning_rate": 0.0006,
+ "loss": 4.458398818969727,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.3315402865409851,
+ "learning_rate": 0.0006,
+ "loss": 4.415014266967773,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.34356269240379333,
+ "learning_rate": 0.0006,
+ "loss": 4.3891496658325195,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.3475818932056427,
+ "learning_rate": 0.0006,
+ "loss": 4.403259754180908,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.3756524622440338,
+ "learning_rate": 0.0006,
+ "loss": 4.396340370178223,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.38063693046569824,
+ "learning_rate": 0.0006,
+ "loss": 4.390671253204346,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.3574332594871521,
+ "learning_rate": 0.0006,
+ "loss": 4.342291831970215,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.35717374086380005,
+ "learning_rate": 0.0006,
+ "loss": 4.389538764953613,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.34184643626213074,
+ "learning_rate": 0.0006,
+ "loss": 4.407958030700684,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.3665345013141632,
+ "learning_rate": 0.0006,
+ "loss": 4.407729148864746,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.3752829432487488,
+ "learning_rate": 0.0006,
+ "loss": 4.406526565551758,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.3690424859523773,
+ "learning_rate": 0.0006,
+ "loss": 4.444920063018799,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.35570403933525085,
+ "learning_rate": 0.0006,
+ "loss": 4.41465950012207,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.3422539532184601,
+ "learning_rate": 0.0006,
+ "loss": 4.341947078704834,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.34019631147384644,
+ "learning_rate": 0.0006,
+ "loss": 4.383486747741699,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.35433074831962585,
+ "learning_rate": 0.0006,
+ "loss": 4.43992280960083,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.3690914809703827,
+ "learning_rate": 0.0006,
+ "loss": 4.396021842956543,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.35793814063072205,
+ "learning_rate": 0.0006,
+ "loss": 4.389019012451172,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.34700852632522583,
+ "learning_rate": 0.0006,
+ "loss": 4.476073265075684,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.3613256514072418,
+ "learning_rate": 0.0006,
+ "loss": 4.43828010559082,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.3444153070449829,
+ "learning_rate": 0.0006,
+ "loss": 4.470188140869141,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.3383917510509491,
+ "learning_rate": 0.0006,
+ "loss": 4.381032943725586,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.3648519217967987,
+ "learning_rate": 0.0006,
+ "loss": 4.399723052978516,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.34983959794044495,
+ "learning_rate": 0.0006,
+ "loss": 4.43270206451416,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.33937394618988037,
+ "learning_rate": 0.0006,
+ "loss": 4.4052228927612305,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.34935757517814636,
+ "learning_rate": 0.0006,
+ "loss": 4.38171911239624,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.3566495180130005,
+ "learning_rate": 0.0006,
+ "loss": 4.495579242706299,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.3702648878097534,
+ "learning_rate": 0.0006,
+ "loss": 4.452796936035156,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.3714422583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.404526710510254,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.42734357714653015,
+ "learning_rate": 0.0006,
+ "loss": 4.511031150817871,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 6.156860828399658,
+ "eval_runtime": 44.07,
+ "eval_samples_per_second": 55.412,
+ "eval_steps_per_second": 3.472,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.381186306476593,
+ "learning_rate": 0.0006,
+ "loss": 4.39985466003418,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.4057665169239044,
+ "learning_rate": 0.0006,
+ "loss": 4.338055610656738,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.4002494513988495,
+ "learning_rate": 0.0006,
+ "loss": 4.331958770751953,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.4294043183326721,
+ "learning_rate": 0.0006,
+ "loss": 4.339388370513916,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.45085105299949646,
+ "learning_rate": 0.0006,
+ "loss": 4.334287643432617,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.5061688423156738,
+ "learning_rate": 0.0006,
+ "loss": 4.2327470779418945,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.5022581219673157,
+ "learning_rate": 0.0006,
+ "loss": 4.291156768798828,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.5529219508171082,
+ "learning_rate": 0.0006,
+ "loss": 4.4021406173706055,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.5945294499397278,
+ "learning_rate": 0.0006,
+ "loss": 4.3400092124938965,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.5755016803741455,
+ "learning_rate": 0.0006,
+ "loss": 4.2676286697387695,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.5352432131767273,
+ "learning_rate": 0.0006,
+ "loss": 4.322068214416504,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.5563830137252808,
+ "learning_rate": 0.0006,
+ "loss": 4.401552200317383,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.5542744994163513,
+ "learning_rate": 0.0006,
+ "loss": 4.361536026000977,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.5109394788742065,
+ "learning_rate": 0.0006,
+ "loss": 4.333110809326172,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.48128604888916016,
+ "learning_rate": 0.0006,
+ "loss": 4.311734199523926,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.48069921135902405,
+ "learning_rate": 0.0006,
+ "loss": 4.400852203369141,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.45155879855155945,
+ "learning_rate": 0.0006,
+ "loss": 4.257515907287598,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.44431430101394653,
+ "learning_rate": 0.0006,
+ "loss": 4.397309303283691,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.43975624442100525,
+ "learning_rate": 0.0006,
+ "loss": 4.392481803894043,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.43021512031555176,
+ "learning_rate": 0.0006,
+ "loss": 4.323525428771973,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.4590098559856415,
+ "learning_rate": 0.0006,
+ "loss": 4.334511756896973,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.42400652170181274,
+ "learning_rate": 0.0006,
+ "loss": 4.33546257019043,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.41162917017936707,
+ "learning_rate": 0.0006,
+ "loss": 4.348457336425781,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.44991976022720337,
+ "learning_rate": 0.0006,
+ "loss": 4.3486785888671875,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.41424447298049927,
+ "learning_rate": 0.0006,
+ "loss": 4.396841049194336,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.4157496690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.386002540588379,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.43610864877700806,
+ "learning_rate": 0.0006,
+ "loss": 4.355074882507324,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.43452468514442444,
+ "learning_rate": 0.0006,
+ "loss": 4.327574729919434,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.42757663130760193,
+ "learning_rate": 0.0006,
+ "loss": 4.289640426635742,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.38811302185058594,
+ "learning_rate": 0.0006,
+ "loss": 4.297506809234619,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.3866890072822571,
+ "learning_rate": 0.0006,
+ "loss": 4.4301838874816895,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.43073758482933044,
+ "learning_rate": 0.0006,
+ "loss": 4.365545749664307,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.4058871865272522,
+ "learning_rate": 0.0006,
+ "loss": 4.294832229614258,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.41439321637153625,
+ "learning_rate": 0.0006,
+ "loss": 4.374986171722412,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.39280998706817627,
+ "learning_rate": 0.0006,
+ "loss": 4.472156524658203,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.380862832069397,
+ "learning_rate": 0.0006,
+ "loss": 4.3376359939575195,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.3880598843097687,
+ "learning_rate": 0.0006,
+ "loss": 4.399764537811279,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.4056805372238159,
+ "learning_rate": 0.0006,
+ "loss": 4.3839263916015625,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.43928271532058716,
+ "learning_rate": 0.0006,
+ "loss": 4.387872695922852,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.4157223701477051,
+ "learning_rate": 0.0006,
+ "loss": 4.491827011108398,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.38938942551612854,
+ "learning_rate": 0.0006,
+ "loss": 4.369803428649902,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.39400580525398254,
+ "learning_rate": 0.0006,
+ "loss": 4.4603800773620605,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.3747307062149048,
+ "learning_rate": 0.0006,
+ "loss": 4.366776466369629,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.4072708785533905,
+ "learning_rate": 0.0006,
+ "loss": 4.3782854080200195,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.4091123342514038,
+ "learning_rate": 0.0006,
+ "loss": 4.4356689453125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.40395987033843994,
+ "learning_rate": 0.0006,
+ "loss": 4.413468360900879,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.39857032895088196,
+ "learning_rate": 0.0006,
+ "loss": 4.450807571411133,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.4158494174480438,
+ "learning_rate": 0.0006,
+ "loss": 4.381142616271973,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.4082915484905243,
+ "learning_rate": 0.0006,
+ "loss": 4.496438980102539,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.37405046820640564,
+ "learning_rate": 0.0006,
+ "loss": 4.345484256744385,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.359416127204895,
+ "learning_rate": 0.0006,
+ "loss": 4.26982307434082,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.3519706726074219,
+ "learning_rate": 0.0006,
+ "loss": 4.397839546203613,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.3789094388484955,
+ "learning_rate": 0.0006,
+ "loss": 4.415822982788086,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.3676875829696655,
+ "learning_rate": 0.0006,
+ "loss": 4.396381855010986,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.3599476218223572,
+ "learning_rate": 0.0006,
+ "loss": 4.4171977043151855,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.3843400180339813,
+ "learning_rate": 0.0006,
+ "loss": 4.47220516204834,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.3702511191368103,
+ "learning_rate": 0.0006,
+ "loss": 4.500491619110107,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.3719273805618286,
+ "learning_rate": 0.0006,
+ "loss": 4.352668762207031,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.3619741201400757,
+ "learning_rate": 0.0006,
+ "loss": 4.3586931228637695,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.3766055703163147,
+ "learning_rate": 0.0006,
+ "loss": 4.408159255981445,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.3580402433872223,
+ "learning_rate": 0.0006,
+ "loss": 4.355810165405273,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.3602997958660126,
+ "learning_rate": 0.0006,
+ "loss": 4.357786178588867,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.35930490493774414,
+ "learning_rate": 0.0006,
+ "loss": 4.353297233581543,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.3693123161792755,
+ "learning_rate": 0.0006,
+ "loss": 4.391401290893555,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.36045047640800476,
+ "learning_rate": 0.0006,
+ "loss": 4.447843551635742,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.38618308305740356,
+ "learning_rate": 0.0006,
+ "loss": 4.465207099914551,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.38916000723838806,
+ "learning_rate": 0.0006,
+ "loss": 4.4063239097595215,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.3937848210334778,
+ "learning_rate": 0.0006,
+ "loss": 4.438618183135986,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.3975565731525421,
+ "learning_rate": 0.0006,
+ "loss": 4.376347541809082,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.383375883102417,
+ "learning_rate": 0.0006,
+ "loss": 4.376345634460449,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.38982275128364563,
+ "learning_rate": 0.0006,
+ "loss": 4.477313041687012,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.44567444920539856,
+ "learning_rate": 0.0006,
+ "loss": 4.4622087478637695,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 6.127683162689209,
+ "eval_runtime": 43.8712,
+ "eval_samples_per_second": 55.663,
+ "eval_steps_per_second": 3.487,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.38945627212524414,
+ "learning_rate": 0.0006,
+ "loss": 4.225332736968994,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.48500800132751465,
+ "learning_rate": 0.0006,
+ "loss": 4.303142547607422,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.4945746660232544,
+ "learning_rate": 0.0006,
+ "loss": 4.252800464630127,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.4860735237598419,
+ "learning_rate": 0.0006,
+ "loss": 4.3632307052612305,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.5717944502830505,
+ "learning_rate": 0.0006,
+ "loss": 4.2910966873168945,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.6825600862503052,
+ "learning_rate": 0.0006,
+ "loss": 4.446534633636475,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.7507191300392151,
+ "learning_rate": 0.0006,
+ "loss": 4.3218584060668945,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.8143581748008728,
+ "learning_rate": 0.0006,
+ "loss": 4.291619777679443,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.8164665699005127,
+ "learning_rate": 0.0006,
+ "loss": 4.314390182495117,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.8027179837226868,
+ "learning_rate": 0.0006,
+ "loss": 4.347686767578125,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.7046833038330078,
+ "learning_rate": 0.0006,
+ "loss": 4.382390975952148,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.6704773902893066,
+ "learning_rate": 0.0006,
+ "loss": 4.368736267089844,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.5986452698707581,
+ "learning_rate": 0.0006,
+ "loss": 4.3586106300354,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.5452585816383362,
+ "learning_rate": 0.0006,
+ "loss": 4.215537071228027,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.5050400495529175,
+ "learning_rate": 0.0006,
+ "loss": 4.345709800720215,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.4811224639415741,
+ "learning_rate": 0.0006,
+ "loss": 4.229983329772949,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.47257834672927856,
+ "learning_rate": 0.0006,
+ "loss": 4.401679039001465,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.46806448698043823,
+ "learning_rate": 0.0006,
+ "loss": 4.345294952392578,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.47019970417022705,
+ "learning_rate": 0.0006,
+ "loss": 4.3366899490356445,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.4618140459060669,
+ "learning_rate": 0.0006,
+ "loss": 4.423093795776367,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.45103076100349426,
+ "learning_rate": 0.0006,
+ "loss": 4.429213523864746,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.42674535512924194,
+ "learning_rate": 0.0006,
+ "loss": 4.355292320251465,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.4282950162887573,
+ "learning_rate": 0.0006,
+ "loss": 4.307826995849609,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.4120710790157318,
+ "learning_rate": 0.0006,
+ "loss": 4.322912216186523,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.4138009548187256,
+ "learning_rate": 0.0006,
+ "loss": 4.328085899353027,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.41546961665153503,
+ "learning_rate": 0.0006,
+ "loss": 4.4070940017700195,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.44050562381744385,
+ "learning_rate": 0.0006,
+ "loss": 4.419538497924805,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.41043856739997864,
+ "learning_rate": 0.0006,
+ "loss": 4.404756546020508,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.42796140909194946,
+ "learning_rate": 0.0006,
+ "loss": 4.3040008544921875,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.38510003685951233,
+ "learning_rate": 0.0006,
+ "loss": 4.353320598602295,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.3788503110408783,
+ "learning_rate": 0.0006,
+ "loss": 4.300704479217529,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.3905165493488312,
+ "learning_rate": 0.0006,
+ "loss": 4.343006610870361,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.3838869333267212,
+ "learning_rate": 0.0006,
+ "loss": 4.308780670166016,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.38746532797813416,
+ "learning_rate": 0.0006,
+ "loss": 4.335064888000488,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.37491124868392944,
+ "learning_rate": 0.0006,
+ "loss": 4.32066535949707,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.36987295746803284,
+ "learning_rate": 0.0006,
+ "loss": 4.317310333251953,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.38870200514793396,
+ "learning_rate": 0.0006,
+ "loss": 4.354729652404785,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.37225764989852905,
+ "learning_rate": 0.0006,
+ "loss": 4.29198694229126,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.3612116873264313,
+ "learning_rate": 0.0006,
+ "loss": 4.3979315757751465,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.40117356181144714,
+ "learning_rate": 0.0006,
+ "loss": 4.429460048675537,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.3933751881122589,
+ "learning_rate": 0.0006,
+ "loss": 4.348066329956055,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.38921254873275757,
+ "learning_rate": 0.0006,
+ "loss": 4.405765056610107,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.3987453579902649,
+ "learning_rate": 0.0006,
+ "loss": 4.350672721862793,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.43417951464653015,
+ "learning_rate": 0.0006,
+ "loss": 4.463413238525391,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.41297927498817444,
+ "learning_rate": 0.0006,
+ "loss": 4.309045791625977,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.38461950421333313,
+ "learning_rate": 0.0006,
+ "loss": 4.318929672241211,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.3841524124145508,
+ "learning_rate": 0.0006,
+ "loss": 4.379926681518555,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.39013510942459106,
+ "learning_rate": 0.0006,
+ "loss": 4.3409342765808105,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.3847009539604187,
+ "learning_rate": 0.0006,
+ "loss": 4.467362880706787,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.3979317247867584,
+ "learning_rate": 0.0006,
+ "loss": 4.333352088928223,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.4019637107849121,
+ "learning_rate": 0.0006,
+ "loss": 4.32415246963501,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.38000333309173584,
+ "learning_rate": 0.0006,
+ "loss": 4.318780899047852,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.3957592248916626,
+ "learning_rate": 0.0006,
+ "loss": 4.301888942718506,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.380258709192276,
+ "learning_rate": 0.0006,
+ "loss": 4.362771987915039,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.37715500593185425,
+ "learning_rate": 0.0006,
+ "loss": 4.455068588256836,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.37162303924560547,
+ "learning_rate": 0.0006,
+ "loss": 4.453987121582031,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.36303192377090454,
+ "learning_rate": 0.0006,
+ "loss": 4.400303363800049,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.34762880206108093,
+ "learning_rate": 0.0006,
+ "loss": 4.3961381912231445,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.34881117939949036,
+ "learning_rate": 0.0006,
+ "loss": 4.419530868530273,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.36440593004226685,
+ "learning_rate": 0.0006,
+ "loss": 4.4832868576049805,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.3671160638332367,
+ "learning_rate": 0.0006,
+ "loss": 4.389676094055176,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.3860883116722107,
+ "learning_rate": 0.0006,
+ "loss": 4.383245468139648,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.38325265049934387,
+ "learning_rate": 0.0006,
+ "loss": 4.3348388671875,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.3778875470161438,
+ "learning_rate": 0.0006,
+ "loss": 4.362031936645508,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.3768773674964905,
+ "learning_rate": 0.0006,
+ "loss": 4.33457088470459,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.39139771461486816,
+ "learning_rate": 0.0006,
+ "loss": 4.455694198608398,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.38553205132484436,
+ "learning_rate": 0.0006,
+ "loss": 4.347469329833984,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.3916657567024231,
+ "learning_rate": 0.0006,
+ "loss": 4.394040107727051,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.3568893373012543,
+ "learning_rate": 0.0006,
+ "loss": 4.3976874351501465,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.3758280277252197,
+ "learning_rate": 0.0006,
+ "loss": 4.401939392089844,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.3833237588405609,
+ "learning_rate": 0.0006,
+ "loss": 4.339327812194824,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.4451141357421875,
+ "learning_rate": 0.0006,
+ "loss": 4.452360153198242,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 6.193995952606201,
+ "eval_runtime": 43.9228,
+ "eval_samples_per_second": 55.598,
+ "eval_steps_per_second": 3.483,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.4081752598285675,
+ "learning_rate": 0.0006,
+ "loss": 4.2674560546875,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.46005865931510925,
+ "learning_rate": 0.0006,
+ "loss": 4.2233099937438965,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.4297347962856293,
+ "learning_rate": 0.0006,
+ "loss": 4.269168376922607,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.427181601524353,
+ "learning_rate": 0.0006,
+ "loss": 4.304473876953125,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.4240623712539673,
+ "learning_rate": 0.0006,
+ "loss": 4.358336448669434,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.461392879486084,
+ "learning_rate": 0.0006,
+ "loss": 4.351563930511475,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.4573875665664673,
+ "learning_rate": 0.0006,
+ "loss": 4.233829021453857,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.5236565470695496,
+ "learning_rate": 0.0006,
+ "loss": 4.313651084899902,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.6449952125549316,
+ "learning_rate": 0.0006,
+ "loss": 4.2785491943359375,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.76405930519104,
+ "learning_rate": 0.0006,
+ "loss": 4.333526611328125,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.8181349635124207,
+ "learning_rate": 0.0006,
+ "loss": 4.3336896896362305,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.7717618942260742,
+ "learning_rate": 0.0006,
+ "loss": 4.314065933227539,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.6831390857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.378012657165527,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.5755302906036377,
+ "learning_rate": 0.0006,
+ "loss": 4.331476211547852,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.5297263860702515,
+ "learning_rate": 0.0006,
+ "loss": 4.337549209594727,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.5538325309753418,
+ "learning_rate": 0.0006,
+ "loss": 4.395265102386475,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.4868195652961731,
+ "learning_rate": 0.0006,
+ "loss": 4.313584327697754,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.4794177711009979,
+ "learning_rate": 0.0006,
+ "loss": 4.413606643676758,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.4221785366535187,
+ "learning_rate": 0.0006,
+ "loss": 4.255707740783691,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.4288736879825592,
+ "learning_rate": 0.0006,
+ "loss": 4.257824897766113,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.42079946398735046,
+ "learning_rate": 0.0006,
+ "loss": 4.2655253410339355,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.4367576539516449,
+ "learning_rate": 0.0006,
+ "loss": 4.390307426452637,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.4121208190917969,
+ "learning_rate": 0.0006,
+ "loss": 4.3600006103515625,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.3934427797794342,
+ "learning_rate": 0.0006,
+ "loss": 4.276140213012695,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.3987336754798889,
+ "learning_rate": 0.0006,
+ "loss": 4.330526351928711,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.40691474080085754,
+ "learning_rate": 0.0006,
+ "loss": 4.260777473449707,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.3869854807853699,
+ "learning_rate": 0.0006,
+ "loss": 4.3207855224609375,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.3992115259170532,
+ "learning_rate": 0.0006,
+ "loss": 4.3675432205200195,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.39756008982658386,
+ "learning_rate": 0.0006,
+ "loss": 4.359041213989258,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.37387391924858093,
+ "learning_rate": 0.0006,
+ "loss": 4.314123630523682,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.3787343502044678,
+ "learning_rate": 0.0006,
+ "loss": 4.376033782958984,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.388907253742218,
+ "learning_rate": 0.0006,
+ "loss": 4.2664690017700195,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.39261215925216675,
+ "learning_rate": 0.0006,
+ "loss": 4.335193634033203,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.385919988155365,
+ "learning_rate": 0.0006,
+ "loss": 4.329131126403809,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.39091575145721436,
+ "learning_rate": 0.0006,
+ "loss": 4.416098117828369,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.3747062683105469,
+ "learning_rate": 0.0006,
+ "loss": 4.284010887145996,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.37862640619277954,
+ "learning_rate": 0.0006,
+ "loss": 4.398101806640625,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.3797444701194763,
+ "learning_rate": 0.0006,
+ "loss": 4.433382034301758,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.3917072117328644,
+ "learning_rate": 0.0006,
+ "loss": 4.265375137329102,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.40743324160575867,
+ "learning_rate": 0.0006,
+ "loss": 4.351291656494141,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.4176776707172394,
+ "learning_rate": 0.0006,
+ "loss": 4.4158782958984375,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.4368206560611725,
+ "learning_rate": 0.0006,
+ "loss": 4.422186851501465,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.45450183749198914,
+ "learning_rate": 0.0006,
+ "loss": 4.363736629486084,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.4195234775543213,
+ "learning_rate": 0.0006,
+ "loss": 4.459656715393066,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.3838373124599457,
+ "learning_rate": 0.0006,
+ "loss": 4.338109016418457,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.37965819239616394,
+ "learning_rate": 0.0006,
+ "loss": 4.350182056427002,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.3787379264831543,
+ "learning_rate": 0.0006,
+ "loss": 4.394096851348877,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.3984084129333496,
+ "learning_rate": 0.0006,
+ "loss": 4.381903171539307,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.3826642334461212,
+ "learning_rate": 0.0006,
+ "loss": 4.269111156463623,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.3738428056240082,
+ "learning_rate": 0.0006,
+ "loss": 4.29117488861084,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.3769048750400543,
+ "learning_rate": 0.0006,
+ "loss": 4.395892143249512,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.36490270495414734,
+ "learning_rate": 0.0006,
+ "loss": 4.356070518493652,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.38128694891929626,
+ "learning_rate": 0.0006,
+ "loss": 4.366775989532471,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.3863452672958374,
+ "learning_rate": 0.0006,
+ "loss": 4.403047561645508,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.3697649836540222,
+ "learning_rate": 0.0006,
+ "loss": 4.333529472351074,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.3666415810585022,
+ "learning_rate": 0.0006,
+ "loss": 4.421572685241699,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.3746238946914673,
+ "learning_rate": 0.0006,
+ "loss": 4.291342735290527,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.3864925503730774,
+ "learning_rate": 0.0006,
+ "loss": 4.319379806518555,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.40842366218566895,
+ "learning_rate": 0.0006,
+ "loss": 4.34860897064209,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.39575234055519104,
+ "learning_rate": 0.0006,
+ "loss": 4.389467239379883,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.3882506787776947,
+ "learning_rate": 0.0006,
+ "loss": 4.373462677001953,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.38202980160713196,
+ "learning_rate": 0.0006,
+ "loss": 4.370086669921875,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.37805864214897156,
+ "learning_rate": 0.0006,
+ "loss": 4.46006965637207,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.3739442527294159,
+ "learning_rate": 0.0006,
+ "loss": 4.36165714263916,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.3707204759120941,
+ "learning_rate": 0.0006,
+ "loss": 4.418872356414795,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.37603604793548584,
+ "learning_rate": 0.0006,
+ "loss": 4.45180606842041,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.3731978237628937,
+ "learning_rate": 0.0006,
+ "loss": 4.412590026855469,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.3871077001094818,
+ "learning_rate": 0.0006,
+ "loss": 4.4665679931640625,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.3805893659591675,
+ "learning_rate": 0.0006,
+ "loss": 4.376047134399414,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.3941190540790558,
+ "learning_rate": 0.0006,
+ "loss": 4.414681434631348,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.39961132407188416,
+ "learning_rate": 0.0006,
+ "loss": 4.40030574798584,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.45096156001091003,
+ "learning_rate": 0.0006,
+ "loss": 4.3740458488464355,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 6.164906978607178,
+ "eval_runtime": 43.7516,
+ "eval_samples_per_second": 55.815,
+ "eval_steps_per_second": 3.497,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.4227452278137207,
+ "learning_rate": 0.0006,
+ "loss": 4.3197340965271,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.4646683931350708,
+ "learning_rate": 0.0006,
+ "loss": 4.254220008850098,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.5112658739089966,
+ "learning_rate": 0.0006,
+ "loss": 4.245427131652832,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.5452179312705994,
+ "learning_rate": 0.0006,
+ "loss": 4.303033828735352,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.6151604652404785,
+ "learning_rate": 0.0006,
+ "loss": 4.3013811111450195,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.7466694712638855,
+ "learning_rate": 0.0006,
+ "loss": 4.303430080413818,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.9221336841583252,
+ "learning_rate": 0.0006,
+ "loss": 4.330693244934082,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.9571523666381836,
+ "learning_rate": 0.0006,
+ "loss": 4.283618927001953,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.8955944776535034,
+ "learning_rate": 0.0006,
+ "loss": 4.331462860107422,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.9967221021652222,
+ "learning_rate": 0.0006,
+ "loss": 4.267236709594727,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.896125853061676,
+ "learning_rate": 0.0006,
+ "loss": 4.382920265197754,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.8246790170669556,
+ "learning_rate": 0.0006,
+ "loss": 4.325201034545898,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.6651087403297424,
+ "learning_rate": 0.0006,
+ "loss": 4.389814376831055,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.5789903998374939,
+ "learning_rate": 0.0006,
+ "loss": 4.256431579589844,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.540268063545227,
+ "learning_rate": 0.0006,
+ "loss": 4.314873218536377,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.5234258770942688,
+ "learning_rate": 0.0006,
+ "loss": 4.322999954223633,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.5203981399536133,
+ "learning_rate": 0.0006,
+ "loss": 4.449131965637207,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.47833096981048584,
+ "learning_rate": 0.0006,
+ "loss": 4.370548725128174,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.45063355565071106,
+ "learning_rate": 0.0006,
+ "loss": 4.423710823059082,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.4473242163658142,
+ "learning_rate": 0.0006,
+ "loss": 4.322866439819336,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.45025673508644104,
+ "learning_rate": 0.0006,
+ "loss": 4.242474555969238,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.4419912099838257,
+ "learning_rate": 0.0006,
+ "loss": 4.3837714195251465,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.4443511664867401,
+ "learning_rate": 0.0006,
+ "loss": 4.393730163574219,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.42215496301651,
+ "learning_rate": 0.0006,
+ "loss": 4.360969066619873,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.4408218562602997,
+ "learning_rate": 0.0006,
+ "loss": 4.399507522583008,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.42309728264808655,
+ "learning_rate": 0.0006,
+ "loss": 4.34589147567749,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.3893560767173767,
+ "learning_rate": 0.0006,
+ "loss": 4.278870582580566,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.42726844549179077,
+ "learning_rate": 0.0006,
+ "loss": 4.428325653076172,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.39529383182525635,
+ "learning_rate": 0.0006,
+ "loss": 4.3687872886657715,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.39174285531044006,
+ "learning_rate": 0.0006,
+ "loss": 4.367023468017578,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.39338526129722595,
+ "learning_rate": 0.0006,
+ "loss": 4.372482776641846,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.396528959274292,
+ "learning_rate": 0.0006,
+ "loss": 4.325854778289795,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.4031950533390045,
+ "learning_rate": 0.0006,
+ "loss": 4.387483596801758,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.3867308795452118,
+ "learning_rate": 0.0006,
+ "loss": 4.337440490722656,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.3758327066898346,
+ "learning_rate": 0.0006,
+ "loss": 4.332152366638184,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.3789239823818207,
+ "learning_rate": 0.0006,
+ "loss": 4.234537124633789,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.36792582273483276,
+ "learning_rate": 0.0006,
+ "loss": 4.3876800537109375,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.3689296245574951,
+ "learning_rate": 0.0006,
+ "loss": 4.311098098754883,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.3556303083896637,
+ "learning_rate": 0.0006,
+ "loss": 4.348201274871826,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.38501277565956116,
+ "learning_rate": 0.0006,
+ "loss": 4.391176700592041,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.3857221305370331,
+ "learning_rate": 0.0006,
+ "loss": 4.377525329589844,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.37236976623535156,
+ "learning_rate": 0.0006,
+ "loss": 4.25323486328125,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.37982237339019775,
+ "learning_rate": 0.0006,
+ "loss": 4.326591491699219,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.3887641131877899,
+ "learning_rate": 0.0006,
+ "loss": 4.32540225982666,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.3766990900039673,
+ "learning_rate": 0.0006,
+ "loss": 4.320146560668945,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.3827766478061676,
+ "learning_rate": 0.0006,
+ "loss": 4.344974517822266,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.3892960846424103,
+ "learning_rate": 0.0006,
+ "loss": 4.37299108505249,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.39927658438682556,
+ "learning_rate": 0.0006,
+ "loss": 4.346755504608154,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.3751842975616455,
+ "learning_rate": 0.0006,
+ "loss": 4.390047073364258,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.3758105933666229,
+ "learning_rate": 0.0006,
+ "loss": 4.392386436462402,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.3755977153778076,
+ "learning_rate": 0.0006,
+ "loss": 4.389333724975586,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.38697585463523865,
+ "learning_rate": 0.0006,
+ "loss": 4.363922119140625,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.37856224179267883,
+ "learning_rate": 0.0006,
+ "loss": 4.415143966674805,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.3853805959224701,
+ "learning_rate": 0.0006,
+ "loss": 4.332059860229492,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.3552320599555969,
+ "learning_rate": 0.0006,
+ "loss": 4.360487937927246,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.3593924641609192,
+ "learning_rate": 0.0006,
+ "loss": 4.386531829833984,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.37393584847450256,
+ "learning_rate": 0.0006,
+ "loss": 4.377449989318848,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.37289509177207947,
+ "learning_rate": 0.0006,
+ "loss": 4.381917953491211,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.3700922131538391,
+ "learning_rate": 0.0006,
+ "loss": 4.472764015197754,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.3773220181465149,
+ "learning_rate": 0.0006,
+ "loss": 4.438575744628906,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.3959292769432068,
+ "learning_rate": 0.0006,
+ "loss": 4.41773796081543,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.37098821997642517,
+ "learning_rate": 0.0006,
+ "loss": 4.3457441329956055,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.3589438199996948,
+ "learning_rate": 0.0006,
+ "loss": 4.390456676483154,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.3993541896343231,
+ "learning_rate": 0.0006,
+ "loss": 4.412688255310059,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.39771372079849243,
+ "learning_rate": 0.0006,
+ "loss": 4.37404203414917,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.37521013617515564,
+ "learning_rate": 0.0006,
+ "loss": 4.379281044006348,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.3812563717365265,
+ "learning_rate": 0.0006,
+ "loss": 4.475038528442383,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.3759402632713318,
+ "learning_rate": 0.0006,
+ "loss": 4.298859596252441,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.38831669092178345,
+ "learning_rate": 0.0006,
+ "loss": 4.335268020629883,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.3674168884754181,
+ "learning_rate": 0.0006,
+ "loss": 4.288745880126953,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.37575823068618774,
+ "learning_rate": 0.0006,
+ "loss": 4.340919494628906,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.44213995337486267,
+ "learning_rate": 0.0006,
+ "loss": 4.428310394287109,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 6.250092029571533,
+ "eval_runtime": 43.9606,
+ "eval_samples_per_second": 55.55,
+ "eval_steps_per_second": 3.48,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.40146708488464355,
+ "learning_rate": 0.0006,
+ "loss": 4.233017921447754,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.4238559305667877,
+ "learning_rate": 0.0006,
+ "loss": 4.256832122802734,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.4282098412513733,
+ "learning_rate": 0.0006,
+ "loss": 4.243378639221191,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.4408058524131775,
+ "learning_rate": 0.0006,
+ "loss": 4.367465019226074,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.445965439081192,
+ "learning_rate": 0.0006,
+ "loss": 4.347798824310303,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.47689515352249146,
+ "learning_rate": 0.0006,
+ "loss": 4.242677211761475,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.5041401386260986,
+ "learning_rate": 0.0006,
+ "loss": 4.354928016662598,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.5793538689613342,
+ "learning_rate": 0.0006,
+ "loss": 4.301093578338623,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.5709708333015442,
+ "learning_rate": 0.0006,
+ "loss": 4.217863082885742,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.5181067585945129,
+ "learning_rate": 0.0006,
+ "loss": 4.246687889099121,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.5148541927337646,
+ "learning_rate": 0.0006,
+ "loss": 4.285772800445557,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.5215007662773132,
+ "learning_rate": 0.0006,
+ "loss": 4.2491350173950195,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.5118919610977173,
+ "learning_rate": 0.0006,
+ "loss": 4.354918479919434,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.5332921147346497,
+ "learning_rate": 0.0006,
+ "loss": 4.294621467590332,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.5734043717384338,
+ "learning_rate": 0.0006,
+ "loss": 4.283238887786865,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.5209192037582397,
+ "learning_rate": 0.0006,
+ "loss": 4.251487731933594,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.4510970711708069,
+ "learning_rate": 0.0006,
+ "loss": 4.294740676879883,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.42409008741378784,
+ "learning_rate": 0.0006,
+ "loss": 4.267972946166992,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.45052847266197205,
+ "learning_rate": 0.0006,
+ "loss": 4.451445579528809,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.420418918132782,
+ "learning_rate": 0.0006,
+ "loss": 4.227499008178711,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.4419310390949249,
+ "learning_rate": 0.0006,
+ "loss": 4.294921875,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.41020578145980835,
+ "learning_rate": 0.0006,
+ "loss": 4.235942840576172,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.4084969162940979,
+ "learning_rate": 0.0006,
+ "loss": 4.285951614379883,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.39946338534355164,
+ "learning_rate": 0.0006,
+ "loss": 4.388570785522461,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.39431124925613403,
+ "learning_rate": 0.0006,
+ "loss": 4.329334259033203,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.41183048486709595,
+ "learning_rate": 0.0006,
+ "loss": 4.369775295257568,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.4041382968425751,
+ "learning_rate": 0.0006,
+ "loss": 4.272721290588379,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.42982324957847595,
+ "learning_rate": 0.0006,
+ "loss": 4.310064315795898,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.42579901218414307,
+ "learning_rate": 0.0006,
+ "loss": 4.284671783447266,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.41768139600753784,
+ "learning_rate": 0.0006,
+ "loss": 4.343086242675781,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.3960258960723877,
+ "learning_rate": 0.0006,
+ "loss": 4.2318806648254395,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.3981281518936157,
+ "learning_rate": 0.0006,
+ "loss": 4.2755937576293945,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.39555633068084717,
+ "learning_rate": 0.0006,
+ "loss": 4.383005142211914,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.4002246856689453,
+ "learning_rate": 0.0006,
+ "loss": 4.332754135131836,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.4106678068637848,
+ "learning_rate": 0.0006,
+ "loss": 4.391409873962402,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.3856841027736664,
+ "learning_rate": 0.0006,
+ "loss": 4.316332817077637,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.3910135328769684,
+ "learning_rate": 0.0006,
+ "loss": 4.327088356018066,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.38631075620651245,
+ "learning_rate": 0.0006,
+ "loss": 4.308974266052246,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.36760637164115906,
+ "learning_rate": 0.0006,
+ "loss": 4.396300315856934,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.39333999156951904,
+ "learning_rate": 0.0006,
+ "loss": 4.33335018157959,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.37966030836105347,
+ "learning_rate": 0.0006,
+ "loss": 4.298529148101807,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.3774148225784302,
+ "learning_rate": 0.0006,
+ "loss": 4.218472480773926,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.38100066781044006,
+ "learning_rate": 0.0006,
+ "loss": 4.337407112121582,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.3924340605735779,
+ "learning_rate": 0.0006,
+ "loss": 4.38271427154541,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.37583890557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.331287384033203,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.3993631601333618,
+ "learning_rate": 0.0006,
+ "loss": 4.297436237335205,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.41312935948371887,
+ "learning_rate": 0.0006,
+ "loss": 4.305514335632324,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.4133725166320801,
+ "learning_rate": 0.0006,
+ "loss": 4.339967727661133,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.3860441744327545,
+ "learning_rate": 0.0006,
+ "loss": 4.31814432144165,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.3891344964504242,
+ "learning_rate": 0.0006,
+ "loss": 4.346461772918701,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.3863038122653961,
+ "learning_rate": 0.0006,
+ "loss": 4.413818359375,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.37267377972602844,
+ "learning_rate": 0.0006,
+ "loss": 4.333828449249268,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.37040555477142334,
+ "learning_rate": 0.0006,
+ "loss": 4.456110000610352,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.3837447464466095,
+ "learning_rate": 0.0006,
+ "loss": 4.242850303649902,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.39074262976646423,
+ "learning_rate": 0.0006,
+ "loss": 4.3549485206604,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.38219889998435974,
+ "learning_rate": 0.0006,
+ "loss": 4.296403884887695,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.38378462195396423,
+ "learning_rate": 0.0006,
+ "loss": 4.369739532470703,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.37791451811790466,
+ "learning_rate": 0.0006,
+ "loss": 4.372786998748779,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.3720730245113373,
+ "learning_rate": 0.0006,
+ "loss": 4.292923450469971,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.3587147295475006,
+ "learning_rate": 0.0006,
+ "loss": 4.336228847503662,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.3617904782295227,
+ "learning_rate": 0.0006,
+ "loss": 4.380134582519531,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.3623189628124237,
+ "learning_rate": 0.0006,
+ "loss": 4.340606689453125,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.37112200260162354,
+ "learning_rate": 0.0006,
+ "loss": 4.310943603515625,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.3742401897907257,
+ "learning_rate": 0.0006,
+ "loss": 4.3478593826293945,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.374665230512619,
+ "learning_rate": 0.0006,
+ "loss": 4.4058637619018555,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.38624459505081177,
+ "learning_rate": 0.0006,
+ "loss": 4.348050594329834,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.40541738271713257,
+ "learning_rate": 0.0006,
+ "loss": 4.471852779388428,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.3857991695404053,
+ "learning_rate": 0.0006,
+ "loss": 4.312546253204346,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.41659343242645264,
+ "learning_rate": 0.0006,
+ "loss": 4.315553188323975,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.43697381019592285,
+ "learning_rate": 0.0006,
+ "loss": 4.333539962768555,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.45475196838378906,
+ "learning_rate": 0.0006,
+ "loss": 4.362082481384277,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.4871002733707428,
+ "learning_rate": 0.0006,
+ "loss": 4.328166484832764,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 6.260599136352539,
+ "eval_runtime": 43.7447,
+ "eval_samples_per_second": 55.824,
+ "eval_steps_per_second": 3.498,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.42134732007980347,
+ "learning_rate": 0.0006,
+ "loss": 4.200570106506348,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.44146645069122314,
+ "learning_rate": 0.0006,
+ "loss": 4.219682693481445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.4451248049736023,
+ "learning_rate": 0.0006,
+ "loss": 4.240499496459961,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.45094963908195496,
+ "learning_rate": 0.0006,
+ "loss": 4.252233505249023,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.4750693738460541,
+ "learning_rate": 0.0006,
+ "loss": 4.229597091674805,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.5211004614830017,
+ "learning_rate": 0.0006,
+ "loss": 4.3165435791015625,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.5570583343505859,
+ "learning_rate": 0.0006,
+ "loss": 4.280586242675781,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.543846845626831,
+ "learning_rate": 0.0006,
+ "loss": 4.243165493011475,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.4849488437175751,
+ "learning_rate": 0.0006,
+ "loss": 4.190418243408203,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.485515296459198,
+ "learning_rate": 0.0006,
+ "loss": 4.30844783782959,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.5233704447746277,
+ "learning_rate": 0.0006,
+ "loss": 4.229648590087891,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.5426996946334839,
+ "learning_rate": 0.0006,
+ "loss": 4.31719970703125,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.5974491238594055,
+ "learning_rate": 0.0006,
+ "loss": 4.250443458557129,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.6469011902809143,
+ "learning_rate": 0.0006,
+ "loss": 4.354139804840088,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.7294577360153198,
+ "learning_rate": 0.0006,
+ "loss": 4.3642706871032715,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.6488705277442932,
+ "learning_rate": 0.0006,
+ "loss": 4.275979995727539,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.4984777271747589,
+ "learning_rate": 0.0006,
+ "loss": 4.217861175537109,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.5109938979148865,
+ "learning_rate": 0.0006,
+ "loss": 4.286642074584961,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.49844229221343994,
+ "learning_rate": 0.0006,
+ "loss": 4.238213539123535,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.488077312707901,
+ "learning_rate": 0.0006,
+ "loss": 4.231420040130615,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.4928477704524994,
+ "learning_rate": 0.0006,
+ "loss": 4.380367279052734,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.49250566959381104,
+ "learning_rate": 0.0006,
+ "loss": 4.29306697845459,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.48340678215026855,
+ "learning_rate": 0.0006,
+ "loss": 4.2856645584106445,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.4970073401927948,
+ "learning_rate": 0.0006,
+ "loss": 4.34441614151001,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.4387594759464264,
+ "learning_rate": 0.0006,
+ "loss": 4.350798606872559,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.4448535144329071,
+ "learning_rate": 0.0006,
+ "loss": 4.350264072418213,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.4491334855556488,
+ "learning_rate": 0.0006,
+ "loss": 4.310317039489746,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.4396249055862427,
+ "learning_rate": 0.0006,
+ "loss": 4.3137288093566895,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.42331191897392273,
+ "learning_rate": 0.0006,
+ "loss": 4.283992767333984,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.42483261227607727,
+ "learning_rate": 0.0006,
+ "loss": 4.269024848937988,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.40380987524986267,
+ "learning_rate": 0.0006,
+ "loss": 4.321262836456299,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.4109397530555725,
+ "learning_rate": 0.0006,
+ "loss": 4.285927772521973,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.43696823716163635,
+ "learning_rate": 0.0006,
+ "loss": 4.303576946258545,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.379971444606781,
+ "learning_rate": 0.0006,
+ "loss": 4.388635158538818,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.4044286608695984,
+ "learning_rate": 0.0006,
+ "loss": 4.329499244689941,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.4053935706615448,
+ "learning_rate": 0.0006,
+ "loss": 4.297847747802734,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.38198018074035645,
+ "learning_rate": 0.0006,
+ "loss": 4.288124084472656,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.39832696318626404,
+ "learning_rate": 0.0006,
+ "loss": 4.380218982696533,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.40758490562438965,
+ "learning_rate": 0.0006,
+ "loss": 4.32636833190918,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.3803170621395111,
+ "learning_rate": 0.0006,
+ "loss": 4.30747127532959,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.3853742480278015,
+ "learning_rate": 0.0006,
+ "loss": 4.324460029602051,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.4050910174846649,
+ "learning_rate": 0.0006,
+ "loss": 4.306979179382324,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.4187234342098236,
+ "learning_rate": 0.0006,
+ "loss": 4.334494113922119,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.4233380854129791,
+ "learning_rate": 0.0006,
+ "loss": 4.338802814483643,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.4379981458187103,
+ "learning_rate": 0.0006,
+ "loss": 4.399646759033203,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.4394802749156952,
+ "learning_rate": 0.0006,
+ "loss": 4.33521842956543,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.415715754032135,
+ "learning_rate": 0.0006,
+ "loss": 4.3247880935668945,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.3918288052082062,
+ "learning_rate": 0.0006,
+ "loss": 4.329852104187012,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.40957361459732056,
+ "learning_rate": 0.0006,
+ "loss": 4.266562461853027,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.4475722312927246,
+ "learning_rate": 0.0006,
+ "loss": 4.513836860656738,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.44053083658218384,
+ "learning_rate": 0.0006,
+ "loss": 4.305239677429199,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.4229199290275574,
+ "learning_rate": 0.0006,
+ "loss": 4.347291946411133,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.4058760106563568,
+ "learning_rate": 0.0006,
+ "loss": 4.377959251403809,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.4245327115058899,
+ "learning_rate": 0.0006,
+ "loss": 4.363465309143066,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.4446028470993042,
+ "learning_rate": 0.0006,
+ "loss": 4.4517316818237305,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.40111324191093445,
+ "learning_rate": 0.0006,
+ "loss": 4.294158935546875,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.39330703020095825,
+ "learning_rate": 0.0006,
+ "loss": 4.329209327697754,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.4327717423439026,
+ "learning_rate": 0.0006,
+ "loss": 4.349915027618408,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.411691814661026,
+ "learning_rate": 0.0006,
+ "loss": 4.441436290740967,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.39029157161712646,
+ "learning_rate": 0.0006,
+ "loss": 4.339478492736816,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.4064500331878662,
+ "learning_rate": 0.0006,
+ "loss": 4.3008952140808105,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.40196365118026733,
+ "learning_rate": 0.0006,
+ "loss": 4.278536319732666,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.3925584554672241,
+ "learning_rate": 0.0006,
+ "loss": 4.351866722106934,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.37795954942703247,
+ "learning_rate": 0.0006,
+ "loss": 4.40715217590332,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.3920917510986328,
+ "learning_rate": 0.0006,
+ "loss": 4.303398132324219,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.3982515335083008,
+ "learning_rate": 0.0006,
+ "loss": 4.397731304168701,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.41097545623779297,
+ "learning_rate": 0.0006,
+ "loss": 4.372936248779297,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.38546738028526306,
+ "learning_rate": 0.0006,
+ "loss": 4.36802339553833,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.3931894302368164,
+ "learning_rate": 0.0006,
+ "loss": 4.397665023803711,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.37862512469291687,
+ "learning_rate": 0.0006,
+ "loss": 4.356085777282715,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.41227665543556213,
+ "learning_rate": 0.0006,
+ "loss": 4.4159650802612305,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.499416321516037,
+ "learning_rate": 0.0006,
+ "loss": 4.329807281494141,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 6.198739051818848,
+ "eval_runtime": 43.6864,
+ "eval_samples_per_second": 55.898,
+ "eval_steps_per_second": 3.502,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.4628259837627411,
+ "learning_rate": 0.0006,
+ "loss": 4.170797824859619,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.4806155860424042,
+ "learning_rate": 0.0006,
+ "loss": 4.2210259437561035,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.4822350740432739,
+ "learning_rate": 0.0006,
+ "loss": 4.23138952255249,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.452754408121109,
+ "learning_rate": 0.0006,
+ "loss": 4.286277770996094,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.5044941306114197,
+ "learning_rate": 0.0006,
+ "loss": 4.232921600341797,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.5530663132667542,
+ "learning_rate": 0.0006,
+ "loss": 4.221680641174316,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.5776026844978333,
+ "learning_rate": 0.0006,
+ "loss": 4.213212966918945,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.6634025573730469,
+ "learning_rate": 0.0006,
+ "loss": 4.319071292877197,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.76152503490448,
+ "learning_rate": 0.0006,
+ "loss": 4.214156150817871,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.8480479717254639,
+ "learning_rate": 0.0006,
+ "loss": 4.321653842926025,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.9160254001617432,
+ "learning_rate": 0.0006,
+ "loss": 4.33962869644165,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.8524528741836548,
+ "learning_rate": 0.0006,
+ "loss": 4.268365859985352,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.7075300216674805,
+ "learning_rate": 0.0006,
+ "loss": 4.306760311126709,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.6349018216133118,
+ "learning_rate": 0.0006,
+ "loss": 4.333056926727295,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.5707677006721497,
+ "learning_rate": 0.0006,
+ "loss": 4.32132625579834,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.5484790205955505,
+ "learning_rate": 0.0006,
+ "loss": 4.3016767501831055,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.5517436861991882,
+ "learning_rate": 0.0006,
+ "loss": 4.295352935791016,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.5682413578033447,
+ "learning_rate": 0.0006,
+ "loss": 4.302443504333496,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.5568698644638062,
+ "learning_rate": 0.0006,
+ "loss": 4.328906059265137,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.5146242380142212,
+ "learning_rate": 0.0006,
+ "loss": 4.314318656921387,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.4866996705532074,
+ "learning_rate": 0.0006,
+ "loss": 4.321515083312988,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.47854411602020264,
+ "learning_rate": 0.0006,
+ "loss": 4.336956977844238,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.48322951793670654,
+ "learning_rate": 0.0006,
+ "loss": 4.270317554473877,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.4432683289051056,
+ "learning_rate": 0.0006,
+ "loss": 4.3168792724609375,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.42538025975227356,
+ "learning_rate": 0.0006,
+ "loss": 4.236387729644775,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.4699258804321289,
+ "learning_rate": 0.0006,
+ "loss": 4.372434616088867,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.4574076235294342,
+ "learning_rate": 0.0006,
+ "loss": 4.347474098205566,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.42455345392227173,
+ "learning_rate": 0.0006,
+ "loss": 4.345785140991211,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.4194679260253906,
+ "learning_rate": 0.0006,
+ "loss": 4.326481819152832,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.4357808828353882,
+ "learning_rate": 0.0006,
+ "loss": 4.3457183837890625,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.4160650670528412,
+ "learning_rate": 0.0006,
+ "loss": 4.24708890914917,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.4105308949947357,
+ "learning_rate": 0.0006,
+ "loss": 4.3586530685424805,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.399740993976593,
+ "learning_rate": 0.0006,
+ "loss": 4.352291584014893,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.39557352662086487,
+ "learning_rate": 0.0006,
+ "loss": 4.284960746765137,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.4299493134021759,
+ "learning_rate": 0.0006,
+ "loss": 4.285758018493652,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.4042324721813202,
+ "learning_rate": 0.0006,
+ "loss": 4.357293605804443,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.396954745054245,
+ "learning_rate": 0.0006,
+ "loss": 4.2686262130737305,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.3821943998336792,
+ "learning_rate": 0.0006,
+ "loss": 4.357154846191406,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.3846510648727417,
+ "learning_rate": 0.0006,
+ "loss": 4.323714256286621,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.37851205468177795,
+ "learning_rate": 0.0006,
+ "loss": 4.341939926147461,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.37929001450538635,
+ "learning_rate": 0.0006,
+ "loss": 4.248264312744141,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.3882073163986206,
+ "learning_rate": 0.0006,
+ "loss": 4.307059288024902,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.38127774000167847,
+ "learning_rate": 0.0006,
+ "loss": 4.363462448120117,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.3818758726119995,
+ "learning_rate": 0.0006,
+ "loss": 4.322787284851074,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.389406681060791,
+ "learning_rate": 0.0006,
+ "loss": 4.457492828369141,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.38305217027664185,
+ "learning_rate": 0.0006,
+ "loss": 4.306647300720215,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.3900682032108307,
+ "learning_rate": 0.0006,
+ "loss": 4.331067085266113,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.38036227226257324,
+ "learning_rate": 0.0006,
+ "loss": 4.264892578125,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.39323344826698303,
+ "learning_rate": 0.0006,
+ "loss": 4.365866661071777,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.4049435257911682,
+ "learning_rate": 0.0006,
+ "loss": 4.381568908691406,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.4216940701007843,
+ "learning_rate": 0.0006,
+ "loss": 4.364271640777588,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.42422112822532654,
+ "learning_rate": 0.0006,
+ "loss": 4.400199890136719,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.3819519281387329,
+ "learning_rate": 0.0006,
+ "loss": 4.257974147796631,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.4014202654361725,
+ "learning_rate": 0.0006,
+ "loss": 4.329166889190674,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.39812493324279785,
+ "learning_rate": 0.0006,
+ "loss": 4.372607231140137,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.3916856050491333,
+ "learning_rate": 0.0006,
+ "loss": 4.385530471801758,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.4020134508609772,
+ "learning_rate": 0.0006,
+ "loss": 4.3358330726623535,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.3931422829627991,
+ "learning_rate": 0.0006,
+ "loss": 4.381669521331787,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.37799912691116333,
+ "learning_rate": 0.0006,
+ "loss": 4.392168998718262,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.39257925748825073,
+ "learning_rate": 0.0006,
+ "loss": 4.4379096031188965,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.39501482248306274,
+ "learning_rate": 0.0006,
+ "loss": 4.323174953460693,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.3914605677127838,
+ "learning_rate": 0.0006,
+ "loss": 4.365396022796631,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.3778083026409149,
+ "learning_rate": 0.0006,
+ "loss": 4.3220720291137695,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.3911595344543457,
+ "learning_rate": 0.0006,
+ "loss": 4.323670864105225,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.3692200779914856,
+ "learning_rate": 0.0006,
+ "loss": 4.341980934143066,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.3713432848453522,
+ "learning_rate": 0.0006,
+ "loss": 4.304820537567139,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.37348702549934387,
+ "learning_rate": 0.0006,
+ "loss": 4.326486587524414,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.3943784236907959,
+ "learning_rate": 0.0006,
+ "loss": 4.374529838562012,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.4153553247451782,
+ "learning_rate": 0.0006,
+ "loss": 4.392250061035156,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.3885365426540375,
+ "learning_rate": 0.0006,
+ "loss": 4.322462558746338,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.3777163326740265,
+ "learning_rate": 0.0006,
+ "loss": 4.399444103240967,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.45014286041259766,
+ "learning_rate": 0.0006,
+ "loss": 4.266523361206055,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 6.2529473304748535,
+ "eval_runtime": 43.7478,
+ "eval_samples_per_second": 55.82,
+ "eval_steps_per_second": 3.497,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.4145124852657318,
+ "learning_rate": 0.0006,
+ "loss": 4.266193389892578,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.44340333342552185,
+ "learning_rate": 0.0006,
+ "loss": 4.134491443634033,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.4580900967121124,
+ "learning_rate": 0.0006,
+ "loss": 4.287178993225098,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.47761040925979614,
+ "learning_rate": 0.0006,
+ "loss": 4.429558277130127,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.46682101488113403,
+ "learning_rate": 0.0006,
+ "loss": 4.317314147949219,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.4769667685031891,
+ "learning_rate": 0.0006,
+ "loss": 4.290413856506348,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.539111316204071,
+ "learning_rate": 0.0006,
+ "loss": 4.240926742553711,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.6831890344619751,
+ "learning_rate": 0.0006,
+ "loss": 4.204584121704102,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.749098539352417,
+ "learning_rate": 0.0006,
+ "loss": 4.25895881652832,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.7921332120895386,
+ "learning_rate": 0.0006,
+ "loss": 4.339118003845215,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.7587332725524902,
+ "learning_rate": 0.0006,
+ "loss": 4.2877516746521,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.6472265124320984,
+ "learning_rate": 0.0006,
+ "loss": 4.2839131355285645,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.5472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.346395492553711,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.6083328723907471,
+ "learning_rate": 0.0006,
+ "loss": 4.240531921386719,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.5928010940551758,
+ "learning_rate": 0.0006,
+ "loss": 4.347572326660156,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.532841145992279,
+ "learning_rate": 0.0006,
+ "loss": 4.281345844268799,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.4778757691383362,
+ "learning_rate": 0.0006,
+ "loss": 4.279055118560791,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.48648887872695923,
+ "learning_rate": 0.0006,
+ "loss": 4.198624610900879,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.43191879987716675,
+ "learning_rate": 0.0006,
+ "loss": 4.236109733581543,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.45012032985687256,
+ "learning_rate": 0.0006,
+ "loss": 4.323042869567871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.4548600912094116,
+ "learning_rate": 0.0006,
+ "loss": 4.2210235595703125,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.45999664068222046,
+ "learning_rate": 0.0006,
+ "loss": 4.2899250984191895,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.4702019691467285,
+ "learning_rate": 0.0006,
+ "loss": 4.3281145095825195,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.4921978712081909,
+ "learning_rate": 0.0006,
+ "loss": 4.310947418212891,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.4662175178527832,
+ "learning_rate": 0.0006,
+ "loss": 4.191643714904785,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.46207281947135925,
+ "learning_rate": 0.0006,
+ "loss": 4.423742771148682,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.46523746848106384,
+ "learning_rate": 0.0006,
+ "loss": 4.321560859680176,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.42817118763923645,
+ "learning_rate": 0.0006,
+ "loss": 4.275110244750977,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.4028136134147644,
+ "learning_rate": 0.0006,
+ "loss": 4.26282262802124,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.39602214097976685,
+ "learning_rate": 0.0006,
+ "loss": 4.350768089294434,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.4017263948917389,
+ "learning_rate": 0.0006,
+ "loss": 4.2504682540893555,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.4112628996372223,
+ "learning_rate": 0.0006,
+ "loss": 4.262454986572266,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.44213998317718506,
+ "learning_rate": 0.0006,
+ "loss": 4.33111572265625,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.4273027777671814,
+ "learning_rate": 0.0006,
+ "loss": 4.241754055023193,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.42171111702919006,
+ "learning_rate": 0.0006,
+ "loss": 4.3793134689331055,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.4059634506702423,
+ "learning_rate": 0.0006,
+ "loss": 4.267672538757324,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.40447160601615906,
+ "learning_rate": 0.0006,
+ "loss": 4.282671928405762,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.39427000284194946,
+ "learning_rate": 0.0006,
+ "loss": 4.286433219909668,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.3932870924472809,
+ "learning_rate": 0.0006,
+ "loss": 4.31290340423584,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.37661924958229065,
+ "learning_rate": 0.0006,
+ "loss": 4.262170791625977,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.40946775674819946,
+ "learning_rate": 0.0006,
+ "loss": 4.303168296813965,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.3941985070705414,
+ "learning_rate": 0.0006,
+ "loss": 4.310337066650391,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.40164992213249207,
+ "learning_rate": 0.0006,
+ "loss": 4.312982559204102,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.3975890874862671,
+ "learning_rate": 0.0006,
+ "loss": 4.3248701095581055,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.38574227690696716,
+ "learning_rate": 0.0006,
+ "loss": 4.38369083404541,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.3992249667644501,
+ "learning_rate": 0.0006,
+ "loss": 4.297112464904785,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.39868417382240295,
+ "learning_rate": 0.0006,
+ "loss": 4.295505046844482,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.4101839065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.3519697189331055,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.379717081785202,
+ "learning_rate": 0.0006,
+ "loss": 4.2289581298828125,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.3912242352962494,
+ "learning_rate": 0.0006,
+ "loss": 4.40312385559082,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.3885950446128845,
+ "learning_rate": 0.0006,
+ "loss": 4.286848068237305,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.3892953097820282,
+ "learning_rate": 0.0006,
+ "loss": 4.292012691497803,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.38809701800346375,
+ "learning_rate": 0.0006,
+ "loss": 4.374564170837402,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.3903641700744629,
+ "learning_rate": 0.0006,
+ "loss": 4.394603729248047,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.39104169607162476,
+ "learning_rate": 0.0006,
+ "loss": 4.35471773147583,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.3975231349468231,
+ "learning_rate": 0.0006,
+ "loss": 4.382683753967285,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.40965917706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.367456436157227,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.4243786633014679,
+ "learning_rate": 0.0006,
+ "loss": 4.367887020111084,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.40315696597099304,
+ "learning_rate": 0.0006,
+ "loss": 4.300185203552246,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.41343727707862854,
+ "learning_rate": 0.0006,
+ "loss": 4.331711292266846,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.40250977873802185,
+ "learning_rate": 0.0006,
+ "loss": 4.3398590087890625,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.38862133026123047,
+ "learning_rate": 0.0006,
+ "loss": 4.272953033447266,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.39667993783950806,
+ "learning_rate": 0.0006,
+ "loss": 4.47554874420166,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.41999825835227966,
+ "learning_rate": 0.0006,
+ "loss": 4.263052940368652,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.4195004105567932,
+ "learning_rate": 0.0006,
+ "loss": 4.330724716186523,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.3944961130619049,
+ "learning_rate": 0.0006,
+ "loss": 4.3109002113342285,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.3944008946418762,
+ "learning_rate": 0.0006,
+ "loss": 4.298914432525635,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.4016371965408325,
+ "learning_rate": 0.0006,
+ "loss": 4.346005439758301,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.38281115889549255,
+ "learning_rate": 0.0006,
+ "loss": 4.332263946533203,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.36780816316604614,
+ "learning_rate": 0.0006,
+ "loss": 4.356542587280273,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.37247809767723083,
+ "learning_rate": 0.0006,
+ "loss": 4.244487285614014,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.4414741098880768,
+ "learning_rate": 0.0006,
+ "loss": 4.326817035675049,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 6.229246616363525,
+ "eval_runtime": 43.7873,
+ "eval_samples_per_second": 55.77,
+ "eval_steps_per_second": 3.494,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.3957669138908386,
+ "learning_rate": 0.0006,
+ "loss": 4.263937950134277,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.4236466586589813,
+ "learning_rate": 0.0006,
+ "loss": 4.222219467163086,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.47564026713371277,
+ "learning_rate": 0.0006,
+ "loss": 4.266385555267334,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.5004186630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.262574195861816,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.592176616191864,
+ "learning_rate": 0.0006,
+ "loss": 4.225201606750488,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.7019115090370178,
+ "learning_rate": 0.0006,
+ "loss": 4.23977518081665,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.8254161477088928,
+ "learning_rate": 0.0006,
+ "loss": 4.227803707122803,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.8682525753974915,
+ "learning_rate": 0.0006,
+ "loss": 4.321664810180664,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.9065311551094055,
+ "learning_rate": 0.0006,
+ "loss": 4.253820419311523,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.8974156975746155,
+ "learning_rate": 0.0006,
+ "loss": 4.3650312423706055,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.7837588787078857,
+ "learning_rate": 0.0006,
+ "loss": 4.283933639526367,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.7024438381195068,
+ "learning_rate": 0.0006,
+ "loss": 4.258434772491455,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.625393271446228,
+ "learning_rate": 0.0006,
+ "loss": 4.23687744140625,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.5788878202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.234710693359375,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.5580928325653076,
+ "learning_rate": 0.0006,
+ "loss": 4.29906702041626,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.48748156428337097,
+ "learning_rate": 0.0006,
+ "loss": 4.226408958435059,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.4848710298538208,
+ "learning_rate": 0.0006,
+ "loss": 4.2123122215271,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.5063420534133911,
+ "learning_rate": 0.0006,
+ "loss": 4.255153656005859,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.5110829472541809,
+ "learning_rate": 0.0006,
+ "loss": 4.358216285705566,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.49089232087135315,
+ "learning_rate": 0.0006,
+ "loss": 4.300388813018799,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.4603854715824127,
+ "learning_rate": 0.0006,
+ "loss": 4.2832136154174805,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.4599403440952301,
+ "learning_rate": 0.0006,
+ "loss": 4.295095443725586,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.4395982623100281,
+ "learning_rate": 0.0006,
+ "loss": 4.26538610458374,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.41270455718040466,
+ "learning_rate": 0.0006,
+ "loss": 4.2344889640808105,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.42688557505607605,
+ "learning_rate": 0.0006,
+ "loss": 4.207379341125488,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.4363268315792084,
+ "learning_rate": 0.0006,
+ "loss": 4.30502462387085,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.42514753341674805,
+ "learning_rate": 0.0006,
+ "loss": 4.3195905685424805,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.3887978494167328,
+ "learning_rate": 0.0006,
+ "loss": 4.23016357421875,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.39444148540496826,
+ "learning_rate": 0.0006,
+ "loss": 4.265226364135742,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.41804856061935425,
+ "learning_rate": 0.0006,
+ "loss": 4.399003028869629,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.4026116132736206,
+ "learning_rate": 0.0006,
+ "loss": 4.356629371643066,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.4023478329181671,
+ "learning_rate": 0.0006,
+ "loss": 4.379050254821777,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.39880287647247314,
+ "learning_rate": 0.0006,
+ "loss": 4.277581214904785,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.38926973938941956,
+ "learning_rate": 0.0006,
+ "loss": 4.2318902015686035,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.3924587368965149,
+ "learning_rate": 0.0006,
+ "loss": 4.329956531524658,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.40522003173828125,
+ "learning_rate": 0.0006,
+ "loss": 4.315302848815918,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.3916785418987274,
+ "learning_rate": 0.0006,
+ "loss": 4.319087505340576,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.419207364320755,
+ "learning_rate": 0.0006,
+ "loss": 4.373052597045898,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.3973175287246704,
+ "learning_rate": 0.0006,
+ "loss": 4.323544025421143,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.37236395478248596,
+ "learning_rate": 0.0006,
+ "loss": 4.206120491027832,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.385455846786499,
+ "learning_rate": 0.0006,
+ "loss": 4.294527053833008,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.3870242238044739,
+ "learning_rate": 0.0006,
+ "loss": 4.221030235290527,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.3881280720233917,
+ "learning_rate": 0.0006,
+ "loss": 4.233551025390625,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.3722829818725586,
+ "learning_rate": 0.0006,
+ "loss": 4.257683277130127,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.375012069940567,
+ "learning_rate": 0.0006,
+ "loss": 4.350418567657471,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.38077789545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.192095756530762,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.3906152844429016,
+ "learning_rate": 0.0006,
+ "loss": 4.357870578765869,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.3887590169906616,
+ "learning_rate": 0.0006,
+ "loss": 4.318536281585693,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.3828654885292053,
+ "learning_rate": 0.0006,
+ "loss": 4.28328800201416,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.39694708585739136,
+ "learning_rate": 0.0006,
+ "loss": 4.391949653625488,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.3975147604942322,
+ "learning_rate": 0.0006,
+ "loss": 4.352961540222168,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.3841004967689514,
+ "learning_rate": 0.0006,
+ "loss": 4.228391647338867,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.3807359039783478,
+ "learning_rate": 0.0006,
+ "loss": 4.22756290435791,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.3987439274787903,
+ "learning_rate": 0.0006,
+ "loss": 4.407889366149902,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.4201034605503082,
+ "learning_rate": 0.0006,
+ "loss": 4.34971809387207,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.4346381723880768,
+ "learning_rate": 0.0006,
+ "loss": 4.293330192565918,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.44999462366104126,
+ "learning_rate": 0.0006,
+ "loss": 4.417044162750244,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.38561612367630005,
+ "learning_rate": 0.0006,
+ "loss": 4.258061408996582,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.3790895938873291,
+ "learning_rate": 0.0006,
+ "loss": 4.321300029754639,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.3984527289867401,
+ "learning_rate": 0.0006,
+ "loss": 4.247694969177246,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.42955538630485535,
+ "learning_rate": 0.0006,
+ "loss": 4.343568325042725,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.40776535868644714,
+ "learning_rate": 0.0006,
+ "loss": 4.34933614730835,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.39172181487083435,
+ "learning_rate": 0.0006,
+ "loss": 4.379310607910156,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.40323659777641296,
+ "learning_rate": 0.0006,
+ "loss": 4.268922805786133,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.4012514352798462,
+ "learning_rate": 0.0006,
+ "loss": 4.363704681396484,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.39983171224594116,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.39482736587524414,
+ "learning_rate": 0.0006,
+ "loss": 4.338078022003174,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.40444278717041016,
+ "learning_rate": 0.0006,
+ "loss": 4.373770713806152,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.3808857500553131,
+ "learning_rate": 0.0006,
+ "loss": 4.326850891113281,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.38284221291542053,
+ "learning_rate": 0.0006,
+ "loss": 4.389925956726074,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.3825092613697052,
+ "learning_rate": 0.0006,
+ "loss": 4.389588356018066,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.4557396471500397,
+ "learning_rate": 0.0006,
+ "loss": 4.302459239959717,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 6.270473480224609,
+ "eval_runtime": 43.6892,
+ "eval_samples_per_second": 55.895,
+ "eval_steps_per_second": 3.502,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.4212155044078827,
+ "learning_rate": 0.0006,
+ "loss": 4.3081440925598145,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.4590097963809967,
+ "learning_rate": 0.0006,
+ "loss": 4.150710582733154,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.4502851963043213,
+ "learning_rate": 0.0006,
+ "loss": 4.238507270812988,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.44205573201179504,
+ "learning_rate": 0.0006,
+ "loss": 4.202637672424316,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.5142990946769714,
+ "learning_rate": 0.0006,
+ "loss": 4.325977325439453,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.5224044919013977,
+ "learning_rate": 0.0006,
+ "loss": 4.265192031860352,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.5608325004577637,
+ "learning_rate": 0.0006,
+ "loss": 4.295414924621582,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.6955265402793884,
+ "learning_rate": 0.0006,
+ "loss": 4.218759536743164,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.868670642375946,
+ "learning_rate": 0.0006,
+ "loss": 4.220717430114746,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 1.0042238235473633,
+ "learning_rate": 0.0006,
+ "loss": 4.290093421936035,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.9413097500801086,
+ "learning_rate": 0.0006,
+ "loss": 4.324940204620361,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.697178304195404,
+ "learning_rate": 0.0006,
+ "loss": 4.301477909088135,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.7008699774742126,
+ "learning_rate": 0.0006,
+ "loss": 4.2905120849609375,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.6534171104431152,
+ "learning_rate": 0.0006,
+ "loss": 4.20712947845459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.6290929317474365,
+ "learning_rate": 0.0006,
+ "loss": 4.229743003845215,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.5494177341461182,
+ "learning_rate": 0.0006,
+ "loss": 4.185794353485107,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.5147525072097778,
+ "learning_rate": 0.0006,
+ "loss": 4.26673698425293,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.5048599243164062,
+ "learning_rate": 0.0006,
+ "loss": 4.210233211517334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.5414654016494751,
+ "learning_rate": 0.0006,
+ "loss": 4.333046913146973,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.47082704305648804,
+ "learning_rate": 0.0006,
+ "loss": 4.301358699798584,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.4675837755203247,
+ "learning_rate": 0.0006,
+ "loss": 4.204195022583008,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.4378611743450165,
+ "learning_rate": 0.0006,
+ "loss": 4.155127048492432,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.4415567219257355,
+ "learning_rate": 0.0006,
+ "loss": 4.2721967697143555,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.47591230273246765,
+ "learning_rate": 0.0006,
+ "loss": 4.358033180236816,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.4658828675746918,
+ "learning_rate": 0.0006,
+ "loss": 4.294735908508301,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.4501555860042572,
+ "learning_rate": 0.0006,
+ "loss": 4.263189315795898,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.46739140152931213,
+ "learning_rate": 0.0006,
+ "loss": 4.32848596572876,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.45165732502937317,
+ "learning_rate": 0.0006,
+ "loss": 4.267234802246094,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.409282922744751,
+ "learning_rate": 0.0006,
+ "loss": 4.285059928894043,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.42865875363349915,
+ "learning_rate": 0.0006,
+ "loss": 4.227115631103516,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.4552954137325287,
+ "learning_rate": 0.0006,
+ "loss": 4.325474739074707,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.42055317759513855,
+ "learning_rate": 0.0006,
+ "loss": 4.2007951736450195,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.4279162287712097,
+ "learning_rate": 0.0006,
+ "loss": 4.359176158905029,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.4455033540725708,
+ "learning_rate": 0.0006,
+ "loss": 4.275487899780273,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.43002691864967346,
+ "learning_rate": 0.0006,
+ "loss": 4.181482315063477,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.44032880663871765,
+ "learning_rate": 0.0006,
+ "loss": 4.36613655090332,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.4100615680217743,
+ "learning_rate": 0.0006,
+ "loss": 4.265050411224365,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.39392155408859253,
+ "learning_rate": 0.0006,
+ "loss": 4.325000762939453,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.4347812533378601,
+ "learning_rate": 0.0006,
+ "loss": 4.307058334350586,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.42177414894104004,
+ "learning_rate": 0.0006,
+ "loss": 4.270357131958008,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.431207537651062,
+ "learning_rate": 0.0006,
+ "loss": 4.414610862731934,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.4254903495311737,
+ "learning_rate": 0.0006,
+ "loss": 4.285326957702637,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.4089864194393158,
+ "learning_rate": 0.0006,
+ "loss": 4.275937080383301,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.4102814197540283,
+ "learning_rate": 0.0006,
+ "loss": 4.303900718688965,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.3859243094921112,
+ "learning_rate": 0.0006,
+ "loss": 4.215274333953857,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.4012472331523895,
+ "learning_rate": 0.0006,
+ "loss": 4.328278541564941,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.4047054648399353,
+ "learning_rate": 0.0006,
+ "loss": 4.276683807373047,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.4050472676753998,
+ "learning_rate": 0.0006,
+ "loss": 4.302199363708496,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.40645819902420044,
+ "learning_rate": 0.0006,
+ "loss": 4.401165008544922,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.3888589143753052,
+ "learning_rate": 0.0006,
+ "loss": 4.258542060852051,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.3865634500980377,
+ "learning_rate": 0.0006,
+ "loss": 4.224770545959473,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.40157631039619446,
+ "learning_rate": 0.0006,
+ "loss": 4.321439743041992,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.4097841680049896,
+ "learning_rate": 0.0006,
+ "loss": 4.436502456665039,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.4125346541404724,
+ "learning_rate": 0.0006,
+ "loss": 4.3067522048950195,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.39692872762680054,
+ "learning_rate": 0.0006,
+ "loss": 4.338959693908691,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.3942561149597168,
+ "learning_rate": 0.0006,
+ "loss": 4.29915714263916,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.3940109610557556,
+ "learning_rate": 0.0006,
+ "loss": 4.343454360961914,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.39725086092948914,
+ "learning_rate": 0.0006,
+ "loss": 4.294066429138184,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.3779081702232361,
+ "learning_rate": 0.0006,
+ "loss": 4.2644758224487305,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.37665313482284546,
+ "learning_rate": 0.0006,
+ "loss": 4.3241119384765625,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.394426167011261,
+ "learning_rate": 0.0006,
+ "loss": 4.391383647918701,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.3948868215084076,
+ "learning_rate": 0.0006,
+ "loss": 4.336596965789795,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.4218588173389435,
+ "learning_rate": 0.0006,
+ "loss": 4.268021583557129,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.3900219202041626,
+ "learning_rate": 0.0006,
+ "loss": 4.323431015014648,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.3683486580848694,
+ "learning_rate": 0.0006,
+ "loss": 4.283624649047852,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.3842235803604126,
+ "learning_rate": 0.0006,
+ "loss": 4.302942752838135,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.40175142884254456,
+ "learning_rate": 0.0006,
+ "loss": 4.394964218139648,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.4041447639465332,
+ "learning_rate": 0.0006,
+ "loss": 4.355955600738525,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.38710159063339233,
+ "learning_rate": 0.0006,
+ "loss": 4.340442180633545,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.38841989636421204,
+ "learning_rate": 0.0006,
+ "loss": 4.380399703979492,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.41300448775291443,
+ "learning_rate": 0.0006,
+ "loss": 4.321839332580566,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.49495911598205566,
+ "learning_rate": 0.0006,
+ "loss": 4.293513774871826,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 6.327922344207764,
+ "eval_runtime": 43.7769,
+ "eval_samples_per_second": 55.783,
+ "eval_steps_per_second": 3.495,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.4602355659008026,
+ "learning_rate": 0.0006,
+ "loss": 4.2585554122924805,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.4733062982559204,
+ "learning_rate": 0.0006,
+ "loss": 4.237922191619873,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.4390600025653839,
+ "learning_rate": 0.0006,
+ "loss": 4.159769058227539,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.44887402653694153,
+ "learning_rate": 0.0006,
+ "loss": 4.2117743492126465,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.4746656119823456,
+ "learning_rate": 0.0006,
+ "loss": 4.22344446182251,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.4502047598361969,
+ "learning_rate": 0.0006,
+ "loss": 4.179043769836426,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.4669528603553772,
+ "learning_rate": 0.0006,
+ "loss": 4.242807388305664,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.48304441571235657,
+ "learning_rate": 0.0006,
+ "loss": 4.243523597717285,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.4745117425918579,
+ "learning_rate": 0.0006,
+ "loss": 4.271031856536865,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.42403295636177063,
+ "learning_rate": 0.0006,
+ "loss": 4.231593132019043,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.4177025556564331,
+ "learning_rate": 0.0006,
+ "loss": 4.1239848136901855,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.44315826892852783,
+ "learning_rate": 0.0006,
+ "loss": 4.293359279632568,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.4518056809902191,
+ "learning_rate": 0.0006,
+ "loss": 4.238755226135254,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.4481995701789856,
+ "learning_rate": 0.0006,
+ "loss": 4.10948371887207,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.4367348253726959,
+ "learning_rate": 0.0006,
+ "loss": 4.289554595947266,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.41825398802757263,
+ "learning_rate": 0.0006,
+ "loss": 4.201297760009766,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.4390457570552826,
+ "learning_rate": 0.0006,
+ "loss": 4.387355804443359,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.4219510853290558,
+ "learning_rate": 0.0006,
+ "loss": 4.234352111816406,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.4195581078529358,
+ "learning_rate": 0.0006,
+ "loss": 4.213441371917725,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.4425918459892273,
+ "learning_rate": 0.0006,
+ "loss": 4.268826007843018,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.4734676778316498,
+ "learning_rate": 0.0006,
+ "loss": 4.266847610473633,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.48404407501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.241931915283203,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.4946669936180115,
+ "learning_rate": 0.0006,
+ "loss": 4.250909805297852,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.47972625494003296,
+ "learning_rate": 0.0006,
+ "loss": 4.195961952209473,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.4569213390350342,
+ "learning_rate": 0.0006,
+ "loss": 4.296036720275879,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.4644681215286255,
+ "learning_rate": 0.0006,
+ "loss": 4.216559410095215,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.48317641019821167,
+ "learning_rate": 0.0006,
+ "loss": 4.3226318359375,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.5122473835945129,
+ "learning_rate": 0.0006,
+ "loss": 4.366876602172852,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.5485180020332336,
+ "learning_rate": 0.0006,
+ "loss": 4.2639265060424805,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.5493056774139404,
+ "learning_rate": 0.0006,
+ "loss": 4.315012454986572,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.5442193150520325,
+ "learning_rate": 0.0006,
+ "loss": 4.293516159057617,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.5160698294639587,
+ "learning_rate": 0.0006,
+ "loss": 4.203614234924316,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.4583905041217804,
+ "learning_rate": 0.0006,
+ "loss": 4.204253673553467,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.47937676310539246,
+ "learning_rate": 0.0006,
+ "loss": 4.225821495056152,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.4585326611995697,
+ "learning_rate": 0.0006,
+ "loss": 4.27936315536499,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.4224967658519745,
+ "learning_rate": 0.0006,
+ "loss": 4.396998405456543,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.43489396572113037,
+ "learning_rate": 0.0006,
+ "loss": 4.321684837341309,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.43469369411468506,
+ "learning_rate": 0.0006,
+ "loss": 4.333868980407715,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.4171457588672638,
+ "learning_rate": 0.0006,
+ "loss": 4.212692737579346,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.40925848484039307,
+ "learning_rate": 0.0006,
+ "loss": 4.354894638061523,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.42900922894477844,
+ "learning_rate": 0.0006,
+ "loss": 4.309920310974121,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.42338159680366516,
+ "learning_rate": 0.0006,
+ "loss": 4.2942705154418945,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.4057067930698395,
+ "learning_rate": 0.0006,
+ "loss": 4.214710235595703,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.4072226583957672,
+ "learning_rate": 0.0006,
+ "loss": 4.312472343444824,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.3916485905647278,
+ "learning_rate": 0.0006,
+ "loss": 4.237615585327148,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.42151209712028503,
+ "learning_rate": 0.0006,
+ "loss": 4.377703666687012,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.44910693168640137,
+ "learning_rate": 0.0006,
+ "loss": 4.425722122192383,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.46527767181396484,
+ "learning_rate": 0.0006,
+ "loss": 4.26363468170166,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.45423775911331177,
+ "learning_rate": 0.0006,
+ "loss": 4.219768047332764,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.4229055345058441,
+ "learning_rate": 0.0006,
+ "loss": 4.2751007080078125,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.4136784076690674,
+ "learning_rate": 0.0006,
+ "loss": 4.256582736968994,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.42408230900764465,
+ "learning_rate": 0.0006,
+ "loss": 4.341879844665527,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.4360068142414093,
+ "learning_rate": 0.0006,
+ "loss": 4.2564802169799805,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.4251601994037628,
+ "learning_rate": 0.0006,
+ "loss": 4.370902061462402,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.4240182936191559,
+ "learning_rate": 0.0006,
+ "loss": 4.357310771942139,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.40821802616119385,
+ "learning_rate": 0.0006,
+ "loss": 4.299274444580078,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.42971381545066833,
+ "learning_rate": 0.0006,
+ "loss": 4.339339256286621,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.4170750677585602,
+ "learning_rate": 0.0006,
+ "loss": 4.295743942260742,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.4416576027870178,
+ "learning_rate": 0.0006,
+ "loss": 4.31326961517334,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.43994101881980896,
+ "learning_rate": 0.0006,
+ "loss": 4.286459922790527,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.43738171458244324,
+ "learning_rate": 0.0006,
+ "loss": 4.3276166915893555,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.42107513546943665,
+ "learning_rate": 0.0006,
+ "loss": 4.276320457458496,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.4138924479484558,
+ "learning_rate": 0.0006,
+ "loss": 4.263800621032715,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.4136491119861603,
+ "learning_rate": 0.0006,
+ "loss": 4.3641462326049805,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.4299047291278839,
+ "learning_rate": 0.0006,
+ "loss": 4.395074844360352,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.4680858552455902,
+ "learning_rate": 0.0006,
+ "loss": 4.29918098449707,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.5115722417831421,
+ "learning_rate": 0.0006,
+ "loss": 4.317390441894531,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.49535948038101196,
+ "learning_rate": 0.0006,
+ "loss": 4.311214447021484,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.44336947798728943,
+ "learning_rate": 0.0006,
+ "loss": 4.410158157348633,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.41606271266937256,
+ "learning_rate": 0.0006,
+ "loss": 4.303007125854492,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.3919375538825989,
+ "learning_rate": 0.0006,
+ "loss": 4.271506309509277,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.4847380518913269,
+ "learning_rate": 0.0006,
+ "loss": 4.368446350097656,
+ "step": 5760
+ },
+ {
+ "epoch": 80.0,
+ "eval_loss": 6.289350509643555,
+ "eval_runtime": 43.7865,
+ "eval_samples_per_second": 55.771,
+ "eval_steps_per_second": 3.494,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.4189201593399048,
+ "learning_rate": 0.0006,
+ "loss": 4.182366847991943,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.4759898781776428,
+ "learning_rate": 0.0006,
+ "loss": 4.19309139251709,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.527441680431366,
+ "learning_rate": 0.0006,
+ "loss": 4.219327926635742,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.519743025302887,
+ "learning_rate": 0.0006,
+ "loss": 4.141674995422363,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.4941118657588959,
+ "learning_rate": 0.0006,
+ "loss": 4.151315212249756,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.5262619256973267,
+ "learning_rate": 0.0006,
+ "loss": 4.181960105895996,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.6155849099159241,
+ "learning_rate": 0.0006,
+ "loss": 4.21251106262207,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.7172285914421082,
+ "learning_rate": 0.0006,
+ "loss": 4.233085632324219,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.7969664931297302,
+ "learning_rate": 0.0006,
+ "loss": 4.231586933135986,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.7671365141868591,
+ "learning_rate": 0.0006,
+ "loss": 4.288948059082031,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.6886342167854309,
+ "learning_rate": 0.0006,
+ "loss": 4.186882495880127,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.613745927810669,
+ "learning_rate": 0.0006,
+ "loss": 4.22116756439209,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.6049351096153259,
+ "learning_rate": 0.0006,
+ "loss": 4.247993469238281,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.5160547494888306,
+ "learning_rate": 0.0006,
+ "loss": 4.230243682861328,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.5072378516197205,
+ "learning_rate": 0.0006,
+ "loss": 4.1789140701293945,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.5201945304870605,
+ "learning_rate": 0.0006,
+ "loss": 4.2888031005859375,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.5084741711616516,
+ "learning_rate": 0.0006,
+ "loss": 4.204905986785889,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.45192697644233704,
+ "learning_rate": 0.0006,
+ "loss": 4.273176193237305,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.4638829827308655,
+ "learning_rate": 0.0006,
+ "loss": 4.276776313781738,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.5091138482093811,
+ "learning_rate": 0.0006,
+ "loss": 4.20111083984375,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.5181353092193604,
+ "learning_rate": 0.0006,
+ "loss": 4.270737648010254,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.4666393995285034,
+ "learning_rate": 0.0006,
+ "loss": 4.220527648925781,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.4459801912307739,
+ "learning_rate": 0.0006,
+ "loss": 4.246898651123047,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.44209161400794983,
+ "learning_rate": 0.0006,
+ "loss": 4.2897796630859375,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.44252556562423706,
+ "learning_rate": 0.0006,
+ "loss": 4.31494665145874,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.43231600522994995,
+ "learning_rate": 0.0006,
+ "loss": 4.341650009155273,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.4496018886566162,
+ "learning_rate": 0.0006,
+ "loss": 4.222264766693115,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.41425642371177673,
+ "learning_rate": 0.0006,
+ "loss": 4.258854866027832,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.4198642671108246,
+ "learning_rate": 0.0006,
+ "loss": 4.286402225494385,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.4175935387611389,
+ "learning_rate": 0.0006,
+ "loss": 4.329756736755371,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.42901840806007385,
+ "learning_rate": 0.0006,
+ "loss": 4.2249555587768555,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.41729676723480225,
+ "learning_rate": 0.0006,
+ "loss": 4.25307559967041,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.44785404205322266,
+ "learning_rate": 0.0006,
+ "loss": 4.279146194458008,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.45788508653640747,
+ "learning_rate": 0.0006,
+ "loss": 4.185768127441406,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.4351639747619629,
+ "learning_rate": 0.0006,
+ "loss": 4.20334529876709,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.41771501302719116,
+ "learning_rate": 0.0006,
+ "loss": 4.2551493644714355,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.41627222299575806,
+ "learning_rate": 0.0006,
+ "loss": 4.277044296264648,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.44212380051612854,
+ "learning_rate": 0.0006,
+ "loss": 4.225511074066162,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.38782668113708496,
+ "learning_rate": 0.0006,
+ "loss": 4.245084762573242,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.3984670341014862,
+ "learning_rate": 0.0006,
+ "loss": 4.318271160125732,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.3934188783168793,
+ "learning_rate": 0.0006,
+ "loss": 4.2478485107421875,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.38275960087776184,
+ "learning_rate": 0.0006,
+ "loss": 4.166913032531738,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.4073631465435028,
+ "learning_rate": 0.0006,
+ "loss": 4.325770378112793,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.40767619013786316,
+ "learning_rate": 0.0006,
+ "loss": 4.337563514709473,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.4344850778579712,
+ "learning_rate": 0.0006,
+ "loss": 4.339216709136963,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.4321129024028778,
+ "learning_rate": 0.0006,
+ "loss": 4.251045227050781,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.42891228199005127,
+ "learning_rate": 0.0006,
+ "loss": 4.339747428894043,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.430338054895401,
+ "learning_rate": 0.0006,
+ "loss": 4.290801525115967,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.44881945848464966,
+ "learning_rate": 0.0006,
+ "loss": 4.290616989135742,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.41193726658821106,
+ "learning_rate": 0.0006,
+ "loss": 4.178008079528809,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.3986659348011017,
+ "learning_rate": 0.0006,
+ "loss": 4.24334716796875,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.4000692665576935,
+ "learning_rate": 0.0006,
+ "loss": 4.273529052734375,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.4126340448856354,
+ "learning_rate": 0.0006,
+ "loss": 4.316381454467773,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.3987399935722351,
+ "learning_rate": 0.0006,
+ "loss": 4.253186225891113,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.3934975564479828,
+ "learning_rate": 0.0006,
+ "loss": 4.316921234130859,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.39915889501571655,
+ "learning_rate": 0.0006,
+ "loss": 4.304752349853516,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.4130222499370575,
+ "learning_rate": 0.0006,
+ "loss": 4.325786590576172,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.42784422636032104,
+ "learning_rate": 0.0006,
+ "loss": 4.316120624542236,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.4270218312740326,
+ "learning_rate": 0.0006,
+ "loss": 4.3773698806762695,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.4531627297401428,
+ "learning_rate": 0.0006,
+ "loss": 4.291565418243408,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.43761077523231506,
+ "learning_rate": 0.0006,
+ "loss": 4.318550109863281,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.43666771054267883,
+ "learning_rate": 0.0006,
+ "loss": 4.310146331787109,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.41557514667510986,
+ "learning_rate": 0.0006,
+ "loss": 4.278397083282471,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.3992885649204254,
+ "learning_rate": 0.0006,
+ "loss": 4.330907821655273,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.41442859172821045,
+ "learning_rate": 0.0006,
+ "loss": 4.380483627319336,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.42367640137672424,
+ "learning_rate": 0.0006,
+ "loss": 4.370355129241943,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.4104510247707367,
+ "learning_rate": 0.0006,
+ "loss": 4.243627548217773,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.4377829134464264,
+ "learning_rate": 0.0006,
+ "loss": 4.434067726135254,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.44119682908058167,
+ "learning_rate": 0.0006,
+ "loss": 4.379904747009277,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.4018053114414215,
+ "learning_rate": 0.0006,
+ "loss": 4.286595344543457,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.4040871560573578,
+ "learning_rate": 0.0006,
+ "loss": 4.337483882904053,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.4790824055671692,
+ "learning_rate": 0.0006,
+ "loss": 4.364114761352539,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 6.3435444831848145,
+ "eval_runtime": 43.8507,
+ "eval_samples_per_second": 55.689,
+ "eval_steps_per_second": 3.489,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.447443425655365,
+ "learning_rate": 0.0006,
+ "loss": 4.273200988769531,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.4924955368041992,
+ "learning_rate": 0.0006,
+ "loss": 4.222320079803467,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.6066558957099915,
+ "learning_rate": 0.0006,
+ "loss": 4.145882606506348,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.7758402824401855,
+ "learning_rate": 0.0006,
+ "loss": 4.182838439941406,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 1.005454659461975,
+ "learning_rate": 0.0006,
+ "loss": 4.156442642211914,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 1.1113026142120361,
+ "learning_rate": 0.0006,
+ "loss": 4.239047050476074,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.7954476475715637,
+ "learning_rate": 0.0006,
+ "loss": 4.231141090393066,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.7038424611091614,
+ "learning_rate": 0.0006,
+ "loss": 4.308542728424072,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.6864593029022217,
+ "learning_rate": 0.0006,
+ "loss": 4.214676380157471,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.6193567514419556,
+ "learning_rate": 0.0006,
+ "loss": 4.243054389953613,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.6326499581336975,
+ "learning_rate": 0.0006,
+ "loss": 4.307093143463135,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.633601725101471,
+ "learning_rate": 0.0006,
+ "loss": 4.28586483001709,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.5711596012115479,
+ "learning_rate": 0.0006,
+ "loss": 4.190366744995117,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.582478404045105,
+ "learning_rate": 0.0006,
+ "loss": 4.243340492248535,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.5870423316955566,
+ "learning_rate": 0.0006,
+ "loss": 4.330052852630615,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.5572404265403748,
+ "learning_rate": 0.0006,
+ "loss": 4.221210956573486,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.48703816533088684,
+ "learning_rate": 0.0006,
+ "loss": 4.246015548706055,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.4946155548095703,
+ "learning_rate": 0.0006,
+ "loss": 4.203368186950684,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.48104000091552734,
+ "learning_rate": 0.0006,
+ "loss": 4.195788383483887,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.4884639382362366,
+ "learning_rate": 0.0006,
+ "loss": 4.246498107910156,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.46171557903289795,
+ "learning_rate": 0.0006,
+ "loss": 4.271712779998779,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.4299808740615845,
+ "learning_rate": 0.0006,
+ "loss": 4.2654619216918945,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.4515123963356018,
+ "learning_rate": 0.0006,
+ "loss": 4.270195960998535,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.4448329210281372,
+ "learning_rate": 0.0006,
+ "loss": 4.295469284057617,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.43523281812667847,
+ "learning_rate": 0.0006,
+ "loss": 4.234511375427246,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.4352431893348694,
+ "learning_rate": 0.0006,
+ "loss": 4.27800178527832,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.43417713046073914,
+ "learning_rate": 0.0006,
+ "loss": 4.291177749633789,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.4469117224216461,
+ "learning_rate": 0.0006,
+ "loss": 4.273797512054443,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.40459394454956055,
+ "learning_rate": 0.0006,
+ "loss": 4.160533428192139,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.37974515557289124,
+ "learning_rate": 0.0006,
+ "loss": 4.165892124176025,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.4303241968154907,
+ "learning_rate": 0.0006,
+ "loss": 4.261228561401367,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.4212931990623474,
+ "learning_rate": 0.0006,
+ "loss": 4.186488628387451,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.39888855814933777,
+ "learning_rate": 0.0006,
+ "loss": 4.256392955780029,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.4147864282131195,
+ "learning_rate": 0.0006,
+ "loss": 4.285519599914551,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.4054912328720093,
+ "learning_rate": 0.0006,
+ "loss": 4.235527038574219,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.3942243158817291,
+ "learning_rate": 0.0006,
+ "loss": 4.235358715057373,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.3859952390193939,
+ "learning_rate": 0.0006,
+ "loss": 4.178792476654053,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.3996407389640808,
+ "learning_rate": 0.0006,
+ "loss": 4.332685470581055,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.3997543156147003,
+ "learning_rate": 0.0006,
+ "loss": 4.172628879547119,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.40761199593544006,
+ "learning_rate": 0.0006,
+ "loss": 4.25240421295166,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.4187498986721039,
+ "learning_rate": 0.0006,
+ "loss": 4.23222541809082,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.39432984590530396,
+ "learning_rate": 0.0006,
+ "loss": 4.1483025550842285,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.4413979947566986,
+ "learning_rate": 0.0006,
+ "loss": 4.262289524078369,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.4385976791381836,
+ "learning_rate": 0.0006,
+ "loss": 4.160347938537598,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.4254113733768463,
+ "learning_rate": 0.0006,
+ "loss": 4.235913276672363,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.40139102935791016,
+ "learning_rate": 0.0006,
+ "loss": 4.338469505310059,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.41311147809028625,
+ "learning_rate": 0.0006,
+ "loss": 4.259404182434082,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.41248565912246704,
+ "learning_rate": 0.0006,
+ "loss": 4.311250686645508,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.43279120326042175,
+ "learning_rate": 0.0006,
+ "loss": 4.352819919586182,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.4341239035129547,
+ "learning_rate": 0.0006,
+ "loss": 4.201631546020508,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.42909830808639526,
+ "learning_rate": 0.0006,
+ "loss": 4.250114440917969,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.4029415249824524,
+ "learning_rate": 0.0006,
+ "loss": 4.280141830444336,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.4094693660736084,
+ "learning_rate": 0.0006,
+ "loss": 4.245151519775391,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.4380780756473541,
+ "learning_rate": 0.0006,
+ "loss": 4.369032859802246,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.46046847105026245,
+ "learning_rate": 0.0006,
+ "loss": 4.357504844665527,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.47439682483673096,
+ "learning_rate": 0.0006,
+ "loss": 4.28305721282959,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.44236937165260315,
+ "learning_rate": 0.0006,
+ "loss": 4.242401599884033,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.4143677353858948,
+ "learning_rate": 0.0006,
+ "loss": 4.362359046936035,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.4057272970676422,
+ "learning_rate": 0.0006,
+ "loss": 4.30042028427124,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.4250582456588745,
+ "learning_rate": 0.0006,
+ "loss": 4.2771711349487305,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.426998108625412,
+ "learning_rate": 0.0006,
+ "loss": 4.280099391937256,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.4197818636894226,
+ "learning_rate": 0.0006,
+ "loss": 4.342541694641113,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.412741094827652,
+ "learning_rate": 0.0006,
+ "loss": 4.25786828994751,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.4071856737136841,
+ "learning_rate": 0.0006,
+ "loss": 4.214151382446289,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.41681522130966187,
+ "learning_rate": 0.0006,
+ "loss": 4.318428039550781,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.4144262373447418,
+ "learning_rate": 0.0006,
+ "loss": 4.37365198135376,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.3930285573005676,
+ "learning_rate": 0.0006,
+ "loss": 4.281595230102539,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.40847325325012207,
+ "learning_rate": 0.0006,
+ "loss": 4.326107978820801,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.4196723997592926,
+ "learning_rate": 0.0006,
+ "loss": 4.267861366271973,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.4259124994277954,
+ "learning_rate": 0.0006,
+ "loss": 4.370932579040527,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.3915783166885376,
+ "learning_rate": 0.0006,
+ "loss": 4.19312047958374,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.45746830105781555,
+ "learning_rate": 0.0006,
+ "loss": 4.177214622497559,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 6.357029914855957,
+ "eval_runtime": 43.7795,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.41968968510627747,
+ "learning_rate": 0.0006,
+ "loss": 4.200979709625244,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.4584674537181854,
+ "learning_rate": 0.0006,
+ "loss": 4.1334381103515625,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.4660768508911133,
+ "learning_rate": 0.0006,
+ "loss": 4.200084686279297,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.4789487421512604,
+ "learning_rate": 0.0006,
+ "loss": 4.172554016113281,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.49461299180984497,
+ "learning_rate": 0.0006,
+ "loss": 4.285592079162598,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.5337462425231934,
+ "learning_rate": 0.0006,
+ "loss": 4.229425430297852,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.5576419234275818,
+ "learning_rate": 0.0006,
+ "loss": 4.233409881591797,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.5294531583786011,
+ "learning_rate": 0.0006,
+ "loss": 4.19575309753418,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.5647598505020142,
+ "learning_rate": 0.0006,
+ "loss": 4.213438510894775,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.6300318241119385,
+ "learning_rate": 0.0006,
+ "loss": 4.2297210693359375,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.7726603746414185,
+ "learning_rate": 0.0006,
+ "loss": 4.2555036544799805,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 1.0104360580444336,
+ "learning_rate": 0.0006,
+ "loss": 4.271825790405273,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 1.1859381198883057,
+ "learning_rate": 0.0006,
+ "loss": 4.233576774597168,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.7926550507545471,
+ "learning_rate": 0.0006,
+ "loss": 4.237586498260498,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.6820129156112671,
+ "learning_rate": 0.0006,
+ "loss": 4.299962043762207,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.7082132697105408,
+ "learning_rate": 0.0006,
+ "loss": 4.243724822998047,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.7050187587738037,
+ "learning_rate": 0.0006,
+ "loss": 4.152876853942871,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.6219658255577087,
+ "learning_rate": 0.0006,
+ "loss": 4.254920959472656,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.5747959017753601,
+ "learning_rate": 0.0006,
+ "loss": 4.228151798248291,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.5477624535560608,
+ "learning_rate": 0.0006,
+ "loss": 4.211681842803955,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.5370446443557739,
+ "learning_rate": 0.0006,
+ "loss": 4.241825580596924,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.4855964779853821,
+ "learning_rate": 0.0006,
+ "loss": 4.195348739624023,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.4688033163547516,
+ "learning_rate": 0.0006,
+ "loss": 4.21632194519043,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.4556921124458313,
+ "learning_rate": 0.0006,
+ "loss": 4.177244186401367,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.4724311828613281,
+ "learning_rate": 0.0006,
+ "loss": 4.188458442687988,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.48350122570991516,
+ "learning_rate": 0.0006,
+ "loss": 4.269173622131348,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.47434476017951965,
+ "learning_rate": 0.0006,
+ "loss": 4.210025787353516,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.44016721844673157,
+ "learning_rate": 0.0006,
+ "loss": 4.200996398925781,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.43595024943351746,
+ "learning_rate": 0.0006,
+ "loss": 4.280470848083496,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.43968138098716736,
+ "learning_rate": 0.0006,
+ "loss": 4.12271785736084,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.4622724950313568,
+ "learning_rate": 0.0006,
+ "loss": 4.2784013748168945,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.42840784788131714,
+ "learning_rate": 0.0006,
+ "loss": 4.205509185791016,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.42756643891334534,
+ "learning_rate": 0.0006,
+ "loss": 4.240240573883057,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.4455983340740204,
+ "learning_rate": 0.0006,
+ "loss": 4.170627593994141,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.47522759437561035,
+ "learning_rate": 0.0006,
+ "loss": 4.216513633728027,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.46860823035240173,
+ "learning_rate": 0.0006,
+ "loss": 4.224852561950684,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.45451217889785767,
+ "learning_rate": 0.0006,
+ "loss": 4.320342063903809,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.4033358097076416,
+ "learning_rate": 0.0006,
+ "loss": 4.174200057983398,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.4156914949417114,
+ "learning_rate": 0.0006,
+ "loss": 4.112459659576416,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.4248296618461609,
+ "learning_rate": 0.0006,
+ "loss": 4.203481674194336,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.44323766231536865,
+ "learning_rate": 0.0006,
+ "loss": 4.23320198059082,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.4104357659816742,
+ "learning_rate": 0.0006,
+ "loss": 4.248687744140625,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.4133552610874176,
+ "learning_rate": 0.0006,
+ "loss": 4.261547088623047,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.46102720499038696,
+ "learning_rate": 0.0006,
+ "loss": 4.248725414276123,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.46091315150260925,
+ "learning_rate": 0.0006,
+ "loss": 4.278741836547852,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.4718199670314789,
+ "learning_rate": 0.0006,
+ "loss": 4.287023544311523,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.4677143394947052,
+ "learning_rate": 0.0006,
+ "loss": 4.2407073974609375,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.4627108871936798,
+ "learning_rate": 0.0006,
+ "loss": 4.288060188293457,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.48298877477645874,
+ "learning_rate": 0.0006,
+ "loss": 4.3333258628845215,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.4674181342124939,
+ "learning_rate": 0.0006,
+ "loss": 4.29932165145874,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.4250151216983795,
+ "learning_rate": 0.0006,
+ "loss": 4.271842002868652,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.4271775484085083,
+ "learning_rate": 0.0006,
+ "loss": 4.230886459350586,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.4614356756210327,
+ "learning_rate": 0.0006,
+ "loss": 4.291038513183594,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.4506745934486389,
+ "learning_rate": 0.0006,
+ "loss": 4.2282562255859375,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.43020278215408325,
+ "learning_rate": 0.0006,
+ "loss": 4.255861282348633,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.4066062271595001,
+ "learning_rate": 0.0006,
+ "loss": 4.360322952270508,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.4263683557510376,
+ "learning_rate": 0.0006,
+ "loss": 4.27037239074707,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.39514079689979553,
+ "learning_rate": 0.0006,
+ "loss": 4.258206367492676,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.41911759972572327,
+ "learning_rate": 0.0006,
+ "loss": 4.279756546020508,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.41042575240135193,
+ "learning_rate": 0.0006,
+ "loss": 4.343293190002441,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.40530115365982056,
+ "learning_rate": 0.0006,
+ "loss": 4.30220890045166,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.41333019733428955,
+ "learning_rate": 0.0006,
+ "loss": 4.293051719665527,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.4278717041015625,
+ "learning_rate": 0.0006,
+ "loss": 4.200895309448242,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.38954365253448486,
+ "learning_rate": 0.0006,
+ "loss": 4.349408149719238,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.39665845036506653,
+ "learning_rate": 0.0006,
+ "loss": 4.278497219085693,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.4175996780395508,
+ "learning_rate": 0.0006,
+ "loss": 4.348122596740723,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.3897883892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.327902317047119,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.39896222949028015,
+ "learning_rate": 0.0006,
+ "loss": 4.2651143074035645,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.39377546310424805,
+ "learning_rate": 0.0006,
+ "loss": 4.351605415344238,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.39766061305999756,
+ "learning_rate": 0.0006,
+ "loss": 4.243964195251465,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.3842772841453552,
+ "learning_rate": 0.0006,
+ "loss": 4.267043590545654,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.49257901310920715,
+ "learning_rate": 0.0006,
+ "loss": 4.390436172485352,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 6.3845720291137695,
+ "eval_runtime": 43.659,
+ "eval_samples_per_second": 55.933,
+ "eval_steps_per_second": 3.504,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.4391154944896698,
+ "learning_rate": 0.0006,
+ "loss": 4.111626148223877,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.5148889422416687,
+ "learning_rate": 0.0006,
+ "loss": 4.127384662628174,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.5173138976097107,
+ "learning_rate": 0.0006,
+ "loss": 4.204227447509766,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.4456957280635834,
+ "learning_rate": 0.0006,
+ "loss": 4.200007438659668,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.44515037536621094,
+ "learning_rate": 0.0006,
+ "loss": 4.125116348266602,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.44603443145751953,
+ "learning_rate": 0.0006,
+ "loss": 4.114563465118408,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.43450453877449036,
+ "learning_rate": 0.0006,
+ "loss": 4.147992134094238,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.432449609041214,
+ "learning_rate": 0.0006,
+ "loss": 4.1462626457214355,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.45551928877830505,
+ "learning_rate": 0.0006,
+ "loss": 4.160435676574707,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.472989946603775,
+ "learning_rate": 0.0006,
+ "loss": 4.168758392333984,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.4804964065551758,
+ "learning_rate": 0.0006,
+ "loss": 4.29326057434082,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.5023837685585022,
+ "learning_rate": 0.0006,
+ "loss": 4.129997730255127,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.554080605506897,
+ "learning_rate": 0.0006,
+ "loss": 4.210216999053955,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.6329277753829956,
+ "learning_rate": 0.0006,
+ "loss": 4.239630699157715,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.6927154064178467,
+ "learning_rate": 0.0006,
+ "loss": 4.205781936645508,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.6770079731941223,
+ "learning_rate": 0.0006,
+ "loss": 4.175786018371582,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.5854576230049133,
+ "learning_rate": 0.0006,
+ "loss": 4.234147071838379,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.529286801815033,
+ "learning_rate": 0.0006,
+ "loss": 4.11967134475708,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.5517066717147827,
+ "learning_rate": 0.0006,
+ "loss": 4.235705375671387,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.5938349366188049,
+ "learning_rate": 0.0006,
+ "loss": 4.2656755447387695,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.6056738495826721,
+ "learning_rate": 0.0006,
+ "loss": 4.246652126312256,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.5960127711296082,
+ "learning_rate": 0.0006,
+ "loss": 4.150732517242432,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.5769783854484558,
+ "learning_rate": 0.0006,
+ "loss": 4.2447919845581055,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.5047983527183533,
+ "learning_rate": 0.0006,
+ "loss": 4.215879440307617,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.5035821199417114,
+ "learning_rate": 0.0006,
+ "loss": 4.265319347381592,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.4539526402950287,
+ "learning_rate": 0.0006,
+ "loss": 4.2058539390563965,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.4950912594795227,
+ "learning_rate": 0.0006,
+ "loss": 4.384343147277832,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.4687364101409912,
+ "learning_rate": 0.0006,
+ "loss": 4.220507621765137,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.46328020095825195,
+ "learning_rate": 0.0006,
+ "loss": 4.193594455718994,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.48333385586738586,
+ "learning_rate": 0.0006,
+ "loss": 4.288180351257324,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.4870767593383789,
+ "learning_rate": 0.0006,
+ "loss": 4.270781517028809,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.48339006304740906,
+ "learning_rate": 0.0006,
+ "loss": 4.165823936462402,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.46628767251968384,
+ "learning_rate": 0.0006,
+ "loss": 4.272879600524902,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.43664637207984924,
+ "learning_rate": 0.0006,
+ "loss": 4.170869827270508,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.4373452365398407,
+ "learning_rate": 0.0006,
+ "loss": 4.2506489753723145,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.47709426283836365,
+ "learning_rate": 0.0006,
+ "loss": 4.297833442687988,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.49829018115997314,
+ "learning_rate": 0.0006,
+ "loss": 4.171062469482422,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.487209290266037,
+ "learning_rate": 0.0006,
+ "loss": 4.236351013183594,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.4661620557308197,
+ "learning_rate": 0.0006,
+ "loss": 4.193465232849121,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.4790615439414978,
+ "learning_rate": 0.0006,
+ "loss": 4.238525390625,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.4469921290874481,
+ "learning_rate": 0.0006,
+ "loss": 4.239880084991455,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.4821740984916687,
+ "learning_rate": 0.0006,
+ "loss": 4.237403392791748,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.48282673954963684,
+ "learning_rate": 0.0006,
+ "loss": 4.1664228439331055,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.41682642698287964,
+ "learning_rate": 0.0006,
+ "loss": 4.216082572937012,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.41478675603866577,
+ "learning_rate": 0.0006,
+ "loss": 4.309684753417969,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.4269796311855316,
+ "learning_rate": 0.0006,
+ "loss": 4.2372541427612305,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.4389215409755707,
+ "learning_rate": 0.0006,
+ "loss": 4.2590179443359375,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.458717942237854,
+ "learning_rate": 0.0006,
+ "loss": 4.313959121704102,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.47272592782974243,
+ "learning_rate": 0.0006,
+ "loss": 4.3018903732299805,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.46145138144493103,
+ "learning_rate": 0.0006,
+ "loss": 4.287712097167969,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.45914238691329956,
+ "learning_rate": 0.0006,
+ "loss": 4.287365913391113,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.45007017254829407,
+ "learning_rate": 0.0006,
+ "loss": 4.207084655761719,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.4381447434425354,
+ "learning_rate": 0.0006,
+ "loss": 4.311388969421387,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.44748032093048096,
+ "learning_rate": 0.0006,
+ "loss": 4.346423625946045,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.45367518067359924,
+ "learning_rate": 0.0006,
+ "loss": 4.300904273986816,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.407585084438324,
+ "learning_rate": 0.0006,
+ "loss": 4.271082401275635,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.4048030972480774,
+ "learning_rate": 0.0006,
+ "loss": 4.239479064941406,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.4034517705440521,
+ "learning_rate": 0.0006,
+ "loss": 4.2660675048828125,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.4124349057674408,
+ "learning_rate": 0.0006,
+ "loss": 4.311362266540527,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.424675315618515,
+ "learning_rate": 0.0006,
+ "loss": 4.300950527191162,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.4398607313632965,
+ "learning_rate": 0.0006,
+ "loss": 4.274449348449707,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.4407024383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.314581871032715,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.44054970145225525,
+ "learning_rate": 0.0006,
+ "loss": 4.274312973022461,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.4406360685825348,
+ "learning_rate": 0.0006,
+ "loss": 4.349391460418701,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.4325377941131592,
+ "learning_rate": 0.0006,
+ "loss": 4.235274314880371,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.4063146114349365,
+ "learning_rate": 0.0006,
+ "loss": 4.224005699157715,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.40214279294013977,
+ "learning_rate": 0.0006,
+ "loss": 4.304279327392578,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.413821816444397,
+ "learning_rate": 0.0006,
+ "loss": 4.2585906982421875,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.4437064230442047,
+ "learning_rate": 0.0006,
+ "loss": 4.387950897216797,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.44573846459388733,
+ "learning_rate": 0.0006,
+ "loss": 4.2619805335998535,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.46081477403640747,
+ "learning_rate": 0.0006,
+ "loss": 4.32242488861084,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.5210936069488525,
+ "learning_rate": 0.0006,
+ "loss": 4.432188034057617,
+ "step": 6048
+ },
+ {
+ "epoch": 84.0,
+ "eval_loss": 6.362637519836426,
+ "eval_runtime": 43.7803,
+ "eval_samples_per_second": 55.779,
+ "eval_steps_per_second": 3.495,
+ "step": 6048
+ },
+ {
+ "epoch": 84.01397990388816,
+ "grad_norm": 0.47436055541038513,
+ "learning_rate": 0.0006,
+ "loss": 4.191722869873047,
+ "step": 6049
+ },
+ {
+ "epoch": 84.02795980777633,
+ "grad_norm": 0.49965932965278625,
+ "learning_rate": 0.0006,
+ "loss": 4.258981227874756,
+ "step": 6050
+ },
+ {
+ "epoch": 84.04193971166448,
+ "grad_norm": 0.534188449382782,
+ "learning_rate": 0.0006,
+ "loss": 4.140765190124512,
+ "step": 6051
+ },
+ {
+ "epoch": 84.05591961555264,
+ "grad_norm": 0.5774598717689514,
+ "learning_rate": 0.0006,
+ "loss": 4.202078819274902,
+ "step": 6052
+ },
+ {
+ "epoch": 84.06989951944081,
+ "grad_norm": 0.5815461277961731,
+ "learning_rate": 0.0006,
+ "loss": 4.146556377410889,
+ "step": 6053
+ },
+ {
+ "epoch": 84.08387942332897,
+ "grad_norm": 0.5998873710632324,
+ "learning_rate": 0.0006,
+ "loss": 4.162553787231445,
+ "step": 6054
+ },
+ {
+ "epoch": 84.09785932721712,
+ "grad_norm": 0.6092634797096252,
+ "learning_rate": 0.0006,
+ "loss": 4.187989234924316,
+ "step": 6055
+ },
+ {
+ "epoch": 84.1118392311053,
+ "grad_norm": 0.6370293498039246,
+ "learning_rate": 0.0006,
+ "loss": 4.2049880027771,
+ "step": 6056
+ },
+ {
+ "epoch": 84.12581913499345,
+ "grad_norm": 0.6683672070503235,
+ "learning_rate": 0.0006,
+ "loss": 4.2524003982543945,
+ "step": 6057
+ },
+ {
+ "epoch": 84.1397990388816,
+ "grad_norm": 0.7103533744812012,
+ "learning_rate": 0.0006,
+ "loss": 4.236176490783691,
+ "step": 6058
+ },
+ {
+ "epoch": 84.15377894276976,
+ "grad_norm": 0.6803413033485413,
+ "learning_rate": 0.0006,
+ "loss": 4.137399673461914,
+ "step": 6059
+ },
+ {
+ "epoch": 84.16775884665793,
+ "grad_norm": 0.6188878417015076,
+ "learning_rate": 0.0006,
+ "loss": 4.167574882507324,
+ "step": 6060
+ },
+ {
+ "epoch": 84.18173875054609,
+ "grad_norm": 0.5730593204498291,
+ "learning_rate": 0.0006,
+ "loss": 4.25192403793335,
+ "step": 6061
+ },
+ {
+ "epoch": 84.19571865443424,
+ "grad_norm": 0.5957173705101013,
+ "learning_rate": 0.0006,
+ "loss": 4.219425201416016,
+ "step": 6062
+ },
+ {
+ "epoch": 84.20969855832242,
+ "grad_norm": 0.5630517601966858,
+ "learning_rate": 0.0006,
+ "loss": 4.206212043762207,
+ "step": 6063
+ },
+ {
+ "epoch": 84.22367846221057,
+ "grad_norm": 0.5968215465545654,
+ "learning_rate": 0.0006,
+ "loss": 4.267094612121582,
+ "step": 6064
+ },
+ {
+ "epoch": 84.23765836609873,
+ "grad_norm": 0.5848506093025208,
+ "learning_rate": 0.0006,
+ "loss": 4.219100475311279,
+ "step": 6065
+ },
+ {
+ "epoch": 84.2516382699869,
+ "grad_norm": 0.5439348220825195,
+ "learning_rate": 0.0006,
+ "loss": 4.194691181182861,
+ "step": 6066
+ },
+ {
+ "epoch": 84.26561817387505,
+ "grad_norm": 0.5145100951194763,
+ "learning_rate": 0.0006,
+ "loss": 4.154284477233887,
+ "step": 6067
+ },
+ {
+ "epoch": 84.27959807776321,
+ "grad_norm": 0.5202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 4.247485160827637,
+ "step": 6068
+ },
+ {
+ "epoch": 84.29357798165138,
+ "grad_norm": 0.5043543577194214,
+ "learning_rate": 0.0006,
+ "loss": 4.236316680908203,
+ "step": 6069
+ },
+ {
+ "epoch": 84.30755788553954,
+ "grad_norm": 0.46285054087638855,
+ "learning_rate": 0.0006,
+ "loss": 4.203764915466309,
+ "step": 6070
+ },
+ {
+ "epoch": 84.3215377894277,
+ "grad_norm": 0.4265335202217102,
+ "learning_rate": 0.0006,
+ "loss": 4.233004570007324,
+ "step": 6071
+ },
+ {
+ "epoch": 84.33551769331586,
+ "grad_norm": 0.4409696161746979,
+ "learning_rate": 0.0006,
+ "loss": 4.184818267822266,
+ "step": 6072
+ },
+ {
+ "epoch": 84.34949759720402,
+ "grad_norm": 0.44777947664260864,
+ "learning_rate": 0.0006,
+ "loss": 4.244442939758301,
+ "step": 6073
+ },
+ {
+ "epoch": 84.36347750109218,
+ "grad_norm": 0.4520278573036194,
+ "learning_rate": 0.0006,
+ "loss": 4.195928573608398,
+ "step": 6074
+ },
+ {
+ "epoch": 84.37745740498035,
+ "grad_norm": 0.42898136377334595,
+ "learning_rate": 0.0006,
+ "loss": 4.206586837768555,
+ "step": 6075
+ },
+ {
+ "epoch": 84.3914373088685,
+ "grad_norm": 0.4295867085456848,
+ "learning_rate": 0.0006,
+ "loss": 4.165602684020996,
+ "step": 6076
+ },
+ {
+ "epoch": 84.40541721275666,
+ "grad_norm": 0.43354693055152893,
+ "learning_rate": 0.0006,
+ "loss": 4.229294776916504,
+ "step": 6077
+ },
+ {
+ "epoch": 84.41939711664482,
+ "grad_norm": 0.43806344270706177,
+ "learning_rate": 0.0006,
+ "loss": 4.263678550720215,
+ "step": 6078
+ },
+ {
+ "epoch": 84.43337702053299,
+ "grad_norm": 0.4122515320777893,
+ "learning_rate": 0.0006,
+ "loss": 4.132500171661377,
+ "step": 6079
+ },
+ {
+ "epoch": 84.44735692442114,
+ "grad_norm": 0.4411999583244324,
+ "learning_rate": 0.0006,
+ "loss": 4.20449161529541,
+ "step": 6080
+ },
+ {
+ "epoch": 84.4613368283093,
+ "grad_norm": 0.42754557728767395,
+ "learning_rate": 0.0006,
+ "loss": 4.135894775390625,
+ "step": 6081
+ },
+ {
+ "epoch": 84.47531673219747,
+ "grad_norm": 0.4322991967201233,
+ "learning_rate": 0.0006,
+ "loss": 4.150014877319336,
+ "step": 6082
+ },
+ {
+ "epoch": 84.48929663608563,
+ "grad_norm": 0.45169857144355774,
+ "learning_rate": 0.0006,
+ "loss": 4.192213535308838,
+ "step": 6083
+ },
+ {
+ "epoch": 84.50327653997378,
+ "grad_norm": 0.4425649344921112,
+ "learning_rate": 0.0006,
+ "loss": 4.222028732299805,
+ "step": 6084
+ },
+ {
+ "epoch": 84.51725644386195,
+ "grad_norm": 0.4355604350566864,
+ "learning_rate": 0.0006,
+ "loss": 4.195630073547363,
+ "step": 6085
+ },
+ {
+ "epoch": 84.53123634775011,
+ "grad_norm": 0.44341176748275757,
+ "learning_rate": 0.0006,
+ "loss": 4.327449798583984,
+ "step": 6086
+ },
+ {
+ "epoch": 84.54521625163827,
+ "grad_norm": 0.4357825815677643,
+ "learning_rate": 0.0006,
+ "loss": 4.27389669418335,
+ "step": 6087
+ },
+ {
+ "epoch": 84.55919615552644,
+ "grad_norm": 0.4642813801765442,
+ "learning_rate": 0.0006,
+ "loss": 4.179567337036133,
+ "step": 6088
+ },
+ {
+ "epoch": 84.57317605941459,
+ "grad_norm": 0.5092143416404724,
+ "learning_rate": 0.0006,
+ "loss": 4.15549373626709,
+ "step": 6089
+ },
+ {
+ "epoch": 84.58715596330275,
+ "grad_norm": 0.5048913359642029,
+ "learning_rate": 0.0006,
+ "loss": 4.268869400024414,
+ "step": 6090
+ },
+ {
+ "epoch": 84.60113586719092,
+ "grad_norm": 0.49465590715408325,
+ "learning_rate": 0.0006,
+ "loss": 4.218505859375,
+ "step": 6091
+ },
+ {
+ "epoch": 84.61511577107908,
+ "grad_norm": 0.4515545666217804,
+ "learning_rate": 0.0006,
+ "loss": 4.2692365646362305,
+ "step": 6092
+ },
+ {
+ "epoch": 84.62909567496723,
+ "grad_norm": 0.42119187116622925,
+ "learning_rate": 0.0006,
+ "loss": 4.112425804138184,
+ "step": 6093
+ },
+ {
+ "epoch": 84.6430755788554,
+ "grad_norm": 0.461478590965271,
+ "learning_rate": 0.0006,
+ "loss": 4.311590194702148,
+ "step": 6094
+ },
+ {
+ "epoch": 84.65705548274356,
+ "grad_norm": 0.4738669991493225,
+ "learning_rate": 0.0006,
+ "loss": 4.274797439575195,
+ "step": 6095
+ },
+ {
+ "epoch": 84.67103538663171,
+ "grad_norm": 0.4834710359573364,
+ "learning_rate": 0.0006,
+ "loss": 4.230281829833984,
+ "step": 6096
+ },
+ {
+ "epoch": 84.68501529051987,
+ "grad_norm": 0.5070720911026001,
+ "learning_rate": 0.0006,
+ "loss": 4.2454118728637695,
+ "step": 6097
+ },
+ {
+ "epoch": 84.69899519440804,
+ "grad_norm": 0.5197553038597107,
+ "learning_rate": 0.0006,
+ "loss": 4.230489730834961,
+ "step": 6098
+ },
+ {
+ "epoch": 84.7129750982962,
+ "grad_norm": 0.5083942413330078,
+ "learning_rate": 0.0006,
+ "loss": 4.299528121948242,
+ "step": 6099
+ },
+ {
+ "epoch": 84.72695500218435,
+ "grad_norm": 0.44557300209999084,
+ "learning_rate": 0.0006,
+ "loss": 4.175854206085205,
+ "step": 6100
+ },
+ {
+ "epoch": 84.74093490607252,
+ "grad_norm": 0.41695916652679443,
+ "learning_rate": 0.0006,
+ "loss": 4.159942626953125,
+ "step": 6101
+ },
+ {
+ "epoch": 84.75491480996068,
+ "grad_norm": 0.4457457959651947,
+ "learning_rate": 0.0006,
+ "loss": 4.2789459228515625,
+ "step": 6102
+ },
+ {
+ "epoch": 84.76889471384884,
+ "grad_norm": 0.426814466714859,
+ "learning_rate": 0.0006,
+ "loss": 4.266576766967773,
+ "step": 6103
+ },
+ {
+ "epoch": 84.78287461773701,
+ "grad_norm": 0.43556660413742065,
+ "learning_rate": 0.0006,
+ "loss": 4.205744743347168,
+ "step": 6104
+ },
+ {
+ "epoch": 84.79685452162516,
+ "grad_norm": 0.4368990361690521,
+ "learning_rate": 0.0006,
+ "loss": 4.273787498474121,
+ "step": 6105
+ },
+ {
+ "epoch": 84.81083442551332,
+ "grad_norm": 0.41615745425224304,
+ "learning_rate": 0.0006,
+ "loss": 4.296933174133301,
+ "step": 6106
+ },
+ {
+ "epoch": 84.82481432940149,
+ "grad_norm": 0.4203803241252899,
+ "learning_rate": 0.0006,
+ "loss": 4.254091262817383,
+ "step": 6107
+ },
+ {
+ "epoch": 84.83879423328965,
+ "grad_norm": 0.41405585408210754,
+ "learning_rate": 0.0006,
+ "loss": 4.178038597106934,
+ "step": 6108
+ },
+ {
+ "epoch": 84.8527741371778,
+ "grad_norm": 0.41433432698249817,
+ "learning_rate": 0.0006,
+ "loss": 4.208859920501709,
+ "step": 6109
+ },
+ {
+ "epoch": 84.86675404106597,
+ "grad_norm": 0.395998477935791,
+ "learning_rate": 0.0006,
+ "loss": 4.216287612915039,
+ "step": 6110
+ },
+ {
+ "epoch": 84.88073394495413,
+ "grad_norm": 0.40618404746055603,
+ "learning_rate": 0.0006,
+ "loss": 4.279260635375977,
+ "step": 6111
+ },
+ {
+ "epoch": 84.89471384884229,
+ "grad_norm": 0.4085141718387604,
+ "learning_rate": 0.0006,
+ "loss": 4.35117244720459,
+ "step": 6112
+ },
+ {
+ "epoch": 84.90869375273044,
+ "grad_norm": 0.42112982273101807,
+ "learning_rate": 0.0006,
+ "loss": 4.22624397277832,
+ "step": 6113
+ },
+ {
+ "epoch": 84.92267365661861,
+ "grad_norm": 0.4306959807872772,
+ "learning_rate": 0.0006,
+ "loss": 4.310124397277832,
+ "step": 6114
+ },
+ {
+ "epoch": 84.93665356050677,
+ "grad_norm": 0.4376320540904999,
+ "learning_rate": 0.0006,
+ "loss": 4.299549102783203,
+ "step": 6115
+ },
+ {
+ "epoch": 84.95063346439493,
+ "grad_norm": 0.4436059594154358,
+ "learning_rate": 0.0006,
+ "loss": 4.222458362579346,
+ "step": 6116
+ },
+ {
+ "epoch": 84.9646133682831,
+ "grad_norm": 0.4348333477973938,
+ "learning_rate": 0.0006,
+ "loss": 4.243000030517578,
+ "step": 6117
+ },
+ {
+ "epoch": 84.97859327217125,
+ "grad_norm": 0.40557757019996643,
+ "learning_rate": 0.0006,
+ "loss": 4.312551498413086,
+ "step": 6118
+ },
+ {
+ "epoch": 84.99257317605941,
+ "grad_norm": 0.3925289511680603,
+ "learning_rate": 0.0006,
+ "loss": 4.23169469833374,
+ "step": 6119
+ },
+ {
+ "epoch": 85.0,
+ "grad_norm": 0.4687667787075043,
+ "learning_rate": 0.0006,
+ "loss": 4.250479698181152,
+ "step": 6120
+ },
+ {
+ "epoch": 85.0,
+ "eval_loss": 6.4236650466918945,
+ "eval_runtime": 44.0012,
+ "eval_samples_per_second": 55.499,
+ "eval_steps_per_second": 3.477,
+ "step": 6120
+ },
+ {
+ "epoch": 85.01397990388816,
+ "grad_norm": 0.4212416410446167,
+ "learning_rate": 0.0006,
+ "loss": 4.1090850830078125,
+ "step": 6121
+ },
+ {
+ "epoch": 85.02795980777633,
+ "grad_norm": 0.494233638048172,
+ "learning_rate": 0.0006,
+ "loss": 4.180233478546143,
+ "step": 6122
+ },
+ {
+ "epoch": 85.04193971166448,
+ "grad_norm": 0.5173123478889465,
+ "learning_rate": 0.0006,
+ "loss": 4.185733795166016,
+ "step": 6123
+ },
+ {
+ "epoch": 85.05591961555264,
+ "grad_norm": 0.5681236982345581,
+ "learning_rate": 0.0006,
+ "loss": 4.138709545135498,
+ "step": 6124
+ },
+ {
+ "epoch": 85.06989951944081,
+ "grad_norm": 0.6410647034645081,
+ "learning_rate": 0.0006,
+ "loss": 4.139544486999512,
+ "step": 6125
+ },
+ {
+ "epoch": 85.08387942332897,
+ "grad_norm": 0.7401921153068542,
+ "learning_rate": 0.0006,
+ "loss": 4.198850154876709,
+ "step": 6126
+ },
+ {
+ "epoch": 85.09785932721712,
+ "grad_norm": 0.8305296301841736,
+ "learning_rate": 0.0006,
+ "loss": 4.1585693359375,
+ "step": 6127
+ },
+ {
+ "epoch": 85.1118392311053,
+ "grad_norm": 0.9176523685455322,
+ "learning_rate": 0.0006,
+ "loss": 4.242802619934082,
+ "step": 6128
+ },
+ {
+ "epoch": 85.12581913499345,
+ "grad_norm": 0.9265726804733276,
+ "learning_rate": 0.0006,
+ "loss": 4.219632625579834,
+ "step": 6129
+ },
+ {
+ "epoch": 85.1397990388816,
+ "grad_norm": 0.8400911092758179,
+ "learning_rate": 0.0006,
+ "loss": 4.268982887268066,
+ "step": 6130
+ },
+ {
+ "epoch": 85.15377894276976,
+ "grad_norm": 0.744905948638916,
+ "learning_rate": 0.0006,
+ "loss": 4.30452823638916,
+ "step": 6131
+ },
+ {
+ "epoch": 85.16775884665793,
+ "grad_norm": 0.6953766942024231,
+ "learning_rate": 0.0006,
+ "loss": 4.189999580383301,
+ "step": 6132
+ },
+ {
+ "epoch": 85.18173875054609,
+ "grad_norm": 0.577387809753418,
+ "learning_rate": 0.0006,
+ "loss": 4.227351188659668,
+ "step": 6133
+ },
+ {
+ "epoch": 85.19571865443424,
+ "grad_norm": 0.5925359129905701,
+ "learning_rate": 0.0006,
+ "loss": 4.1808977127075195,
+ "step": 6134
+ },
+ {
+ "epoch": 85.20969855832242,
+ "grad_norm": 0.6056010723114014,
+ "learning_rate": 0.0006,
+ "loss": 4.145054340362549,
+ "step": 6135
+ },
+ {
+ "epoch": 85.22367846221057,
+ "grad_norm": 0.604918360710144,
+ "learning_rate": 0.0006,
+ "loss": 4.266521453857422,
+ "step": 6136
+ },
+ {
+ "epoch": 85.23765836609873,
+ "grad_norm": 0.6269238591194153,
+ "learning_rate": 0.0006,
+ "loss": 4.196112632751465,
+ "step": 6137
+ },
+ {
+ "epoch": 85.2516382699869,
+ "grad_norm": 0.5958989858627319,
+ "learning_rate": 0.0006,
+ "loss": 4.176703453063965,
+ "step": 6138
+ },
+ {
+ "epoch": 85.26561817387505,
+ "grad_norm": 0.5563721656799316,
+ "learning_rate": 0.0006,
+ "loss": 4.214921951293945,
+ "step": 6139
+ },
+ {
+ "epoch": 85.27959807776321,
+ "grad_norm": 0.5104738473892212,
+ "learning_rate": 0.0006,
+ "loss": 4.1572747230529785,
+ "step": 6140
+ },
+ {
+ "epoch": 85.29357798165138,
+ "grad_norm": 0.5091421008110046,
+ "learning_rate": 0.0006,
+ "loss": 4.207575798034668,
+ "step": 6141
+ },
+ {
+ "epoch": 85.30755788553954,
+ "grad_norm": 0.4957296848297119,
+ "learning_rate": 0.0006,
+ "loss": 4.191003322601318,
+ "step": 6142
+ },
+ {
+ "epoch": 85.3215377894277,
+ "grad_norm": 0.5249730348587036,
+ "learning_rate": 0.0006,
+ "loss": 4.190788269042969,
+ "step": 6143
+ },
+ {
+ "epoch": 85.33551769331586,
+ "grad_norm": 0.5330517888069153,
+ "learning_rate": 0.0006,
+ "loss": 4.2532501220703125,
+ "step": 6144
+ },
+ {
+ "epoch": 85.34949759720402,
+ "grad_norm": 0.5122325420379639,
+ "learning_rate": 0.0006,
+ "loss": 4.24505090713501,
+ "step": 6145
+ },
+ {
+ "epoch": 85.36347750109218,
+ "grad_norm": 0.48302626609802246,
+ "learning_rate": 0.0006,
+ "loss": 4.276553153991699,
+ "step": 6146
+ },
+ {
+ "epoch": 85.37745740498035,
+ "grad_norm": 0.45876380801200867,
+ "learning_rate": 0.0006,
+ "loss": 4.232707977294922,
+ "step": 6147
+ },
+ {
+ "epoch": 85.3914373088685,
+ "grad_norm": 0.43201959133148193,
+ "learning_rate": 0.0006,
+ "loss": 4.227077484130859,
+ "step": 6148
+ },
+ {
+ "epoch": 85.40541721275666,
+ "grad_norm": 0.43973541259765625,
+ "learning_rate": 0.0006,
+ "loss": 4.1685590744018555,
+ "step": 6149
+ },
+ {
+ "epoch": 85.41939711664482,
+ "grad_norm": 0.4517432153224945,
+ "learning_rate": 0.0006,
+ "loss": 4.207458972930908,
+ "step": 6150
+ },
+ {
+ "epoch": 85.43337702053299,
+ "grad_norm": 0.4610045850276947,
+ "learning_rate": 0.0006,
+ "loss": 4.132458686828613,
+ "step": 6151
+ },
+ {
+ "epoch": 85.44735692442114,
+ "grad_norm": 0.4478553533554077,
+ "learning_rate": 0.0006,
+ "loss": 4.164486885070801,
+ "step": 6152
+ },
+ {
+ "epoch": 85.4613368283093,
+ "grad_norm": 0.4325296878814697,
+ "learning_rate": 0.0006,
+ "loss": 4.238661766052246,
+ "step": 6153
+ },
+ {
+ "epoch": 85.47531673219747,
+ "grad_norm": 0.4336618185043335,
+ "learning_rate": 0.0006,
+ "loss": 4.2476348876953125,
+ "step": 6154
+ },
+ {
+ "epoch": 85.48929663608563,
+ "grad_norm": 0.44246068596839905,
+ "learning_rate": 0.0006,
+ "loss": 4.112232685089111,
+ "step": 6155
+ },
+ {
+ "epoch": 85.50327653997378,
+ "grad_norm": 0.44979506731033325,
+ "learning_rate": 0.0006,
+ "loss": 4.227209091186523,
+ "step": 6156
+ },
+ {
+ "epoch": 85.51725644386195,
+ "grad_norm": 0.41781380772590637,
+ "learning_rate": 0.0006,
+ "loss": 4.170072555541992,
+ "step": 6157
+ },
+ {
+ "epoch": 85.53123634775011,
+ "grad_norm": 0.4316149353981018,
+ "learning_rate": 0.0006,
+ "loss": 4.145702362060547,
+ "step": 6158
+ },
+ {
+ "epoch": 85.54521625163827,
+ "grad_norm": 0.4433120787143707,
+ "learning_rate": 0.0006,
+ "loss": 4.26444673538208,
+ "step": 6159
+ },
+ {
+ "epoch": 85.55919615552644,
+ "grad_norm": 0.42795389890670776,
+ "learning_rate": 0.0006,
+ "loss": 4.2480621337890625,
+ "step": 6160
+ },
+ {
+ "epoch": 85.57317605941459,
+ "grad_norm": 0.44557079672813416,
+ "learning_rate": 0.0006,
+ "loss": 4.24589729309082,
+ "step": 6161
+ },
+ {
+ "epoch": 85.58715596330275,
+ "grad_norm": 0.4265936017036438,
+ "learning_rate": 0.0006,
+ "loss": 4.178960800170898,
+ "step": 6162
+ },
+ {
+ "epoch": 85.60113586719092,
+ "grad_norm": 0.4352312982082367,
+ "learning_rate": 0.0006,
+ "loss": 4.226616382598877,
+ "step": 6163
+ },
+ {
+ "epoch": 85.61511577107908,
+ "grad_norm": 0.4641511142253876,
+ "learning_rate": 0.0006,
+ "loss": 4.176436424255371,
+ "step": 6164
+ },
+ {
+ "epoch": 85.62909567496723,
+ "grad_norm": 0.41917547583580017,
+ "learning_rate": 0.0006,
+ "loss": 4.22402286529541,
+ "step": 6165
+ },
+ {
+ "epoch": 85.6430755788554,
+ "grad_norm": 0.4128566086292267,
+ "learning_rate": 0.0006,
+ "loss": 4.208065032958984,
+ "step": 6166
+ },
+ {
+ "epoch": 85.65705548274356,
+ "grad_norm": 0.41222256422042847,
+ "learning_rate": 0.0006,
+ "loss": 4.3075361251831055,
+ "step": 6167
+ },
+ {
+ "epoch": 85.67103538663171,
+ "grad_norm": 0.41198086738586426,
+ "learning_rate": 0.0006,
+ "loss": 4.290134906768799,
+ "step": 6168
+ },
+ {
+ "epoch": 85.68501529051987,
+ "grad_norm": 0.4154035747051239,
+ "learning_rate": 0.0006,
+ "loss": 4.278663635253906,
+ "step": 6169
+ },
+ {
+ "epoch": 85.69899519440804,
+ "grad_norm": 0.4130622446537018,
+ "learning_rate": 0.0006,
+ "loss": 4.243109703063965,
+ "step": 6170
+ },
+ {
+ "epoch": 85.7129750982962,
+ "grad_norm": 0.4077015221118927,
+ "learning_rate": 0.0006,
+ "loss": 4.228545665740967,
+ "step": 6171
+ },
+ {
+ "epoch": 85.72695500218435,
+ "grad_norm": 0.3907303810119629,
+ "learning_rate": 0.0006,
+ "loss": 4.3075995445251465,
+ "step": 6172
+ },
+ {
+ "epoch": 85.74093490607252,
+ "grad_norm": 0.4037119746208191,
+ "learning_rate": 0.0006,
+ "loss": 4.246337413787842,
+ "step": 6173
+ },
+ {
+ "epoch": 85.75491480996068,
+ "grad_norm": 0.41759130358695984,
+ "learning_rate": 0.0006,
+ "loss": 4.308913707733154,
+ "step": 6174
+ },
+ {
+ "epoch": 85.76889471384884,
+ "grad_norm": 0.41771626472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.311037063598633,
+ "step": 6175
+ },
+ {
+ "epoch": 85.78287461773701,
+ "grad_norm": 0.4321439862251282,
+ "learning_rate": 0.0006,
+ "loss": 4.350762367248535,
+ "step": 6176
+ },
+ {
+ "epoch": 85.79685452162516,
+ "grad_norm": 0.3975702226161957,
+ "learning_rate": 0.0006,
+ "loss": 4.182483673095703,
+ "step": 6177
+ },
+ {
+ "epoch": 85.81083442551332,
+ "grad_norm": 0.4001428782939911,
+ "learning_rate": 0.0006,
+ "loss": 4.2482194900512695,
+ "step": 6178
+ },
+ {
+ "epoch": 85.82481432940149,
+ "grad_norm": 0.4038706421852112,
+ "learning_rate": 0.0006,
+ "loss": 4.252450466156006,
+ "step": 6179
+ },
+ {
+ "epoch": 85.83879423328965,
+ "grad_norm": 0.413814902305603,
+ "learning_rate": 0.0006,
+ "loss": 4.278610706329346,
+ "step": 6180
+ },
+ {
+ "epoch": 85.8527741371778,
+ "grad_norm": 0.4370289444923401,
+ "learning_rate": 0.0006,
+ "loss": 4.209270000457764,
+ "step": 6181
+ },
+ {
+ "epoch": 85.86675404106597,
+ "grad_norm": 0.4093279242515564,
+ "learning_rate": 0.0006,
+ "loss": 4.339448928833008,
+ "step": 6182
+ },
+ {
+ "epoch": 85.88073394495413,
+ "grad_norm": 0.4336872398853302,
+ "learning_rate": 0.0006,
+ "loss": 4.248476028442383,
+ "step": 6183
+ },
+ {
+ "epoch": 85.89471384884229,
+ "grad_norm": 0.42384231090545654,
+ "learning_rate": 0.0006,
+ "loss": 4.1973652839660645,
+ "step": 6184
+ },
+ {
+ "epoch": 85.90869375273044,
+ "grad_norm": 0.4119747579097748,
+ "learning_rate": 0.0006,
+ "loss": 4.2321271896362305,
+ "step": 6185
+ },
+ {
+ "epoch": 85.92267365661861,
+ "grad_norm": 0.42178797721862793,
+ "learning_rate": 0.0006,
+ "loss": 4.238823890686035,
+ "step": 6186
+ },
+ {
+ "epoch": 85.93665356050677,
+ "grad_norm": 0.4252033233642578,
+ "learning_rate": 0.0006,
+ "loss": 4.216999053955078,
+ "step": 6187
+ },
+ {
+ "epoch": 85.95063346439493,
+ "grad_norm": 0.4080226719379425,
+ "learning_rate": 0.0006,
+ "loss": 4.165124416351318,
+ "step": 6188
+ },
+ {
+ "epoch": 85.9646133682831,
+ "grad_norm": 0.41687312722206116,
+ "learning_rate": 0.0006,
+ "loss": 4.267208576202393,
+ "step": 6189
+ },
+ {
+ "epoch": 85.97859327217125,
+ "grad_norm": 0.4602084159851074,
+ "learning_rate": 0.0006,
+ "loss": 4.275501251220703,
+ "step": 6190
+ },
+ {
+ "epoch": 85.99257317605941,
+ "grad_norm": 0.4058094620704651,
+ "learning_rate": 0.0006,
+ "loss": 4.245742321014404,
+ "step": 6191
+ },
+ {
+ "epoch": 86.0,
+ "grad_norm": 0.47458478808403015,
+ "learning_rate": 0.0006,
+ "loss": 4.287442207336426,
+ "step": 6192
+ },
+ {
+ "epoch": 86.0,
+ "eval_loss": 6.403047561645508,
+ "eval_runtime": 43.8214,
+ "eval_samples_per_second": 55.726,
+ "eval_steps_per_second": 3.491,
+ "step": 6192
+ },
+ {
+ "epoch": 86.01397990388816,
+ "grad_norm": 0.4514295756816864,
+ "learning_rate": 0.0006,
+ "loss": 4.168883323669434,
+ "step": 6193
+ },
+ {
+ "epoch": 86.02795980777633,
+ "grad_norm": 0.4945322573184967,
+ "learning_rate": 0.0006,
+ "loss": 4.184109687805176,
+ "step": 6194
+ },
+ {
+ "epoch": 86.04193971166448,
+ "grad_norm": 0.4829343557357788,
+ "learning_rate": 0.0006,
+ "loss": 4.196836471557617,
+ "step": 6195
+ },
+ {
+ "epoch": 86.05591961555264,
+ "grad_norm": 0.46961912512779236,
+ "learning_rate": 0.0006,
+ "loss": 4.142866134643555,
+ "step": 6196
+ },
+ {
+ "epoch": 86.06989951944081,
+ "grad_norm": 0.4949210584163666,
+ "learning_rate": 0.0006,
+ "loss": 4.211699485778809,
+ "step": 6197
+ },
+ {
+ "epoch": 86.08387942332897,
+ "grad_norm": 0.46593594551086426,
+ "learning_rate": 0.0006,
+ "loss": 4.1134490966796875,
+ "step": 6198
+ },
+ {
+ "epoch": 86.09785932721712,
+ "grad_norm": 0.4728434681892395,
+ "learning_rate": 0.0006,
+ "loss": 4.068804740905762,
+ "step": 6199
+ },
+ {
+ "epoch": 86.1118392311053,
+ "grad_norm": 0.47897961735725403,
+ "learning_rate": 0.0006,
+ "loss": 4.116288185119629,
+ "step": 6200
+ },
+ {
+ "epoch": 86.12581913499345,
+ "grad_norm": 0.4988885819911957,
+ "learning_rate": 0.0006,
+ "loss": 4.195610523223877,
+ "step": 6201
+ },
+ {
+ "epoch": 86.1397990388816,
+ "grad_norm": 0.5539481043815613,
+ "learning_rate": 0.0006,
+ "loss": 4.1776204109191895,
+ "step": 6202
+ },
+ {
+ "epoch": 86.15377894276976,
+ "grad_norm": 0.668317973613739,
+ "learning_rate": 0.0006,
+ "loss": 4.1369171142578125,
+ "step": 6203
+ },
+ {
+ "epoch": 86.16775884665793,
+ "grad_norm": 0.7647491693496704,
+ "learning_rate": 0.0006,
+ "loss": 4.20838737487793,
+ "step": 6204
+ },
+ {
+ "epoch": 86.18173875054609,
+ "grad_norm": 0.9673570394515991,
+ "learning_rate": 0.0006,
+ "loss": 4.215792655944824,
+ "step": 6205
+ },
+ {
+ "epoch": 86.19571865443424,
+ "grad_norm": 1.124152660369873,
+ "learning_rate": 0.0006,
+ "loss": 4.2046709060668945,
+ "step": 6206
+ },
+ {
+ "epoch": 86.20969855832242,
+ "grad_norm": 0.795403778553009,
+ "learning_rate": 0.0006,
+ "loss": 4.212424278259277,
+ "step": 6207
+ },
+ {
+ "epoch": 86.22367846221057,
+ "grad_norm": 0.639197826385498,
+ "learning_rate": 0.0006,
+ "loss": 4.090766429901123,
+ "step": 6208
+ },
+ {
+ "epoch": 86.23765836609873,
+ "grad_norm": 0.662894606590271,
+ "learning_rate": 0.0006,
+ "loss": 4.1571221351623535,
+ "step": 6209
+ },
+ {
+ "epoch": 86.2516382699869,
+ "grad_norm": 0.6552493572235107,
+ "learning_rate": 0.0006,
+ "loss": 4.231173515319824,
+ "step": 6210
+ },
+ {
+ "epoch": 86.26561817387505,
+ "grad_norm": 0.5748463869094849,
+ "learning_rate": 0.0006,
+ "loss": 4.172743797302246,
+ "step": 6211
+ },
+ {
+ "epoch": 86.27959807776321,
+ "grad_norm": 0.5272432565689087,
+ "learning_rate": 0.0006,
+ "loss": 4.193683624267578,
+ "step": 6212
+ },
+ {
+ "epoch": 86.29357798165138,
+ "grad_norm": 0.49313828349113464,
+ "learning_rate": 0.0006,
+ "loss": 4.221615791320801,
+ "step": 6213
+ },
+ {
+ "epoch": 86.30755788553954,
+ "grad_norm": 0.494914710521698,
+ "learning_rate": 0.0006,
+ "loss": 4.255671501159668,
+ "step": 6214
+ },
+ {
+ "epoch": 86.3215377894277,
+ "grad_norm": 0.47431471943855286,
+ "learning_rate": 0.0006,
+ "loss": 4.181219100952148,
+ "step": 6215
+ },
+ {
+ "epoch": 86.33551769331586,
+ "grad_norm": 0.4649604260921478,
+ "learning_rate": 0.0006,
+ "loss": 4.191998481750488,
+ "step": 6216
+ },
+ {
+ "epoch": 86.34949759720402,
+ "grad_norm": 0.4728623628616333,
+ "learning_rate": 0.0006,
+ "loss": 4.2238264083862305,
+ "step": 6217
+ },
+ {
+ "epoch": 86.36347750109218,
+ "grad_norm": 0.4535118043422699,
+ "learning_rate": 0.0006,
+ "loss": 4.17877197265625,
+ "step": 6218
+ },
+ {
+ "epoch": 86.37745740498035,
+ "grad_norm": 0.46630820631980896,
+ "learning_rate": 0.0006,
+ "loss": 4.268709182739258,
+ "step": 6219
+ },
+ {
+ "epoch": 86.3914373088685,
+ "grad_norm": 0.44170552492141724,
+ "learning_rate": 0.0006,
+ "loss": 4.156832695007324,
+ "step": 6220
+ },
+ {
+ "epoch": 86.40541721275666,
+ "grad_norm": 0.4569980800151825,
+ "learning_rate": 0.0006,
+ "loss": 4.231564521789551,
+ "step": 6221
+ },
+ {
+ "epoch": 86.41939711664482,
+ "grad_norm": 0.46918782591819763,
+ "learning_rate": 0.0006,
+ "loss": 4.249637603759766,
+ "step": 6222
+ },
+ {
+ "epoch": 86.43337702053299,
+ "grad_norm": 0.4581753611564636,
+ "learning_rate": 0.0006,
+ "loss": 4.179978370666504,
+ "step": 6223
+ },
+ {
+ "epoch": 86.44735692442114,
+ "grad_norm": 0.4316704571247101,
+ "learning_rate": 0.0006,
+ "loss": 4.146752834320068,
+ "step": 6224
+ },
+ {
+ "epoch": 86.4613368283093,
+ "grad_norm": 0.4482209384441376,
+ "learning_rate": 0.0006,
+ "loss": 4.244694232940674,
+ "step": 6225
+ },
+ {
+ "epoch": 86.47531673219747,
+ "grad_norm": 0.4843580424785614,
+ "learning_rate": 0.0006,
+ "loss": 4.17778205871582,
+ "step": 6226
+ },
+ {
+ "epoch": 86.48929663608563,
+ "grad_norm": 0.4709290862083435,
+ "learning_rate": 0.0006,
+ "loss": 4.285809516906738,
+ "step": 6227
+ },
+ {
+ "epoch": 86.50327653997378,
+ "grad_norm": 0.46813929080963135,
+ "learning_rate": 0.0006,
+ "loss": 4.231365203857422,
+ "step": 6228
+ },
+ {
+ "epoch": 86.51725644386195,
+ "grad_norm": 0.4462358355522156,
+ "learning_rate": 0.0006,
+ "loss": 4.105094909667969,
+ "step": 6229
+ },
+ {
+ "epoch": 86.53123634775011,
+ "grad_norm": 0.4453467130661011,
+ "learning_rate": 0.0006,
+ "loss": 4.299243927001953,
+ "step": 6230
+ },
+ {
+ "epoch": 86.54521625163827,
+ "grad_norm": 0.40684959292411804,
+ "learning_rate": 0.0006,
+ "loss": 4.130344867706299,
+ "step": 6231
+ },
+ {
+ "epoch": 86.55919615552644,
+ "grad_norm": 0.4367261230945587,
+ "learning_rate": 0.0006,
+ "loss": 4.32288932800293,
+ "step": 6232
+ },
+ {
+ "epoch": 86.57317605941459,
+ "grad_norm": 0.4543338418006897,
+ "learning_rate": 0.0006,
+ "loss": 4.20067024230957,
+ "step": 6233
+ },
+ {
+ "epoch": 86.58715596330275,
+ "grad_norm": 0.4356217384338379,
+ "learning_rate": 0.0006,
+ "loss": 4.203358173370361,
+ "step": 6234
+ },
+ {
+ "epoch": 86.60113586719092,
+ "grad_norm": 0.430902361869812,
+ "learning_rate": 0.0006,
+ "loss": 4.259663105010986,
+ "step": 6235
+ },
+ {
+ "epoch": 86.61511577107908,
+ "grad_norm": 0.4439174234867096,
+ "learning_rate": 0.0006,
+ "loss": 4.223544120788574,
+ "step": 6236
+ },
+ {
+ "epoch": 86.62909567496723,
+ "grad_norm": 0.4226101338863373,
+ "learning_rate": 0.0006,
+ "loss": 4.189355373382568,
+ "step": 6237
+ },
+ {
+ "epoch": 86.6430755788554,
+ "grad_norm": 0.40921148657798767,
+ "learning_rate": 0.0006,
+ "loss": 4.117485523223877,
+ "step": 6238
+ },
+ {
+ "epoch": 86.65705548274356,
+ "grad_norm": 0.4049853980541229,
+ "learning_rate": 0.0006,
+ "loss": 4.194711685180664,
+ "step": 6239
+ },
+ {
+ "epoch": 86.67103538663171,
+ "grad_norm": 0.43752163648605347,
+ "learning_rate": 0.0006,
+ "loss": 4.296228885650635,
+ "step": 6240
+ },
+ {
+ "epoch": 86.68501529051987,
+ "grad_norm": 0.4285348653793335,
+ "learning_rate": 0.0006,
+ "loss": 4.224569797515869,
+ "step": 6241
+ },
+ {
+ "epoch": 86.69899519440804,
+ "grad_norm": 0.42145198583602905,
+ "learning_rate": 0.0006,
+ "loss": 4.17451286315918,
+ "step": 6242
+ },
+ {
+ "epoch": 86.7129750982962,
+ "grad_norm": 0.43004974722862244,
+ "learning_rate": 0.0006,
+ "loss": 4.327383995056152,
+ "step": 6243
+ },
+ {
+ "epoch": 86.72695500218435,
+ "grad_norm": 0.4132508635520935,
+ "learning_rate": 0.0006,
+ "loss": 4.254952430725098,
+ "step": 6244
+ },
+ {
+ "epoch": 86.74093490607252,
+ "grad_norm": 0.4263715445995331,
+ "learning_rate": 0.0006,
+ "loss": 4.291565895080566,
+ "step": 6245
+ },
+ {
+ "epoch": 86.75491480996068,
+ "grad_norm": 0.4107324779033661,
+ "learning_rate": 0.0006,
+ "loss": 4.175364971160889,
+ "step": 6246
+ },
+ {
+ "epoch": 86.76889471384884,
+ "grad_norm": 0.4208371937274933,
+ "learning_rate": 0.0006,
+ "loss": 4.30789852142334,
+ "step": 6247
+ },
+ {
+ "epoch": 86.78287461773701,
+ "grad_norm": 0.40826472640037537,
+ "learning_rate": 0.0006,
+ "loss": 4.258838176727295,
+ "step": 6248
+ },
+ {
+ "epoch": 86.79685452162516,
+ "grad_norm": 0.4199276268482208,
+ "learning_rate": 0.0006,
+ "loss": 4.267247200012207,
+ "step": 6249
+ },
+ {
+ "epoch": 86.81083442551332,
+ "grad_norm": 0.41855406761169434,
+ "learning_rate": 0.0006,
+ "loss": 4.23055362701416,
+ "step": 6250
+ },
+ {
+ "epoch": 86.82481432940149,
+ "grad_norm": 0.4074585735797882,
+ "learning_rate": 0.0006,
+ "loss": 4.30836296081543,
+ "step": 6251
+ },
+ {
+ "epoch": 86.83879423328965,
+ "grad_norm": 0.41543063521385193,
+ "learning_rate": 0.0006,
+ "loss": 4.240653991699219,
+ "step": 6252
+ },
+ {
+ "epoch": 86.8527741371778,
+ "grad_norm": 0.43938663601875305,
+ "learning_rate": 0.0006,
+ "loss": 4.202419757843018,
+ "step": 6253
+ },
+ {
+ "epoch": 86.86675404106597,
+ "grad_norm": 0.40917736291885376,
+ "learning_rate": 0.0006,
+ "loss": 4.230096817016602,
+ "step": 6254
+ },
+ {
+ "epoch": 86.88073394495413,
+ "grad_norm": 0.39287346601486206,
+ "learning_rate": 0.0006,
+ "loss": 4.266208648681641,
+ "step": 6255
+ },
+ {
+ "epoch": 86.89471384884229,
+ "grad_norm": 0.42201662063598633,
+ "learning_rate": 0.0006,
+ "loss": 4.266336441040039,
+ "step": 6256
+ },
+ {
+ "epoch": 86.90869375273044,
+ "grad_norm": 0.41840073466300964,
+ "learning_rate": 0.0006,
+ "loss": 4.2372283935546875,
+ "step": 6257
+ },
+ {
+ "epoch": 86.92267365661861,
+ "grad_norm": 0.41545310616493225,
+ "learning_rate": 0.0006,
+ "loss": 4.228784084320068,
+ "step": 6258
+ },
+ {
+ "epoch": 86.93665356050677,
+ "grad_norm": 0.4000638723373413,
+ "learning_rate": 0.0006,
+ "loss": 4.217623233795166,
+ "step": 6259
+ },
+ {
+ "epoch": 86.95063346439493,
+ "grad_norm": 0.40059611201286316,
+ "learning_rate": 0.0006,
+ "loss": 4.219632148742676,
+ "step": 6260
+ },
+ {
+ "epoch": 86.9646133682831,
+ "grad_norm": 0.40537703037261963,
+ "learning_rate": 0.0006,
+ "loss": 4.325621604919434,
+ "step": 6261
+ },
+ {
+ "epoch": 86.97859327217125,
+ "grad_norm": 0.4128882884979248,
+ "learning_rate": 0.0006,
+ "loss": 4.3072710037231445,
+ "step": 6262
+ },
+ {
+ "epoch": 86.99257317605941,
+ "grad_norm": 0.4379993677139282,
+ "learning_rate": 0.0006,
+ "loss": 4.363463401794434,
+ "step": 6263
+ },
+ {
+ "epoch": 87.0,
+ "grad_norm": 0.547332763671875,
+ "learning_rate": 0.0006,
+ "loss": 4.2679829597473145,
+ "step": 6264
+ },
+ {
+ "epoch": 87.0,
+ "eval_loss": 6.392307758331299,
+ "eval_runtime": 43.7891,
+ "eval_samples_per_second": 55.767,
+ "eval_steps_per_second": 3.494,
+ "step": 6264
+ },
+ {
+ "epoch": 87.01397990388816,
+ "grad_norm": 0.45948871970176697,
+ "learning_rate": 0.0006,
+ "loss": 4.031222343444824,
+ "step": 6265
+ },
+ {
+ "epoch": 87.02795980777633,
+ "grad_norm": 0.4914006292819977,
+ "learning_rate": 0.0006,
+ "loss": 4.156842231750488,
+ "step": 6266
+ },
+ {
+ "epoch": 87.04193971166448,
+ "grad_norm": 0.5071610808372498,
+ "learning_rate": 0.0006,
+ "loss": 4.1074676513671875,
+ "step": 6267
+ },
+ {
+ "epoch": 87.05591961555264,
+ "grad_norm": 0.4955688416957855,
+ "learning_rate": 0.0006,
+ "loss": 4.216960430145264,
+ "step": 6268
+ },
+ {
+ "epoch": 87.06989951944081,
+ "grad_norm": 0.4986410140991211,
+ "learning_rate": 0.0006,
+ "loss": 4.154225826263428,
+ "step": 6269
+ },
+ {
+ "epoch": 87.08387942332897,
+ "grad_norm": 0.5057981014251709,
+ "learning_rate": 0.0006,
+ "loss": 4.1951904296875,
+ "step": 6270
+ },
+ {
+ "epoch": 87.09785932721712,
+ "grad_norm": 0.4882241189479828,
+ "learning_rate": 0.0006,
+ "loss": 4.126533508300781,
+ "step": 6271
+ },
+ {
+ "epoch": 87.1118392311053,
+ "grad_norm": 0.4709639549255371,
+ "learning_rate": 0.0006,
+ "loss": 4.058790683746338,
+ "step": 6272
+ },
+ {
+ "epoch": 87.12581913499345,
+ "grad_norm": 0.5342675447463989,
+ "learning_rate": 0.0006,
+ "loss": 4.214875221252441,
+ "step": 6273
+ },
+ {
+ "epoch": 87.1397990388816,
+ "grad_norm": 0.6006143689155579,
+ "learning_rate": 0.0006,
+ "loss": 4.160619735717773,
+ "step": 6274
+ },
+ {
+ "epoch": 87.15377894276976,
+ "grad_norm": 0.6728277802467346,
+ "learning_rate": 0.0006,
+ "loss": 4.1538848876953125,
+ "step": 6275
+ },
+ {
+ "epoch": 87.16775884665793,
+ "grad_norm": 0.7239725589752197,
+ "learning_rate": 0.0006,
+ "loss": 4.1733808517456055,
+ "step": 6276
+ },
+ {
+ "epoch": 87.18173875054609,
+ "grad_norm": 0.7556143403053284,
+ "learning_rate": 0.0006,
+ "loss": 4.219337463378906,
+ "step": 6277
+ },
+ {
+ "epoch": 87.19571865443424,
+ "grad_norm": 0.7680774927139282,
+ "learning_rate": 0.0006,
+ "loss": 4.188779354095459,
+ "step": 6278
+ },
+ {
+ "epoch": 87.20969855832242,
+ "grad_norm": 0.6739238500595093,
+ "learning_rate": 0.0006,
+ "loss": 4.140239715576172,
+ "step": 6279
+ },
+ {
+ "epoch": 87.22367846221057,
+ "grad_norm": 0.5501153469085693,
+ "learning_rate": 0.0006,
+ "loss": 4.183748245239258,
+ "step": 6280
+ },
+ {
+ "epoch": 87.23765836609873,
+ "grad_norm": 0.5142590403556824,
+ "learning_rate": 0.0006,
+ "loss": 4.183562278747559,
+ "step": 6281
+ },
+ {
+ "epoch": 87.2516382699869,
+ "grad_norm": 0.5068333148956299,
+ "learning_rate": 0.0006,
+ "loss": 4.15458869934082,
+ "step": 6282
+ },
+ {
+ "epoch": 87.26561817387505,
+ "grad_norm": 0.49197667837142944,
+ "learning_rate": 0.0006,
+ "loss": 4.183134078979492,
+ "step": 6283
+ },
+ {
+ "epoch": 87.27959807776321,
+ "grad_norm": 0.474367618560791,
+ "learning_rate": 0.0006,
+ "loss": 4.166842460632324,
+ "step": 6284
+ },
+ {
+ "epoch": 87.29357798165138,
+ "grad_norm": 0.487605482339859,
+ "learning_rate": 0.0006,
+ "loss": 4.14278507232666,
+ "step": 6285
+ },
+ {
+ "epoch": 87.30755788553954,
+ "grad_norm": 0.5414341688156128,
+ "learning_rate": 0.0006,
+ "loss": 4.185382843017578,
+ "step": 6286
+ },
+ {
+ "epoch": 87.3215377894277,
+ "grad_norm": 0.5583488345146179,
+ "learning_rate": 0.0006,
+ "loss": 4.194276809692383,
+ "step": 6287
+ },
+ {
+ "epoch": 87.33551769331586,
+ "grad_norm": 0.5409402847290039,
+ "learning_rate": 0.0006,
+ "loss": 4.194012641906738,
+ "step": 6288
+ },
+ {
+ "epoch": 87.34949759720402,
+ "grad_norm": 0.48561549186706543,
+ "learning_rate": 0.0006,
+ "loss": 4.114370346069336,
+ "step": 6289
+ },
+ {
+ "epoch": 87.36347750109218,
+ "grad_norm": 0.4989895224571228,
+ "learning_rate": 0.0006,
+ "loss": 4.2538604736328125,
+ "step": 6290
+ },
+ {
+ "epoch": 87.37745740498035,
+ "grad_norm": 0.48488590121269226,
+ "learning_rate": 0.0006,
+ "loss": 4.191547870635986,
+ "step": 6291
+ },
+ {
+ "epoch": 87.3914373088685,
+ "grad_norm": 0.4702613353729248,
+ "learning_rate": 0.0006,
+ "loss": 4.240187644958496,
+ "step": 6292
+ },
+ {
+ "epoch": 87.40541721275666,
+ "grad_norm": 0.4687752425670624,
+ "learning_rate": 0.0006,
+ "loss": 4.121512413024902,
+ "step": 6293
+ },
+ {
+ "epoch": 87.41939711664482,
+ "grad_norm": 0.48676159977912903,
+ "learning_rate": 0.0006,
+ "loss": 4.289400100708008,
+ "step": 6294
+ },
+ {
+ "epoch": 87.43337702053299,
+ "grad_norm": 0.4835919439792633,
+ "learning_rate": 0.0006,
+ "loss": 4.250560760498047,
+ "step": 6295
+ },
+ {
+ "epoch": 87.44735692442114,
+ "grad_norm": 0.4874095916748047,
+ "learning_rate": 0.0006,
+ "loss": 4.225663185119629,
+ "step": 6296
+ },
+ {
+ "epoch": 87.4613368283093,
+ "grad_norm": 0.488853394985199,
+ "learning_rate": 0.0006,
+ "loss": 4.23991584777832,
+ "step": 6297
+ },
+ {
+ "epoch": 87.47531673219747,
+ "grad_norm": 0.44397449493408203,
+ "learning_rate": 0.0006,
+ "loss": 4.123526096343994,
+ "step": 6298
+ },
+ {
+ "epoch": 87.48929663608563,
+ "grad_norm": 0.4251089096069336,
+ "learning_rate": 0.0006,
+ "loss": 4.166404724121094,
+ "step": 6299
+ },
+ {
+ "epoch": 87.50327653997378,
+ "grad_norm": 0.4290788769721985,
+ "learning_rate": 0.0006,
+ "loss": 4.228366851806641,
+ "step": 6300
+ },
+ {
+ "epoch": 87.51725644386195,
+ "grad_norm": 0.42660924792289734,
+ "learning_rate": 0.0006,
+ "loss": 4.225200653076172,
+ "step": 6301
+ },
+ {
+ "epoch": 87.53123634775011,
+ "grad_norm": 0.43401870131492615,
+ "learning_rate": 0.0006,
+ "loss": 4.27695894241333,
+ "step": 6302
+ },
+ {
+ "epoch": 87.54521625163827,
+ "grad_norm": 0.41544046998023987,
+ "learning_rate": 0.0006,
+ "loss": 4.177009582519531,
+ "step": 6303
+ },
+ {
+ "epoch": 87.55919615552644,
+ "grad_norm": 0.44220849871635437,
+ "learning_rate": 0.0006,
+ "loss": 4.2085065841674805,
+ "step": 6304
+ },
+ {
+ "epoch": 87.57317605941459,
+ "grad_norm": 0.42026737332344055,
+ "learning_rate": 0.0006,
+ "loss": 4.185011863708496,
+ "step": 6305
+ },
+ {
+ "epoch": 87.58715596330275,
+ "grad_norm": 0.44712957739830017,
+ "learning_rate": 0.0006,
+ "loss": 4.245328903198242,
+ "step": 6306
+ },
+ {
+ "epoch": 87.60113586719092,
+ "grad_norm": 0.44793379306793213,
+ "learning_rate": 0.0006,
+ "loss": 4.212185382843018,
+ "step": 6307
+ },
+ {
+ "epoch": 87.61511577107908,
+ "grad_norm": 0.4273943305015564,
+ "learning_rate": 0.0006,
+ "loss": 4.197522163391113,
+ "step": 6308
+ },
+ {
+ "epoch": 87.62909567496723,
+ "grad_norm": 0.42533764243125916,
+ "learning_rate": 0.0006,
+ "loss": 4.172801971435547,
+ "step": 6309
+ },
+ {
+ "epoch": 87.6430755788554,
+ "grad_norm": 0.43188905715942383,
+ "learning_rate": 0.0006,
+ "loss": 4.165098190307617,
+ "step": 6310
+ },
+ {
+ "epoch": 87.65705548274356,
+ "grad_norm": 0.44534748792648315,
+ "learning_rate": 0.0006,
+ "loss": 4.229440212249756,
+ "step": 6311
+ },
+ {
+ "epoch": 87.67103538663171,
+ "grad_norm": 0.45937788486480713,
+ "learning_rate": 0.0006,
+ "loss": 4.20249080657959,
+ "step": 6312
+ },
+ {
+ "epoch": 87.68501529051987,
+ "grad_norm": 0.4640798568725586,
+ "learning_rate": 0.0006,
+ "loss": 4.2877068519592285,
+ "step": 6313
+ },
+ {
+ "epoch": 87.69899519440804,
+ "grad_norm": 0.4504205882549286,
+ "learning_rate": 0.0006,
+ "loss": 4.308557510375977,
+ "step": 6314
+ },
+ {
+ "epoch": 87.7129750982962,
+ "grad_norm": 0.4654962122440338,
+ "learning_rate": 0.0006,
+ "loss": 4.335789203643799,
+ "step": 6315
+ },
+ {
+ "epoch": 87.72695500218435,
+ "grad_norm": 0.44867751002311707,
+ "learning_rate": 0.0006,
+ "loss": 4.255827903747559,
+ "step": 6316
+ },
+ {
+ "epoch": 87.74093490607252,
+ "grad_norm": 0.42953476309776306,
+ "learning_rate": 0.0006,
+ "loss": 4.224635124206543,
+ "step": 6317
+ },
+ {
+ "epoch": 87.75491480996068,
+ "grad_norm": 0.4550751745700836,
+ "learning_rate": 0.0006,
+ "loss": 4.280992031097412,
+ "step": 6318
+ },
+ {
+ "epoch": 87.76889471384884,
+ "grad_norm": 0.455138236284256,
+ "learning_rate": 0.0006,
+ "loss": 4.20681095123291,
+ "step": 6319
+ },
+ {
+ "epoch": 87.78287461773701,
+ "grad_norm": 0.4809635579586029,
+ "learning_rate": 0.0006,
+ "loss": 4.307140350341797,
+ "step": 6320
+ },
+ {
+ "epoch": 87.79685452162516,
+ "grad_norm": 0.4570373594760895,
+ "learning_rate": 0.0006,
+ "loss": 4.204259395599365,
+ "step": 6321
+ },
+ {
+ "epoch": 87.81083442551332,
+ "grad_norm": 0.4444306194782257,
+ "learning_rate": 0.0006,
+ "loss": 4.341936111450195,
+ "step": 6322
+ },
+ {
+ "epoch": 87.82481432940149,
+ "grad_norm": 0.42678138613700867,
+ "learning_rate": 0.0006,
+ "loss": 4.294060230255127,
+ "step": 6323
+ },
+ {
+ "epoch": 87.83879423328965,
+ "grad_norm": 0.43476608395576477,
+ "learning_rate": 0.0006,
+ "loss": 4.215855598449707,
+ "step": 6324
+ },
+ {
+ "epoch": 87.8527741371778,
+ "grad_norm": 0.42589980363845825,
+ "learning_rate": 0.0006,
+ "loss": 4.274613380432129,
+ "step": 6325
+ },
+ {
+ "epoch": 87.86675404106597,
+ "grad_norm": 0.4429503083229065,
+ "learning_rate": 0.0006,
+ "loss": 4.283843994140625,
+ "step": 6326
+ },
+ {
+ "epoch": 87.88073394495413,
+ "grad_norm": 0.4391273558139801,
+ "learning_rate": 0.0006,
+ "loss": 4.207469463348389,
+ "step": 6327
+ },
+ {
+ "epoch": 87.89471384884229,
+ "grad_norm": 0.4276169538497925,
+ "learning_rate": 0.0006,
+ "loss": 4.249349594116211,
+ "step": 6328
+ },
+ {
+ "epoch": 87.90869375273044,
+ "grad_norm": 0.40960410237312317,
+ "learning_rate": 0.0006,
+ "loss": 4.273435592651367,
+ "step": 6329
+ },
+ {
+ "epoch": 87.92267365661861,
+ "grad_norm": 0.4168111979961395,
+ "learning_rate": 0.0006,
+ "loss": 4.251261234283447,
+ "step": 6330
+ },
+ {
+ "epoch": 87.93665356050677,
+ "grad_norm": 0.41783952713012695,
+ "learning_rate": 0.0006,
+ "loss": 4.247318267822266,
+ "step": 6331
+ },
+ {
+ "epoch": 87.95063346439493,
+ "grad_norm": 0.4538755416870117,
+ "learning_rate": 0.0006,
+ "loss": 4.262417793273926,
+ "step": 6332
+ },
+ {
+ "epoch": 87.9646133682831,
+ "grad_norm": 0.46401816606521606,
+ "learning_rate": 0.0006,
+ "loss": 4.208325386047363,
+ "step": 6333
+ },
+ {
+ "epoch": 87.97859327217125,
+ "grad_norm": 0.4470364451408386,
+ "learning_rate": 0.0006,
+ "loss": 4.340447902679443,
+ "step": 6334
+ },
+ {
+ "epoch": 87.99257317605941,
+ "grad_norm": 0.42655766010284424,
+ "learning_rate": 0.0006,
+ "loss": 4.263899326324463,
+ "step": 6335
+ },
+ {
+ "epoch": 88.0,
+ "grad_norm": 0.509168803691864,
+ "learning_rate": 0.0006,
+ "loss": 4.314913272857666,
+ "step": 6336
+ },
+ {
+ "epoch": 88.0,
+ "eval_loss": 6.432528972625732,
+ "eval_runtime": 43.7788,
+ "eval_samples_per_second": 55.78,
+ "eval_steps_per_second": 3.495,
+ "step": 6336
+ },
+ {
+ "epoch": 88.01397990388816,
+ "grad_norm": 0.4394129514694214,
+ "learning_rate": 0.0006,
+ "loss": 4.098550796508789,
+ "step": 6337
+ },
+ {
+ "epoch": 88.02795980777633,
+ "grad_norm": 0.5240156650543213,
+ "learning_rate": 0.0006,
+ "loss": 4.23394775390625,
+ "step": 6338
+ },
+ {
+ "epoch": 88.04193971166448,
+ "grad_norm": 0.5676344633102417,
+ "learning_rate": 0.0006,
+ "loss": 4.099154472351074,
+ "step": 6339
+ },
+ {
+ "epoch": 88.05591961555264,
+ "grad_norm": 0.6156212091445923,
+ "learning_rate": 0.0006,
+ "loss": 4.1330366134643555,
+ "step": 6340
+ },
+ {
+ "epoch": 88.06989951944081,
+ "grad_norm": 0.6814325451850891,
+ "learning_rate": 0.0006,
+ "loss": 4.072694778442383,
+ "step": 6341
+ },
+ {
+ "epoch": 88.08387942332897,
+ "grad_norm": 0.8030034303665161,
+ "learning_rate": 0.0006,
+ "loss": 4.105202674865723,
+ "step": 6342
+ },
+ {
+ "epoch": 88.09785932721712,
+ "grad_norm": 0.8481942415237427,
+ "learning_rate": 0.0006,
+ "loss": 4.197783470153809,
+ "step": 6343
+ },
+ {
+ "epoch": 88.1118392311053,
+ "grad_norm": 0.850947380065918,
+ "learning_rate": 0.0006,
+ "loss": 4.229393005371094,
+ "step": 6344
+ },
+ {
+ "epoch": 88.12581913499345,
+ "grad_norm": 0.8265675902366638,
+ "learning_rate": 0.0006,
+ "loss": 4.217302322387695,
+ "step": 6345
+ },
+ {
+ "epoch": 88.1397990388816,
+ "grad_norm": 0.68138188123703,
+ "learning_rate": 0.0006,
+ "loss": 4.041551113128662,
+ "step": 6346
+ },
+ {
+ "epoch": 88.15377894276976,
+ "grad_norm": 0.6319344639778137,
+ "learning_rate": 0.0006,
+ "loss": 4.226554870605469,
+ "step": 6347
+ },
+ {
+ "epoch": 88.16775884665793,
+ "grad_norm": 0.6571003794670105,
+ "learning_rate": 0.0006,
+ "loss": 4.237563133239746,
+ "step": 6348
+ },
+ {
+ "epoch": 88.18173875054609,
+ "grad_norm": 0.5948857665061951,
+ "learning_rate": 0.0006,
+ "loss": 4.038263320922852,
+ "step": 6349
+ },
+ {
+ "epoch": 88.19571865443424,
+ "grad_norm": 0.5716128349304199,
+ "learning_rate": 0.0006,
+ "loss": 4.119385719299316,
+ "step": 6350
+ },
+ {
+ "epoch": 88.20969855832242,
+ "grad_norm": 0.5655331015586853,
+ "learning_rate": 0.0006,
+ "loss": 4.186577320098877,
+ "step": 6351
+ },
+ {
+ "epoch": 88.22367846221057,
+ "grad_norm": 0.5525882244110107,
+ "learning_rate": 0.0006,
+ "loss": 4.243231773376465,
+ "step": 6352
+ },
+ {
+ "epoch": 88.23765836609873,
+ "grad_norm": 0.5307421088218689,
+ "learning_rate": 0.0006,
+ "loss": 4.087076187133789,
+ "step": 6353
+ },
+ {
+ "epoch": 88.2516382699869,
+ "grad_norm": 0.5078102350234985,
+ "learning_rate": 0.0006,
+ "loss": 4.140388488769531,
+ "step": 6354
+ },
+ {
+ "epoch": 88.26561817387505,
+ "grad_norm": 0.47047364711761475,
+ "learning_rate": 0.0006,
+ "loss": 4.150869369506836,
+ "step": 6355
+ },
+ {
+ "epoch": 88.27959807776321,
+ "grad_norm": 0.49231794476509094,
+ "learning_rate": 0.0006,
+ "loss": 4.194167613983154,
+ "step": 6356
+ },
+ {
+ "epoch": 88.29357798165138,
+ "grad_norm": 0.5090434551239014,
+ "learning_rate": 0.0006,
+ "loss": 4.1998066902160645,
+ "step": 6357
+ },
+ {
+ "epoch": 88.30755788553954,
+ "grad_norm": 0.4979526698589325,
+ "learning_rate": 0.0006,
+ "loss": 4.166561603546143,
+ "step": 6358
+ },
+ {
+ "epoch": 88.3215377894277,
+ "grad_norm": 0.49379774928092957,
+ "learning_rate": 0.0006,
+ "loss": 4.1152544021606445,
+ "step": 6359
+ },
+ {
+ "epoch": 88.33551769331586,
+ "grad_norm": 0.4689238369464874,
+ "learning_rate": 0.0006,
+ "loss": 4.072159767150879,
+ "step": 6360
+ },
+ {
+ "epoch": 88.34949759720402,
+ "grad_norm": 0.46816980838775635,
+ "learning_rate": 0.0006,
+ "loss": 4.18184232711792,
+ "step": 6361
+ },
+ {
+ "epoch": 88.36347750109218,
+ "grad_norm": 0.4660980701446533,
+ "learning_rate": 0.0006,
+ "loss": 4.234951972961426,
+ "step": 6362
+ },
+ {
+ "epoch": 88.37745740498035,
+ "grad_norm": 0.4613046646118164,
+ "learning_rate": 0.0006,
+ "loss": 4.201333999633789,
+ "step": 6363
+ },
+ {
+ "epoch": 88.3914373088685,
+ "grad_norm": 0.4615226686000824,
+ "learning_rate": 0.0006,
+ "loss": 4.188490867614746,
+ "step": 6364
+ },
+ {
+ "epoch": 88.40541721275666,
+ "grad_norm": 0.4791965186595917,
+ "learning_rate": 0.0006,
+ "loss": 4.14546537399292,
+ "step": 6365
+ },
+ {
+ "epoch": 88.41939711664482,
+ "grad_norm": 0.47666725516319275,
+ "learning_rate": 0.0006,
+ "loss": 4.196171760559082,
+ "step": 6366
+ },
+ {
+ "epoch": 88.43337702053299,
+ "grad_norm": 0.4990350604057312,
+ "learning_rate": 0.0006,
+ "loss": 4.266140937805176,
+ "step": 6367
+ },
+ {
+ "epoch": 88.44735692442114,
+ "grad_norm": 0.46699395775794983,
+ "learning_rate": 0.0006,
+ "loss": 4.166864395141602,
+ "step": 6368
+ },
+ {
+ "epoch": 88.4613368283093,
+ "grad_norm": 0.4724302291870117,
+ "learning_rate": 0.0006,
+ "loss": 4.206777095794678,
+ "step": 6369
+ },
+ {
+ "epoch": 88.47531673219747,
+ "grad_norm": 0.47723710536956787,
+ "learning_rate": 0.0006,
+ "loss": 4.1860880851745605,
+ "step": 6370
+ },
+ {
+ "epoch": 88.48929663608563,
+ "grad_norm": 0.46229004859924316,
+ "learning_rate": 0.0006,
+ "loss": 4.241762161254883,
+ "step": 6371
+ },
+ {
+ "epoch": 88.50327653997378,
+ "grad_norm": 0.4399679899215698,
+ "learning_rate": 0.0006,
+ "loss": 4.1255388259887695,
+ "step": 6372
+ },
+ {
+ "epoch": 88.51725644386195,
+ "grad_norm": 0.4210696816444397,
+ "learning_rate": 0.0006,
+ "loss": 4.226009368896484,
+ "step": 6373
+ },
+ {
+ "epoch": 88.53123634775011,
+ "grad_norm": 0.4285459816455841,
+ "learning_rate": 0.0006,
+ "loss": 4.266463279724121,
+ "step": 6374
+ },
+ {
+ "epoch": 88.54521625163827,
+ "grad_norm": 0.45448604226112366,
+ "learning_rate": 0.0006,
+ "loss": 4.243244171142578,
+ "step": 6375
+ },
+ {
+ "epoch": 88.55919615552644,
+ "grad_norm": 0.4520719349384308,
+ "learning_rate": 0.0006,
+ "loss": 4.208941459655762,
+ "step": 6376
+ },
+ {
+ "epoch": 88.57317605941459,
+ "grad_norm": 0.4451465308666229,
+ "learning_rate": 0.0006,
+ "loss": 4.247753143310547,
+ "step": 6377
+ },
+ {
+ "epoch": 88.58715596330275,
+ "grad_norm": 0.4189188778400421,
+ "learning_rate": 0.0006,
+ "loss": 4.195448398590088,
+ "step": 6378
+ },
+ {
+ "epoch": 88.60113586719092,
+ "grad_norm": 0.4491824209690094,
+ "learning_rate": 0.0006,
+ "loss": 4.198684215545654,
+ "step": 6379
+ },
+ {
+ "epoch": 88.61511577107908,
+ "grad_norm": 0.43947094678878784,
+ "learning_rate": 0.0006,
+ "loss": 4.153960227966309,
+ "step": 6380
+ },
+ {
+ "epoch": 88.62909567496723,
+ "grad_norm": 0.4456414580345154,
+ "learning_rate": 0.0006,
+ "loss": 4.2118024826049805,
+ "step": 6381
+ },
+ {
+ "epoch": 88.6430755788554,
+ "grad_norm": 0.4536513090133667,
+ "learning_rate": 0.0006,
+ "loss": 4.276762008666992,
+ "step": 6382
+ },
+ {
+ "epoch": 88.65705548274356,
+ "grad_norm": 0.44052013754844666,
+ "learning_rate": 0.0006,
+ "loss": 4.312568187713623,
+ "step": 6383
+ },
+ {
+ "epoch": 88.67103538663171,
+ "grad_norm": 0.41901564598083496,
+ "learning_rate": 0.0006,
+ "loss": 4.142590522766113,
+ "step": 6384
+ },
+ {
+ "epoch": 88.68501529051987,
+ "grad_norm": 0.4399242401123047,
+ "learning_rate": 0.0006,
+ "loss": 4.267861366271973,
+ "step": 6385
+ },
+ {
+ "epoch": 88.69899519440804,
+ "grad_norm": 0.43378013372421265,
+ "learning_rate": 0.0006,
+ "loss": 4.2185163497924805,
+ "step": 6386
+ },
+ {
+ "epoch": 88.7129750982962,
+ "grad_norm": 0.4383338987827301,
+ "learning_rate": 0.0006,
+ "loss": 4.114858627319336,
+ "step": 6387
+ },
+ {
+ "epoch": 88.72695500218435,
+ "grad_norm": 0.42995721101760864,
+ "learning_rate": 0.0006,
+ "loss": 4.287274360656738,
+ "step": 6388
+ },
+ {
+ "epoch": 88.74093490607252,
+ "grad_norm": 0.45664533972740173,
+ "learning_rate": 0.0006,
+ "loss": 4.258739948272705,
+ "step": 6389
+ },
+ {
+ "epoch": 88.75491480996068,
+ "grad_norm": 0.4731299579143524,
+ "learning_rate": 0.0006,
+ "loss": 4.317540168762207,
+ "step": 6390
+ },
+ {
+ "epoch": 88.76889471384884,
+ "grad_norm": 0.48365700244903564,
+ "learning_rate": 0.0006,
+ "loss": 4.192890167236328,
+ "step": 6391
+ },
+ {
+ "epoch": 88.78287461773701,
+ "grad_norm": 0.5313749313354492,
+ "learning_rate": 0.0006,
+ "loss": 4.293295860290527,
+ "step": 6392
+ },
+ {
+ "epoch": 88.79685452162516,
+ "grad_norm": 0.5615261197090149,
+ "learning_rate": 0.0006,
+ "loss": 4.228304862976074,
+ "step": 6393
+ },
+ {
+ "epoch": 88.81083442551332,
+ "grad_norm": 0.5600057244300842,
+ "learning_rate": 0.0006,
+ "loss": 4.122723579406738,
+ "step": 6394
+ },
+ {
+ "epoch": 88.82481432940149,
+ "grad_norm": 0.5509400367736816,
+ "learning_rate": 0.0006,
+ "loss": 4.270684719085693,
+ "step": 6395
+ },
+ {
+ "epoch": 88.83879423328965,
+ "grad_norm": 0.5091027021408081,
+ "learning_rate": 0.0006,
+ "loss": 4.219861030578613,
+ "step": 6396
+ },
+ {
+ "epoch": 88.8527741371778,
+ "grad_norm": 0.467963308095932,
+ "learning_rate": 0.0006,
+ "loss": 4.2875518798828125,
+ "step": 6397
+ },
+ {
+ "epoch": 88.86675404106597,
+ "grad_norm": 0.4483562707901001,
+ "learning_rate": 0.0006,
+ "loss": 4.2151031494140625,
+ "step": 6398
+ },
+ {
+ "epoch": 88.88073394495413,
+ "grad_norm": 0.494113951921463,
+ "learning_rate": 0.0006,
+ "loss": 4.2288713455200195,
+ "step": 6399
+ },
+ {
+ "epoch": 88.89471384884229,
+ "grad_norm": 0.44725731015205383,
+ "learning_rate": 0.0006,
+ "loss": 4.267457962036133,
+ "step": 6400
+ },
+ {
+ "epoch": 88.90869375273044,
+ "grad_norm": 0.43298426270484924,
+ "learning_rate": 0.0006,
+ "loss": 4.271795272827148,
+ "step": 6401
+ },
+ {
+ "epoch": 88.92267365661861,
+ "grad_norm": 0.4664212465286255,
+ "learning_rate": 0.0006,
+ "loss": 4.186749458312988,
+ "step": 6402
+ },
+ {
+ "epoch": 88.93665356050677,
+ "grad_norm": 0.49105745553970337,
+ "learning_rate": 0.0006,
+ "loss": 4.167403697967529,
+ "step": 6403
+ },
+ {
+ "epoch": 88.95063346439493,
+ "grad_norm": 0.47057443857192993,
+ "learning_rate": 0.0006,
+ "loss": 4.183148384094238,
+ "step": 6404
+ },
+ {
+ "epoch": 88.9646133682831,
+ "grad_norm": 0.44123876094818115,
+ "learning_rate": 0.0006,
+ "loss": 4.230330467224121,
+ "step": 6405
+ },
+ {
+ "epoch": 88.97859327217125,
+ "grad_norm": 0.4363035261631012,
+ "learning_rate": 0.0006,
+ "loss": 4.26979923248291,
+ "step": 6406
+ },
+ {
+ "epoch": 88.99257317605941,
+ "grad_norm": 0.43350642919540405,
+ "learning_rate": 0.0006,
+ "loss": 4.286896705627441,
+ "step": 6407
+ },
+ {
+ "epoch": 89.0,
+ "grad_norm": 0.5350832343101501,
+ "learning_rate": 0.0006,
+ "loss": 4.34681510925293,
+ "step": 6408
+ },
+ {
+ "epoch": 89.0,
+ "eval_loss": 6.455365180969238,
+ "eval_runtime": 44.1423,
+ "eval_samples_per_second": 55.321,
+ "eval_steps_per_second": 3.466,
+ "step": 6408
+ },
+ {
+ "epoch": 89.01397990388816,
+ "grad_norm": 0.4708399176597595,
+ "learning_rate": 0.0006,
+ "loss": 4.036174774169922,
+ "step": 6409
+ },
+ {
+ "epoch": 89.02795980777633,
+ "grad_norm": 0.525632917881012,
+ "learning_rate": 0.0006,
+ "loss": 4.141895294189453,
+ "step": 6410
+ },
+ {
+ "epoch": 89.04193971166448,
+ "grad_norm": 0.5222662687301636,
+ "learning_rate": 0.0006,
+ "loss": 4.112619400024414,
+ "step": 6411
+ },
+ {
+ "epoch": 89.05591961555264,
+ "grad_norm": 0.48093459010124207,
+ "learning_rate": 0.0006,
+ "loss": 4.164566516876221,
+ "step": 6412
+ },
+ {
+ "epoch": 89.06989951944081,
+ "grad_norm": 0.511407732963562,
+ "learning_rate": 0.0006,
+ "loss": 4.165305137634277,
+ "step": 6413
+ },
+ {
+ "epoch": 89.08387942332897,
+ "grad_norm": 0.468172162771225,
+ "learning_rate": 0.0006,
+ "loss": 4.208954811096191,
+ "step": 6414
+ },
+ {
+ "epoch": 89.09785932721712,
+ "grad_norm": 0.4654451906681061,
+ "learning_rate": 0.0006,
+ "loss": 4.143332481384277,
+ "step": 6415
+ },
+ {
+ "epoch": 89.1118392311053,
+ "grad_norm": 0.49474361538887024,
+ "learning_rate": 0.0006,
+ "loss": 4.059474945068359,
+ "step": 6416
+ },
+ {
+ "epoch": 89.12581913499345,
+ "grad_norm": 0.5038414001464844,
+ "learning_rate": 0.0006,
+ "loss": 4.041683673858643,
+ "step": 6417
+ },
+ {
+ "epoch": 89.1397990388816,
+ "grad_norm": 0.4938134551048279,
+ "learning_rate": 0.0006,
+ "loss": 4.133648872375488,
+ "step": 6418
+ },
+ {
+ "epoch": 89.15377894276976,
+ "grad_norm": 0.4953842759132385,
+ "learning_rate": 0.0006,
+ "loss": 4.123804092407227,
+ "step": 6419
+ },
+ {
+ "epoch": 89.16775884665793,
+ "grad_norm": 0.5027281641960144,
+ "learning_rate": 0.0006,
+ "loss": 4.190883636474609,
+ "step": 6420
+ },
+ {
+ "epoch": 89.18173875054609,
+ "grad_norm": 0.5707582235336304,
+ "learning_rate": 0.0006,
+ "loss": 4.118431091308594,
+ "step": 6421
+ },
+ {
+ "epoch": 89.19571865443424,
+ "grad_norm": 0.6110844016075134,
+ "learning_rate": 0.0006,
+ "loss": 4.128604888916016,
+ "step": 6422
+ },
+ {
+ "epoch": 89.20969855832242,
+ "grad_norm": 0.7164067625999451,
+ "learning_rate": 0.0006,
+ "loss": 4.193438529968262,
+ "step": 6423
+ },
+ {
+ "epoch": 89.22367846221057,
+ "grad_norm": 0.8181775808334351,
+ "learning_rate": 0.0006,
+ "loss": 4.164249897003174,
+ "step": 6424
+ },
+ {
+ "epoch": 89.23765836609873,
+ "grad_norm": 0.8548126220703125,
+ "learning_rate": 0.0006,
+ "loss": 4.179556846618652,
+ "step": 6425
+ },
+ {
+ "epoch": 89.2516382699869,
+ "grad_norm": 0.7643877863883972,
+ "learning_rate": 0.0006,
+ "loss": 4.274655342102051,
+ "step": 6426
+ },
+ {
+ "epoch": 89.26561817387505,
+ "grad_norm": 0.6268690824508667,
+ "learning_rate": 0.0006,
+ "loss": 4.15860652923584,
+ "step": 6427
+ },
+ {
+ "epoch": 89.27959807776321,
+ "grad_norm": 0.5615007877349854,
+ "learning_rate": 0.0006,
+ "loss": 4.081657409667969,
+ "step": 6428
+ },
+ {
+ "epoch": 89.29357798165138,
+ "grad_norm": 0.5658699870109558,
+ "learning_rate": 0.0006,
+ "loss": 4.072505950927734,
+ "step": 6429
+ },
+ {
+ "epoch": 89.30755788553954,
+ "grad_norm": 0.546249508857727,
+ "learning_rate": 0.0006,
+ "loss": 4.106170654296875,
+ "step": 6430
+ },
+ {
+ "epoch": 89.3215377894277,
+ "grad_norm": 0.5397952198982239,
+ "learning_rate": 0.0006,
+ "loss": 4.177685737609863,
+ "step": 6431
+ },
+ {
+ "epoch": 89.33551769331586,
+ "grad_norm": 0.49549877643585205,
+ "learning_rate": 0.0006,
+ "loss": 4.157642841339111,
+ "step": 6432
+ },
+ {
+ "epoch": 89.34949759720402,
+ "grad_norm": 0.5166518092155457,
+ "learning_rate": 0.0006,
+ "loss": 4.233739852905273,
+ "step": 6433
+ },
+ {
+ "epoch": 89.36347750109218,
+ "grad_norm": 0.5124993920326233,
+ "learning_rate": 0.0006,
+ "loss": 4.195950031280518,
+ "step": 6434
+ },
+ {
+ "epoch": 89.37745740498035,
+ "grad_norm": 0.5590482950210571,
+ "learning_rate": 0.0006,
+ "loss": 4.23075532913208,
+ "step": 6435
+ },
+ {
+ "epoch": 89.3914373088685,
+ "grad_norm": 0.5433930158615112,
+ "learning_rate": 0.0006,
+ "loss": 4.222860336303711,
+ "step": 6436
+ },
+ {
+ "epoch": 89.40541721275666,
+ "grad_norm": 0.5289043188095093,
+ "learning_rate": 0.0006,
+ "loss": 4.150032043457031,
+ "step": 6437
+ },
+ {
+ "epoch": 89.41939711664482,
+ "grad_norm": 0.50300133228302,
+ "learning_rate": 0.0006,
+ "loss": 4.162202835083008,
+ "step": 6438
+ },
+ {
+ "epoch": 89.43337702053299,
+ "grad_norm": 0.5404106378555298,
+ "learning_rate": 0.0006,
+ "loss": 4.170771598815918,
+ "step": 6439
+ },
+ {
+ "epoch": 89.44735692442114,
+ "grad_norm": 0.5366392731666565,
+ "learning_rate": 0.0006,
+ "loss": 4.193058013916016,
+ "step": 6440
+ },
+ {
+ "epoch": 89.4613368283093,
+ "grad_norm": 0.5408844351768494,
+ "learning_rate": 0.0006,
+ "loss": 4.155562400817871,
+ "step": 6441
+ },
+ {
+ "epoch": 89.47531673219747,
+ "grad_norm": 0.5111629366874695,
+ "learning_rate": 0.0006,
+ "loss": 4.128347396850586,
+ "step": 6442
+ },
+ {
+ "epoch": 89.48929663608563,
+ "grad_norm": 0.5085851550102234,
+ "learning_rate": 0.0006,
+ "loss": 4.229991912841797,
+ "step": 6443
+ },
+ {
+ "epoch": 89.50327653997378,
+ "grad_norm": 0.4959278106689453,
+ "learning_rate": 0.0006,
+ "loss": 4.226166248321533,
+ "step": 6444
+ },
+ {
+ "epoch": 89.51725644386195,
+ "grad_norm": 0.5022532343864441,
+ "learning_rate": 0.0006,
+ "loss": 4.289538383483887,
+ "step": 6445
+ },
+ {
+ "epoch": 89.53123634775011,
+ "grad_norm": 0.4877833425998688,
+ "learning_rate": 0.0006,
+ "loss": 4.147860527038574,
+ "step": 6446
+ },
+ {
+ "epoch": 89.54521625163827,
+ "grad_norm": 0.471768319606781,
+ "learning_rate": 0.0006,
+ "loss": 4.2429890632629395,
+ "step": 6447
+ },
+ {
+ "epoch": 89.55919615552644,
+ "grad_norm": 0.4479426443576813,
+ "learning_rate": 0.0006,
+ "loss": 4.193235397338867,
+ "step": 6448
+ },
+ {
+ "epoch": 89.57317605941459,
+ "grad_norm": 0.4530574083328247,
+ "learning_rate": 0.0006,
+ "loss": 4.133496284484863,
+ "step": 6449
+ },
+ {
+ "epoch": 89.58715596330275,
+ "grad_norm": 0.440782368183136,
+ "learning_rate": 0.0006,
+ "loss": 4.25516414642334,
+ "step": 6450
+ },
+ {
+ "epoch": 89.60113586719092,
+ "grad_norm": 0.4279060959815979,
+ "learning_rate": 0.0006,
+ "loss": 4.155753135681152,
+ "step": 6451
+ },
+ {
+ "epoch": 89.61511577107908,
+ "grad_norm": 0.4291892945766449,
+ "learning_rate": 0.0006,
+ "loss": 4.073741436004639,
+ "step": 6452
+ },
+ {
+ "epoch": 89.62909567496723,
+ "grad_norm": 0.42664697766304016,
+ "learning_rate": 0.0006,
+ "loss": 4.167827129364014,
+ "step": 6453
+ },
+ {
+ "epoch": 89.6430755788554,
+ "grad_norm": 0.43017902970314026,
+ "learning_rate": 0.0006,
+ "loss": 4.161744117736816,
+ "step": 6454
+ },
+ {
+ "epoch": 89.65705548274356,
+ "grad_norm": 0.4454079270362854,
+ "learning_rate": 0.0006,
+ "loss": 4.2425856590271,
+ "step": 6455
+ },
+ {
+ "epoch": 89.67103538663171,
+ "grad_norm": 0.439971387386322,
+ "learning_rate": 0.0006,
+ "loss": 4.149636745452881,
+ "step": 6456
+ },
+ {
+ "epoch": 89.68501529051987,
+ "grad_norm": 0.41075047850608826,
+ "learning_rate": 0.0006,
+ "loss": 4.2641754150390625,
+ "step": 6457
+ },
+ {
+ "epoch": 89.69899519440804,
+ "grad_norm": 0.4242379367351532,
+ "learning_rate": 0.0006,
+ "loss": 4.19976806640625,
+ "step": 6458
+ },
+ {
+ "epoch": 89.7129750982962,
+ "grad_norm": 0.449848473072052,
+ "learning_rate": 0.0006,
+ "loss": 4.209725379943848,
+ "step": 6459
+ },
+ {
+ "epoch": 89.72695500218435,
+ "grad_norm": 0.4313943088054657,
+ "learning_rate": 0.0006,
+ "loss": 4.189460754394531,
+ "step": 6460
+ },
+ {
+ "epoch": 89.74093490607252,
+ "grad_norm": 0.4117465615272522,
+ "learning_rate": 0.0006,
+ "loss": 4.23152494430542,
+ "step": 6461
+ },
+ {
+ "epoch": 89.75491480996068,
+ "grad_norm": 0.43824872374534607,
+ "learning_rate": 0.0006,
+ "loss": 4.275446891784668,
+ "step": 6462
+ },
+ {
+ "epoch": 89.76889471384884,
+ "grad_norm": 0.4223631024360657,
+ "learning_rate": 0.0006,
+ "loss": 4.213408470153809,
+ "step": 6463
+ },
+ {
+ "epoch": 89.78287461773701,
+ "grad_norm": 0.4584514796733856,
+ "learning_rate": 0.0006,
+ "loss": 4.268832206726074,
+ "step": 6464
+ },
+ {
+ "epoch": 89.79685452162516,
+ "grad_norm": 0.494238018989563,
+ "learning_rate": 0.0006,
+ "loss": 4.247956275939941,
+ "step": 6465
+ },
+ {
+ "epoch": 89.81083442551332,
+ "grad_norm": 0.5107383728027344,
+ "learning_rate": 0.0006,
+ "loss": 4.252870559692383,
+ "step": 6466
+ },
+ {
+ "epoch": 89.82481432940149,
+ "grad_norm": 0.5290380716323853,
+ "learning_rate": 0.0006,
+ "loss": 4.171296119689941,
+ "step": 6467
+ },
+ {
+ "epoch": 89.83879423328965,
+ "grad_norm": 0.5208032727241516,
+ "learning_rate": 0.0006,
+ "loss": 4.278501510620117,
+ "step": 6468
+ },
+ {
+ "epoch": 89.8527741371778,
+ "grad_norm": 0.4737851321697235,
+ "learning_rate": 0.0006,
+ "loss": 4.302886962890625,
+ "step": 6469
+ },
+ {
+ "epoch": 89.86675404106597,
+ "grad_norm": 0.4450524151325226,
+ "learning_rate": 0.0006,
+ "loss": 4.232474327087402,
+ "step": 6470
+ },
+ {
+ "epoch": 89.88073394495413,
+ "grad_norm": 0.4427195191383362,
+ "learning_rate": 0.0006,
+ "loss": 4.172199249267578,
+ "step": 6471
+ },
+ {
+ "epoch": 89.89471384884229,
+ "grad_norm": 0.43507620692253113,
+ "learning_rate": 0.0006,
+ "loss": 4.249779224395752,
+ "step": 6472
+ },
+ {
+ "epoch": 89.90869375273044,
+ "grad_norm": 0.4446448087692261,
+ "learning_rate": 0.0006,
+ "loss": 4.1917572021484375,
+ "step": 6473
+ },
+ {
+ "epoch": 89.92267365661861,
+ "grad_norm": 0.4660170376300812,
+ "learning_rate": 0.0006,
+ "loss": 4.329804420471191,
+ "step": 6474
+ },
+ {
+ "epoch": 89.93665356050677,
+ "grad_norm": 0.4415760636329651,
+ "learning_rate": 0.0006,
+ "loss": 4.222148418426514,
+ "step": 6475
+ },
+ {
+ "epoch": 89.95063346439493,
+ "grad_norm": 0.4310150742530823,
+ "learning_rate": 0.0006,
+ "loss": 4.247184753417969,
+ "step": 6476
+ },
+ {
+ "epoch": 89.9646133682831,
+ "grad_norm": 0.41320905089378357,
+ "learning_rate": 0.0006,
+ "loss": 4.2810163497924805,
+ "step": 6477
+ },
+ {
+ "epoch": 89.97859327217125,
+ "grad_norm": 0.4054322838783264,
+ "learning_rate": 0.0006,
+ "loss": 4.183734893798828,
+ "step": 6478
+ },
+ {
+ "epoch": 89.99257317605941,
+ "grad_norm": 0.4412568211555481,
+ "learning_rate": 0.0006,
+ "loss": 4.278779029846191,
+ "step": 6479
+ },
+ {
+ "epoch": 90.0,
+ "grad_norm": 0.5007101893424988,
+ "learning_rate": 0.0006,
+ "loss": 4.1415252685546875,
+ "step": 6480
+ },
+ {
+ "epoch": 90.0,
+ "eval_loss": 6.461297512054443,
+ "eval_runtime": 43.9594,
+ "eval_samples_per_second": 55.551,
+ "eval_steps_per_second": 3.48,
+ "step": 6480
+ },
+ {
+ "epoch": 90.01397990388816,
+ "grad_norm": 0.4736317992210388,
+ "learning_rate": 0.0006,
+ "loss": 4.099908828735352,
+ "step": 6481
+ },
+ {
+ "epoch": 90.02795980777633,
+ "grad_norm": 0.4843558669090271,
+ "learning_rate": 0.0006,
+ "loss": 4.172642707824707,
+ "step": 6482
+ },
+ {
+ "epoch": 90.04193971166448,
+ "grad_norm": 0.5011246204376221,
+ "learning_rate": 0.0006,
+ "loss": 4.213924407958984,
+ "step": 6483
+ },
+ {
+ "epoch": 90.05591961555264,
+ "grad_norm": 0.5023370981216431,
+ "learning_rate": 0.0006,
+ "loss": 4.07386589050293,
+ "step": 6484
+ },
+ {
+ "epoch": 90.06989951944081,
+ "grad_norm": 0.5439006090164185,
+ "learning_rate": 0.0006,
+ "loss": 4.213405609130859,
+ "step": 6485
+ },
+ {
+ "epoch": 90.08387942332897,
+ "grad_norm": 0.5799363851547241,
+ "learning_rate": 0.0006,
+ "loss": 4.134682655334473,
+ "step": 6486
+ },
+ {
+ "epoch": 90.09785932721712,
+ "grad_norm": 0.5854056477546692,
+ "learning_rate": 0.0006,
+ "loss": 4.171481132507324,
+ "step": 6487
+ },
+ {
+ "epoch": 90.1118392311053,
+ "grad_norm": 0.5867761373519897,
+ "learning_rate": 0.0006,
+ "loss": 4.168168544769287,
+ "step": 6488
+ },
+ {
+ "epoch": 90.12581913499345,
+ "grad_norm": 0.6079634428024292,
+ "learning_rate": 0.0006,
+ "loss": 4.112820148468018,
+ "step": 6489
+ },
+ {
+ "epoch": 90.1397990388816,
+ "grad_norm": 0.683942973613739,
+ "learning_rate": 0.0006,
+ "loss": 4.082386016845703,
+ "step": 6490
+ },
+ {
+ "epoch": 90.15377894276976,
+ "grad_norm": 0.7263656854629517,
+ "learning_rate": 0.0006,
+ "loss": 4.195616722106934,
+ "step": 6491
+ },
+ {
+ "epoch": 90.16775884665793,
+ "grad_norm": 0.7217769622802734,
+ "learning_rate": 0.0006,
+ "loss": 4.040677070617676,
+ "step": 6492
+ },
+ {
+ "epoch": 90.18173875054609,
+ "grad_norm": 0.6378527283668518,
+ "learning_rate": 0.0006,
+ "loss": 4.040353298187256,
+ "step": 6493
+ },
+ {
+ "epoch": 90.19571865443424,
+ "grad_norm": 0.551162838935852,
+ "learning_rate": 0.0006,
+ "loss": 4.206055164337158,
+ "step": 6494
+ },
+ {
+ "epoch": 90.20969855832242,
+ "grad_norm": 0.5096537470817566,
+ "learning_rate": 0.0006,
+ "loss": 4.1036481857299805,
+ "step": 6495
+ },
+ {
+ "epoch": 90.22367846221057,
+ "grad_norm": 0.5454337000846863,
+ "learning_rate": 0.0006,
+ "loss": 4.238418102264404,
+ "step": 6496
+ },
+ {
+ "epoch": 90.23765836609873,
+ "grad_norm": 0.5773523449897766,
+ "learning_rate": 0.0006,
+ "loss": 4.207098960876465,
+ "step": 6497
+ },
+ {
+ "epoch": 90.2516382699869,
+ "grad_norm": 0.5835501551628113,
+ "learning_rate": 0.0006,
+ "loss": 4.105945587158203,
+ "step": 6498
+ },
+ {
+ "epoch": 90.26561817387505,
+ "grad_norm": 0.5536814332008362,
+ "learning_rate": 0.0006,
+ "loss": 4.105280876159668,
+ "step": 6499
+ },
+ {
+ "epoch": 90.27959807776321,
+ "grad_norm": 0.5220383405685425,
+ "learning_rate": 0.0006,
+ "loss": 4.08549690246582,
+ "step": 6500
+ },
+ {
+ "epoch": 90.29357798165138,
+ "grad_norm": 0.46602848172187805,
+ "learning_rate": 0.0006,
+ "loss": 4.1158552169799805,
+ "step": 6501
+ },
+ {
+ "epoch": 90.30755788553954,
+ "grad_norm": 0.44694533944129944,
+ "learning_rate": 0.0006,
+ "loss": 4.079707145690918,
+ "step": 6502
+ },
+ {
+ "epoch": 90.3215377894277,
+ "grad_norm": 0.45450302958488464,
+ "learning_rate": 0.0006,
+ "loss": 4.149056434631348,
+ "step": 6503
+ },
+ {
+ "epoch": 90.33551769331586,
+ "grad_norm": 0.4568767845630646,
+ "learning_rate": 0.0006,
+ "loss": 4.119246482849121,
+ "step": 6504
+ },
+ {
+ "epoch": 90.34949759720402,
+ "grad_norm": 0.46284767985343933,
+ "learning_rate": 0.0006,
+ "loss": 4.262497425079346,
+ "step": 6505
+ },
+ {
+ "epoch": 90.36347750109218,
+ "grad_norm": 0.4455495774745941,
+ "learning_rate": 0.0006,
+ "loss": 4.118424415588379,
+ "step": 6506
+ },
+ {
+ "epoch": 90.37745740498035,
+ "grad_norm": 0.48050129413604736,
+ "learning_rate": 0.0006,
+ "loss": 4.312798500061035,
+ "step": 6507
+ },
+ {
+ "epoch": 90.3914373088685,
+ "grad_norm": 0.46244576573371887,
+ "learning_rate": 0.0006,
+ "loss": 4.209562301635742,
+ "step": 6508
+ },
+ {
+ "epoch": 90.40541721275666,
+ "grad_norm": 0.4645386338233948,
+ "learning_rate": 0.0006,
+ "loss": 4.193568229675293,
+ "step": 6509
+ },
+ {
+ "epoch": 90.41939711664482,
+ "grad_norm": 0.4373893439769745,
+ "learning_rate": 0.0006,
+ "loss": 4.105895042419434,
+ "step": 6510
+ },
+ {
+ "epoch": 90.43337702053299,
+ "grad_norm": 0.46292024850845337,
+ "learning_rate": 0.0006,
+ "loss": 4.095562934875488,
+ "step": 6511
+ },
+ {
+ "epoch": 90.44735692442114,
+ "grad_norm": 0.44163432717323303,
+ "learning_rate": 0.0006,
+ "loss": 4.157992839813232,
+ "step": 6512
+ },
+ {
+ "epoch": 90.4613368283093,
+ "grad_norm": 0.44154176115989685,
+ "learning_rate": 0.0006,
+ "loss": 4.131383895874023,
+ "step": 6513
+ },
+ {
+ "epoch": 90.47531673219747,
+ "grad_norm": 0.42830872535705566,
+ "learning_rate": 0.0006,
+ "loss": 4.182307243347168,
+ "step": 6514
+ },
+ {
+ "epoch": 90.48929663608563,
+ "grad_norm": 0.4245883524417877,
+ "learning_rate": 0.0006,
+ "loss": 4.234951019287109,
+ "step": 6515
+ },
+ {
+ "epoch": 90.50327653997378,
+ "grad_norm": 0.43113020062446594,
+ "learning_rate": 0.0006,
+ "loss": 4.151059627532959,
+ "step": 6516
+ },
+ {
+ "epoch": 90.51725644386195,
+ "grad_norm": 0.43065521121025085,
+ "learning_rate": 0.0006,
+ "loss": 4.190324783325195,
+ "step": 6517
+ },
+ {
+ "epoch": 90.53123634775011,
+ "grad_norm": 0.42334818840026855,
+ "learning_rate": 0.0006,
+ "loss": 4.186755657196045,
+ "step": 6518
+ },
+ {
+ "epoch": 90.54521625163827,
+ "grad_norm": 0.4574383795261383,
+ "learning_rate": 0.0006,
+ "loss": 4.26517391204834,
+ "step": 6519
+ },
+ {
+ "epoch": 90.55919615552644,
+ "grad_norm": 0.4504454731941223,
+ "learning_rate": 0.0006,
+ "loss": 4.223880767822266,
+ "step": 6520
+ },
+ {
+ "epoch": 90.57317605941459,
+ "grad_norm": 0.4703640937805176,
+ "learning_rate": 0.0006,
+ "loss": 4.116531848907471,
+ "step": 6521
+ },
+ {
+ "epoch": 90.58715596330275,
+ "grad_norm": 0.4731002151966095,
+ "learning_rate": 0.0006,
+ "loss": 4.262688636779785,
+ "step": 6522
+ },
+ {
+ "epoch": 90.60113586719092,
+ "grad_norm": 0.46259617805480957,
+ "learning_rate": 0.0006,
+ "loss": 4.232296466827393,
+ "step": 6523
+ },
+ {
+ "epoch": 90.61511577107908,
+ "grad_norm": 0.4426702857017517,
+ "learning_rate": 0.0006,
+ "loss": 4.183609962463379,
+ "step": 6524
+ },
+ {
+ "epoch": 90.62909567496723,
+ "grad_norm": 0.4491911232471466,
+ "learning_rate": 0.0006,
+ "loss": 4.144387722015381,
+ "step": 6525
+ },
+ {
+ "epoch": 90.6430755788554,
+ "grad_norm": 0.47570469975471497,
+ "learning_rate": 0.0006,
+ "loss": 4.108075141906738,
+ "step": 6526
+ },
+ {
+ "epoch": 90.65705548274356,
+ "grad_norm": 0.4894469082355499,
+ "learning_rate": 0.0006,
+ "loss": 4.164253234863281,
+ "step": 6527
+ },
+ {
+ "epoch": 90.67103538663171,
+ "grad_norm": 0.4881099760532379,
+ "learning_rate": 0.0006,
+ "loss": 4.231298446655273,
+ "step": 6528
+ },
+ {
+ "epoch": 90.68501529051987,
+ "grad_norm": 0.5164856314659119,
+ "learning_rate": 0.0006,
+ "loss": 4.18210506439209,
+ "step": 6529
+ },
+ {
+ "epoch": 90.69899519440804,
+ "grad_norm": 0.5575158596038818,
+ "learning_rate": 0.0006,
+ "loss": 4.228113174438477,
+ "step": 6530
+ },
+ {
+ "epoch": 90.7129750982962,
+ "grad_norm": 0.5158578157424927,
+ "learning_rate": 0.0006,
+ "loss": 4.148558139801025,
+ "step": 6531
+ },
+ {
+ "epoch": 90.72695500218435,
+ "grad_norm": 0.5347267389297485,
+ "learning_rate": 0.0006,
+ "loss": 4.262085914611816,
+ "step": 6532
+ },
+ {
+ "epoch": 90.74093490607252,
+ "grad_norm": 0.5480825304985046,
+ "learning_rate": 0.0006,
+ "loss": 4.210175514221191,
+ "step": 6533
+ },
+ {
+ "epoch": 90.75491480996068,
+ "grad_norm": 0.4876071512699127,
+ "learning_rate": 0.0006,
+ "loss": 4.226661682128906,
+ "step": 6534
+ },
+ {
+ "epoch": 90.76889471384884,
+ "grad_norm": 0.4442245066165924,
+ "learning_rate": 0.0006,
+ "loss": 4.147059440612793,
+ "step": 6535
+ },
+ {
+ "epoch": 90.78287461773701,
+ "grad_norm": 0.4756869971752167,
+ "learning_rate": 0.0006,
+ "loss": 4.222451210021973,
+ "step": 6536
+ },
+ {
+ "epoch": 90.79685452162516,
+ "grad_norm": 0.4980628490447998,
+ "learning_rate": 0.0006,
+ "loss": 4.14457893371582,
+ "step": 6537
+ },
+ {
+ "epoch": 90.81083442551332,
+ "grad_norm": 0.4974704086780548,
+ "learning_rate": 0.0006,
+ "loss": 4.182971954345703,
+ "step": 6538
+ },
+ {
+ "epoch": 90.82481432940149,
+ "grad_norm": 0.4811905324459076,
+ "learning_rate": 0.0006,
+ "loss": 4.158481597900391,
+ "step": 6539
+ },
+ {
+ "epoch": 90.83879423328965,
+ "grad_norm": 0.4376634657382965,
+ "learning_rate": 0.0006,
+ "loss": 4.190642356872559,
+ "step": 6540
+ },
+ {
+ "epoch": 90.8527741371778,
+ "grad_norm": 0.42999622225761414,
+ "learning_rate": 0.0006,
+ "loss": 4.194205284118652,
+ "step": 6541
+ },
+ {
+ "epoch": 90.86675404106597,
+ "grad_norm": 0.4321860671043396,
+ "learning_rate": 0.0006,
+ "loss": 4.179698944091797,
+ "step": 6542
+ },
+ {
+ "epoch": 90.88073394495413,
+ "grad_norm": 0.4605638086795807,
+ "learning_rate": 0.0006,
+ "loss": 4.258350849151611,
+ "step": 6543
+ },
+ {
+ "epoch": 90.89471384884229,
+ "grad_norm": 0.4814271330833435,
+ "learning_rate": 0.0006,
+ "loss": 4.198588848114014,
+ "step": 6544
+ },
+ {
+ "epoch": 90.90869375273044,
+ "grad_norm": 0.46291470527648926,
+ "learning_rate": 0.0006,
+ "loss": 4.225842475891113,
+ "step": 6545
+ },
+ {
+ "epoch": 90.92267365661861,
+ "grad_norm": 0.46158573031425476,
+ "learning_rate": 0.0006,
+ "loss": 4.275699615478516,
+ "step": 6546
+ },
+ {
+ "epoch": 90.93665356050677,
+ "grad_norm": 0.4749220311641693,
+ "learning_rate": 0.0006,
+ "loss": 4.217929840087891,
+ "step": 6547
+ },
+ {
+ "epoch": 90.95063346439493,
+ "grad_norm": 0.49371638894081116,
+ "learning_rate": 0.0006,
+ "loss": 4.317490577697754,
+ "step": 6548
+ },
+ {
+ "epoch": 90.9646133682831,
+ "grad_norm": 0.5182164311408997,
+ "learning_rate": 0.0006,
+ "loss": 4.287131309509277,
+ "step": 6549
+ },
+ {
+ "epoch": 90.97859327217125,
+ "grad_norm": 0.504619300365448,
+ "learning_rate": 0.0006,
+ "loss": 4.274943828582764,
+ "step": 6550
+ },
+ {
+ "epoch": 90.99257317605941,
+ "grad_norm": 0.5169302225112915,
+ "learning_rate": 0.0006,
+ "loss": 4.274248123168945,
+ "step": 6551
+ },
+ {
+ "epoch": 91.0,
+ "grad_norm": 0.6098483204841614,
+ "learning_rate": 0.0006,
+ "loss": 4.270262718200684,
+ "step": 6552
+ },
+ {
+ "epoch": 91.0,
+ "eval_loss": 6.456219673156738,
+ "eval_runtime": 60.0476,
+ "eval_samples_per_second": 40.668,
+ "eval_steps_per_second": 2.548,
+ "step": 6552
+ },
+ {
+ "epoch": 91.01397990388816,
+ "grad_norm": 0.6079859733581543,
+ "learning_rate": 0.0006,
+ "loss": 4.244258880615234,
+ "step": 6553
+ },
+ {
+ "epoch": 91.02795980777633,
+ "grad_norm": 0.7200259566307068,
+ "learning_rate": 0.0006,
+ "loss": 4.034396171569824,
+ "step": 6554
+ },
+ {
+ "epoch": 91.04193971166448,
+ "grad_norm": 0.7871384620666504,
+ "learning_rate": 0.0006,
+ "loss": 4.155852317810059,
+ "step": 6555
+ },
+ {
+ "epoch": 91.05591961555264,
+ "grad_norm": 0.7778724431991577,
+ "learning_rate": 0.0006,
+ "loss": 4.049319744110107,
+ "step": 6556
+ },
+ {
+ "epoch": 91.06989951944081,
+ "grad_norm": 0.7762705683708191,
+ "learning_rate": 0.0006,
+ "loss": 4.115581512451172,
+ "step": 6557
+ },
+ {
+ "epoch": 91.08387942332897,
+ "grad_norm": 0.7568512558937073,
+ "learning_rate": 0.0006,
+ "loss": 4.080959320068359,
+ "step": 6558
+ },
+ {
+ "epoch": 91.09785932721712,
+ "grad_norm": 0.6478087306022644,
+ "learning_rate": 0.0006,
+ "loss": 4.1375508308410645,
+ "step": 6559
+ },
+ {
+ "epoch": 91.1118392311053,
+ "grad_norm": 0.5742989778518677,
+ "learning_rate": 0.0006,
+ "loss": 4.13807487487793,
+ "step": 6560
+ },
+ {
+ "epoch": 91.12581913499345,
+ "grad_norm": 0.6028420329093933,
+ "learning_rate": 0.0006,
+ "loss": 4.1374921798706055,
+ "step": 6561
+ },
+ {
+ "epoch": 91.1397990388816,
+ "grad_norm": 0.5676671862602234,
+ "learning_rate": 0.0006,
+ "loss": 4.0767621994018555,
+ "step": 6562
+ },
+ {
+ "epoch": 91.15377894276976,
+ "grad_norm": 0.5676539540290833,
+ "learning_rate": 0.0006,
+ "loss": 4.102802276611328,
+ "step": 6563
+ },
+ {
+ "epoch": 91.16775884665793,
+ "grad_norm": 0.5306137204170227,
+ "learning_rate": 0.0006,
+ "loss": 4.204309940338135,
+ "step": 6564
+ },
+ {
+ "epoch": 91.18173875054609,
+ "grad_norm": 0.5523825883865356,
+ "learning_rate": 0.0006,
+ "loss": 4.0658159255981445,
+ "step": 6565
+ },
+ {
+ "epoch": 91.19571865443424,
+ "grad_norm": 0.56495201587677,
+ "learning_rate": 0.0006,
+ "loss": 4.229331970214844,
+ "step": 6566
+ },
+ {
+ "epoch": 91.20969855832242,
+ "grad_norm": 0.5471879839897156,
+ "learning_rate": 0.0006,
+ "loss": 4.110147953033447,
+ "step": 6567
+ },
+ {
+ "epoch": 91.22367846221057,
+ "grad_norm": 0.5384636521339417,
+ "learning_rate": 0.0006,
+ "loss": 4.152271270751953,
+ "step": 6568
+ },
+ {
+ "epoch": 91.23765836609873,
+ "grad_norm": 0.5355082750320435,
+ "learning_rate": 0.0006,
+ "loss": 4.215263366699219,
+ "step": 6569
+ },
+ {
+ "epoch": 91.2516382699869,
+ "grad_norm": 0.5029492378234863,
+ "learning_rate": 0.0006,
+ "loss": 4.123118877410889,
+ "step": 6570
+ },
+ {
+ "epoch": 91.26561817387505,
+ "grad_norm": 0.5210943222045898,
+ "learning_rate": 0.0006,
+ "loss": 4.098264694213867,
+ "step": 6571
+ },
+ {
+ "epoch": 91.27959807776321,
+ "grad_norm": 0.5714336633682251,
+ "learning_rate": 0.0006,
+ "loss": 4.169662952423096,
+ "step": 6572
+ },
+ {
+ "epoch": 91.29357798165138,
+ "grad_norm": 0.6154706478118896,
+ "learning_rate": 0.0006,
+ "loss": 4.232303619384766,
+ "step": 6573
+ },
+ {
+ "epoch": 91.30755788553954,
+ "grad_norm": 0.6045266389846802,
+ "learning_rate": 0.0006,
+ "loss": 4.15605354309082,
+ "step": 6574
+ },
+ {
+ "epoch": 91.3215377894277,
+ "grad_norm": 0.5881073474884033,
+ "learning_rate": 0.0006,
+ "loss": 4.261946678161621,
+ "step": 6575
+ },
+ {
+ "epoch": 91.33551769331586,
+ "grad_norm": 0.608492374420166,
+ "learning_rate": 0.0006,
+ "loss": 4.181393623352051,
+ "step": 6576
+ },
+ {
+ "epoch": 91.34949759720402,
+ "grad_norm": 0.6032509803771973,
+ "learning_rate": 0.0006,
+ "loss": 4.177850723266602,
+ "step": 6577
+ },
+ {
+ "epoch": 91.36347750109218,
+ "grad_norm": 0.5491278767585754,
+ "learning_rate": 0.0006,
+ "loss": 4.170995712280273,
+ "step": 6578
+ },
+ {
+ "epoch": 91.37745740498035,
+ "grad_norm": 0.5672101974487305,
+ "learning_rate": 0.0006,
+ "loss": 4.231545448303223,
+ "step": 6579
+ },
+ {
+ "epoch": 91.3914373088685,
+ "grad_norm": 0.6280085444450378,
+ "learning_rate": 0.0006,
+ "loss": 4.192296028137207,
+ "step": 6580
+ },
+ {
+ "epoch": 91.40541721275666,
+ "grad_norm": 0.5944945216178894,
+ "learning_rate": 0.0006,
+ "loss": 4.0988969802856445,
+ "step": 6581
+ },
+ {
+ "epoch": 91.41939711664482,
+ "grad_norm": 0.49758782982826233,
+ "learning_rate": 0.0006,
+ "loss": 4.117204189300537,
+ "step": 6582
+ },
+ {
+ "epoch": 91.43337702053299,
+ "grad_norm": 0.5350571274757385,
+ "learning_rate": 0.0006,
+ "loss": 4.22514533996582,
+ "step": 6583
+ },
+ {
+ "epoch": 91.44735692442114,
+ "grad_norm": 0.5463851094245911,
+ "learning_rate": 0.0006,
+ "loss": 4.234988212585449,
+ "step": 6584
+ },
+ {
+ "epoch": 91.4613368283093,
+ "grad_norm": 0.49137967824935913,
+ "learning_rate": 0.0006,
+ "loss": 4.1259918212890625,
+ "step": 6585
+ },
+ {
+ "epoch": 91.47531673219747,
+ "grad_norm": 0.4858478903770447,
+ "learning_rate": 0.0006,
+ "loss": 4.17650842666626,
+ "step": 6586
+ },
+ {
+ "epoch": 91.48929663608563,
+ "grad_norm": 0.48751482367515564,
+ "learning_rate": 0.0006,
+ "loss": 4.1488447189331055,
+ "step": 6587
+ },
+ {
+ "epoch": 91.50327653997378,
+ "grad_norm": 0.48649269342422485,
+ "learning_rate": 0.0006,
+ "loss": 4.138950347900391,
+ "step": 6588
+ },
+ {
+ "epoch": 91.51725644386195,
+ "grad_norm": 0.4758029878139496,
+ "learning_rate": 0.0006,
+ "loss": 4.167637825012207,
+ "step": 6589
+ },
+ {
+ "epoch": 91.53123634775011,
+ "grad_norm": 0.46663451194763184,
+ "learning_rate": 0.0006,
+ "loss": 4.071398735046387,
+ "step": 6590
+ },
+ {
+ "epoch": 91.54521625163827,
+ "grad_norm": 0.4612772762775421,
+ "learning_rate": 0.0006,
+ "loss": 4.144865036010742,
+ "step": 6591
+ },
+ {
+ "epoch": 91.55919615552644,
+ "grad_norm": 0.4695148169994354,
+ "learning_rate": 0.0006,
+ "loss": 4.139881134033203,
+ "step": 6592
+ },
+ {
+ "epoch": 91.57317605941459,
+ "grad_norm": 0.48135271668434143,
+ "learning_rate": 0.0006,
+ "loss": 4.167233467102051,
+ "step": 6593
+ },
+ {
+ "epoch": 91.58715596330275,
+ "grad_norm": 0.5033000707626343,
+ "learning_rate": 0.0006,
+ "loss": 4.166445732116699,
+ "step": 6594
+ },
+ {
+ "epoch": 91.60113586719092,
+ "grad_norm": 0.4646996557712555,
+ "learning_rate": 0.0006,
+ "loss": 4.17877721786499,
+ "step": 6595
+ },
+ {
+ "epoch": 91.61511577107908,
+ "grad_norm": 0.45358705520629883,
+ "learning_rate": 0.0006,
+ "loss": 4.201140403747559,
+ "step": 6596
+ },
+ {
+ "epoch": 91.62909567496723,
+ "grad_norm": 0.45453503727912903,
+ "learning_rate": 0.0006,
+ "loss": 4.249351501464844,
+ "step": 6597
+ },
+ {
+ "epoch": 91.6430755788554,
+ "grad_norm": 0.45279616117477417,
+ "learning_rate": 0.0006,
+ "loss": 4.163040637969971,
+ "step": 6598
+ },
+ {
+ "epoch": 91.65705548274356,
+ "grad_norm": 0.46521562337875366,
+ "learning_rate": 0.0006,
+ "loss": 4.315350532531738,
+ "step": 6599
+ },
+ {
+ "epoch": 91.67103538663171,
+ "grad_norm": 0.4669588506221771,
+ "learning_rate": 0.0006,
+ "loss": 4.141858100891113,
+ "step": 6600
+ },
+ {
+ "epoch": 91.68501529051987,
+ "grad_norm": 0.4884856939315796,
+ "learning_rate": 0.0006,
+ "loss": 4.149525165557861,
+ "step": 6601
+ },
+ {
+ "epoch": 91.69899519440804,
+ "grad_norm": 0.49149787425994873,
+ "learning_rate": 0.0006,
+ "loss": 4.168375015258789,
+ "step": 6602
+ },
+ {
+ "epoch": 91.7129750982962,
+ "grad_norm": 0.49810677766799927,
+ "learning_rate": 0.0006,
+ "loss": 4.066099166870117,
+ "step": 6603
+ },
+ {
+ "epoch": 91.72695500218435,
+ "grad_norm": 0.4675672948360443,
+ "learning_rate": 0.0006,
+ "loss": 4.191736221313477,
+ "step": 6604
+ },
+ {
+ "epoch": 91.74093490607252,
+ "grad_norm": 0.4815864562988281,
+ "learning_rate": 0.0006,
+ "loss": 4.2276716232299805,
+ "step": 6605
+ },
+ {
+ "epoch": 91.75491480996068,
+ "grad_norm": 0.4676399528980255,
+ "learning_rate": 0.0006,
+ "loss": 4.179114818572998,
+ "step": 6606
+ },
+ {
+ "epoch": 91.76889471384884,
+ "grad_norm": 0.43563583493232727,
+ "learning_rate": 0.0006,
+ "loss": 4.153409004211426,
+ "step": 6607
+ },
+ {
+ "epoch": 91.78287461773701,
+ "grad_norm": 0.45204871892929077,
+ "learning_rate": 0.0006,
+ "loss": 4.255942344665527,
+ "step": 6608
+ },
+ {
+ "epoch": 91.79685452162516,
+ "grad_norm": 0.4372783899307251,
+ "learning_rate": 0.0006,
+ "loss": 4.1546735763549805,
+ "step": 6609
+ },
+ {
+ "epoch": 91.81083442551332,
+ "grad_norm": 0.4686015546321869,
+ "learning_rate": 0.0006,
+ "loss": 4.252612113952637,
+ "step": 6610
+ },
+ {
+ "epoch": 91.82481432940149,
+ "grad_norm": 0.4720774292945862,
+ "learning_rate": 0.0006,
+ "loss": 4.244714736938477,
+ "step": 6611
+ },
+ {
+ "epoch": 91.83879423328965,
+ "grad_norm": 0.46509850025177,
+ "learning_rate": 0.0006,
+ "loss": 4.152102470397949,
+ "step": 6612
+ },
+ {
+ "epoch": 91.8527741371778,
+ "grad_norm": 0.4156970679759979,
+ "learning_rate": 0.0006,
+ "loss": 4.135519981384277,
+ "step": 6613
+ },
+ {
+ "epoch": 91.86675404106597,
+ "grad_norm": 0.42507460713386536,
+ "learning_rate": 0.0006,
+ "loss": 4.1698808670043945,
+ "step": 6614
+ },
+ {
+ "epoch": 91.88073394495413,
+ "grad_norm": 0.4491443336009979,
+ "learning_rate": 0.0006,
+ "loss": 4.215681076049805,
+ "step": 6615
+ },
+ {
+ "epoch": 91.89471384884229,
+ "grad_norm": 0.4253392219543457,
+ "learning_rate": 0.0006,
+ "loss": 4.241162300109863,
+ "step": 6616
+ },
+ {
+ "epoch": 91.90869375273044,
+ "grad_norm": 0.4186265170574188,
+ "learning_rate": 0.0006,
+ "loss": 4.219512939453125,
+ "step": 6617
+ },
+ {
+ "epoch": 91.92267365661861,
+ "grad_norm": 0.4518965184688568,
+ "learning_rate": 0.0006,
+ "loss": 4.27060604095459,
+ "step": 6618
+ },
+ {
+ "epoch": 91.93665356050677,
+ "grad_norm": 0.5045844912528992,
+ "learning_rate": 0.0006,
+ "loss": 4.225786209106445,
+ "step": 6619
+ },
+ {
+ "epoch": 91.95063346439493,
+ "grad_norm": 0.4688360393047333,
+ "learning_rate": 0.0006,
+ "loss": 4.243875026702881,
+ "step": 6620
+ },
+ {
+ "epoch": 91.9646133682831,
+ "grad_norm": 0.4428872764110565,
+ "learning_rate": 0.0006,
+ "loss": 4.283898830413818,
+ "step": 6621
+ },
+ {
+ "epoch": 91.97859327217125,
+ "grad_norm": 0.43714380264282227,
+ "learning_rate": 0.0006,
+ "loss": 4.210933685302734,
+ "step": 6622
+ },
+ {
+ "epoch": 91.99257317605941,
+ "grad_norm": 0.45449599623680115,
+ "learning_rate": 0.0006,
+ "loss": 4.220334053039551,
+ "step": 6623
+ },
+ {
+ "epoch": 92.0,
+ "grad_norm": 0.5236840844154358,
+ "learning_rate": 0.0006,
+ "loss": 4.171074867248535,
+ "step": 6624
+ },
+ {
+ "epoch": 92.0,
+ "eval_loss": 6.469951152801514,
+ "eval_runtime": 60.1801,
+ "eval_samples_per_second": 40.578,
+ "eval_steps_per_second": 2.542,
+ "step": 6624
+ },
+ {
+ "epoch": 92.01397990388816,
+ "grad_norm": 0.4578283131122589,
+ "learning_rate": 0.0006,
+ "loss": 4.140115737915039,
+ "step": 6625
+ },
+ {
+ "epoch": 92.02795980777633,
+ "grad_norm": 0.5099372267723083,
+ "learning_rate": 0.0006,
+ "loss": 4.168883323669434,
+ "step": 6626
+ },
+ {
+ "epoch": 92.04193971166448,
+ "grad_norm": 0.5126843452453613,
+ "learning_rate": 0.0006,
+ "loss": 4.073880195617676,
+ "step": 6627
+ },
+ {
+ "epoch": 92.05591961555264,
+ "grad_norm": 0.5174735188484192,
+ "learning_rate": 0.0006,
+ "loss": 4.0006937980651855,
+ "step": 6628
+ },
+ {
+ "epoch": 92.06989951944081,
+ "grad_norm": 0.5243334174156189,
+ "learning_rate": 0.0006,
+ "loss": 4.062863349914551,
+ "step": 6629
+ },
+ {
+ "epoch": 92.08387942332897,
+ "grad_norm": 0.5552330017089844,
+ "learning_rate": 0.0006,
+ "loss": 4.073331832885742,
+ "step": 6630
+ },
+ {
+ "epoch": 92.09785932721712,
+ "grad_norm": 0.5973173975944519,
+ "learning_rate": 0.0006,
+ "loss": 4.131340503692627,
+ "step": 6631
+ },
+ {
+ "epoch": 92.1118392311053,
+ "grad_norm": 0.6493992209434509,
+ "learning_rate": 0.0006,
+ "loss": 4.156520843505859,
+ "step": 6632
+ },
+ {
+ "epoch": 92.12581913499345,
+ "grad_norm": 0.7461282014846802,
+ "learning_rate": 0.0006,
+ "loss": 4.183758735656738,
+ "step": 6633
+ },
+ {
+ "epoch": 92.1397990388816,
+ "grad_norm": 0.9166005849838257,
+ "learning_rate": 0.0006,
+ "loss": 4.18237829208374,
+ "step": 6634
+ },
+ {
+ "epoch": 92.15377894276976,
+ "grad_norm": 1.1280368566513062,
+ "learning_rate": 0.0006,
+ "loss": 4.091880798339844,
+ "step": 6635
+ },
+ {
+ "epoch": 92.16775884665793,
+ "grad_norm": 0.7857232689857483,
+ "learning_rate": 0.0006,
+ "loss": 4.107316017150879,
+ "step": 6636
+ },
+ {
+ "epoch": 92.18173875054609,
+ "grad_norm": 0.5997909903526306,
+ "learning_rate": 0.0006,
+ "loss": 4.103518486022949,
+ "step": 6637
+ },
+ {
+ "epoch": 92.19571865443424,
+ "grad_norm": 0.5990561246871948,
+ "learning_rate": 0.0006,
+ "loss": 4.14054536819458,
+ "step": 6638
+ },
+ {
+ "epoch": 92.20969855832242,
+ "grad_norm": 0.632889986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.177820682525635,
+ "step": 6639
+ },
+ {
+ "epoch": 92.22367846221057,
+ "grad_norm": 0.6220619678497314,
+ "learning_rate": 0.0006,
+ "loss": 4.147603511810303,
+ "step": 6640
+ },
+ {
+ "epoch": 92.23765836609873,
+ "grad_norm": 0.5856587290763855,
+ "learning_rate": 0.0006,
+ "loss": 4.119329452514648,
+ "step": 6641
+ },
+ {
+ "epoch": 92.2516382699869,
+ "grad_norm": 0.549945056438446,
+ "learning_rate": 0.0006,
+ "loss": 4.156400680541992,
+ "step": 6642
+ },
+ {
+ "epoch": 92.26561817387505,
+ "grad_norm": 0.5227542519569397,
+ "learning_rate": 0.0006,
+ "loss": 4.035444259643555,
+ "step": 6643
+ },
+ {
+ "epoch": 92.27959807776321,
+ "grad_norm": 0.49789872765541077,
+ "learning_rate": 0.0006,
+ "loss": 4.12019157409668,
+ "step": 6644
+ },
+ {
+ "epoch": 92.29357798165138,
+ "grad_norm": 0.48676368594169617,
+ "learning_rate": 0.0006,
+ "loss": 4.182903289794922,
+ "step": 6645
+ },
+ {
+ "epoch": 92.30755788553954,
+ "grad_norm": 0.5225623250007629,
+ "learning_rate": 0.0006,
+ "loss": 4.195018291473389,
+ "step": 6646
+ },
+ {
+ "epoch": 92.3215377894277,
+ "grad_norm": 0.4998515546321869,
+ "learning_rate": 0.0006,
+ "loss": 4.091945171356201,
+ "step": 6647
+ },
+ {
+ "epoch": 92.33551769331586,
+ "grad_norm": 0.49748051166534424,
+ "learning_rate": 0.0006,
+ "loss": 4.154091835021973,
+ "step": 6648
+ },
+ {
+ "epoch": 92.34949759720402,
+ "grad_norm": 0.4642797112464905,
+ "learning_rate": 0.0006,
+ "loss": 4.182038307189941,
+ "step": 6649
+ },
+ {
+ "epoch": 92.36347750109218,
+ "grad_norm": 0.46340835094451904,
+ "learning_rate": 0.0006,
+ "loss": 4.126245021820068,
+ "step": 6650
+ },
+ {
+ "epoch": 92.37745740498035,
+ "grad_norm": 0.47189947962760925,
+ "learning_rate": 0.0006,
+ "loss": 4.184294700622559,
+ "step": 6651
+ },
+ {
+ "epoch": 92.3914373088685,
+ "grad_norm": 0.4667476415634155,
+ "learning_rate": 0.0006,
+ "loss": 4.135210037231445,
+ "step": 6652
+ },
+ {
+ "epoch": 92.40541721275666,
+ "grad_norm": 0.46386849880218506,
+ "learning_rate": 0.0006,
+ "loss": 4.149093151092529,
+ "step": 6653
+ },
+ {
+ "epoch": 92.41939711664482,
+ "grad_norm": 0.47531789541244507,
+ "learning_rate": 0.0006,
+ "loss": 4.159546375274658,
+ "step": 6654
+ },
+ {
+ "epoch": 92.43337702053299,
+ "grad_norm": 0.46878159046173096,
+ "learning_rate": 0.0006,
+ "loss": 4.169180870056152,
+ "step": 6655
+ },
+ {
+ "epoch": 92.44735692442114,
+ "grad_norm": 0.4516764283180237,
+ "learning_rate": 0.0006,
+ "loss": 4.170878887176514,
+ "step": 6656
+ },
+ {
+ "epoch": 92.4613368283093,
+ "grad_norm": 0.4563509225845337,
+ "learning_rate": 0.0006,
+ "loss": 4.086219787597656,
+ "step": 6657
+ },
+ {
+ "epoch": 92.47531673219747,
+ "grad_norm": 0.4740903675556183,
+ "learning_rate": 0.0006,
+ "loss": 4.189017295837402,
+ "step": 6658
+ },
+ {
+ "epoch": 92.48929663608563,
+ "grad_norm": 0.47601571679115295,
+ "learning_rate": 0.0006,
+ "loss": 4.098438262939453,
+ "step": 6659
+ },
+ {
+ "epoch": 92.50327653997378,
+ "grad_norm": 0.44878366589546204,
+ "learning_rate": 0.0006,
+ "loss": 4.067294120788574,
+ "step": 6660
+ },
+ {
+ "epoch": 92.51725644386195,
+ "grad_norm": 0.44078147411346436,
+ "learning_rate": 0.0006,
+ "loss": 4.135817527770996,
+ "step": 6661
+ },
+ {
+ "epoch": 92.53123634775011,
+ "grad_norm": 0.4626833200454712,
+ "learning_rate": 0.0006,
+ "loss": 4.2014970779418945,
+ "step": 6662
+ },
+ {
+ "epoch": 92.54521625163827,
+ "grad_norm": 0.4998042583465576,
+ "learning_rate": 0.0006,
+ "loss": 4.209102630615234,
+ "step": 6663
+ },
+ {
+ "epoch": 92.55919615552644,
+ "grad_norm": 0.494067519903183,
+ "learning_rate": 0.0006,
+ "loss": 4.155250549316406,
+ "step": 6664
+ },
+ {
+ "epoch": 92.57317605941459,
+ "grad_norm": 0.47396165132522583,
+ "learning_rate": 0.0006,
+ "loss": 4.0804853439331055,
+ "step": 6665
+ },
+ {
+ "epoch": 92.58715596330275,
+ "grad_norm": 0.45193102955818176,
+ "learning_rate": 0.0006,
+ "loss": 4.221559524536133,
+ "step": 6666
+ },
+ {
+ "epoch": 92.60113586719092,
+ "grad_norm": 0.44620129466056824,
+ "learning_rate": 0.0006,
+ "loss": 4.140511512756348,
+ "step": 6667
+ },
+ {
+ "epoch": 92.61511577107908,
+ "grad_norm": 0.4855911135673523,
+ "learning_rate": 0.0006,
+ "loss": 4.209200859069824,
+ "step": 6668
+ },
+ {
+ "epoch": 92.62909567496723,
+ "grad_norm": 0.4701981544494629,
+ "learning_rate": 0.0006,
+ "loss": 4.2988457679748535,
+ "step": 6669
+ },
+ {
+ "epoch": 92.6430755788554,
+ "grad_norm": 0.45931628346443176,
+ "learning_rate": 0.0006,
+ "loss": 4.146129608154297,
+ "step": 6670
+ },
+ {
+ "epoch": 92.65705548274356,
+ "grad_norm": 0.45640164613723755,
+ "learning_rate": 0.0006,
+ "loss": 4.359881401062012,
+ "step": 6671
+ },
+ {
+ "epoch": 92.67103538663171,
+ "grad_norm": 0.4532800614833832,
+ "learning_rate": 0.0006,
+ "loss": 4.156559467315674,
+ "step": 6672
+ },
+ {
+ "epoch": 92.68501529051987,
+ "grad_norm": 0.44602230191230774,
+ "learning_rate": 0.0006,
+ "loss": 4.209829807281494,
+ "step": 6673
+ },
+ {
+ "epoch": 92.69899519440804,
+ "grad_norm": 0.45484063029289246,
+ "learning_rate": 0.0006,
+ "loss": 4.192949295043945,
+ "step": 6674
+ },
+ {
+ "epoch": 92.7129750982962,
+ "grad_norm": 0.43604379892349243,
+ "learning_rate": 0.0006,
+ "loss": 4.191207408905029,
+ "step": 6675
+ },
+ {
+ "epoch": 92.72695500218435,
+ "grad_norm": 0.4281303584575653,
+ "learning_rate": 0.0006,
+ "loss": 4.169486999511719,
+ "step": 6676
+ },
+ {
+ "epoch": 92.74093490607252,
+ "grad_norm": 0.4356819987297058,
+ "learning_rate": 0.0006,
+ "loss": 4.1370086669921875,
+ "step": 6677
+ },
+ {
+ "epoch": 92.75491480996068,
+ "grad_norm": 0.44613754749298096,
+ "learning_rate": 0.0006,
+ "loss": 4.187329292297363,
+ "step": 6678
+ },
+ {
+ "epoch": 92.76889471384884,
+ "grad_norm": 0.45790401101112366,
+ "learning_rate": 0.0006,
+ "loss": 4.236572265625,
+ "step": 6679
+ },
+ {
+ "epoch": 92.78287461773701,
+ "grad_norm": 0.45107555389404297,
+ "learning_rate": 0.0006,
+ "loss": 4.242689609527588,
+ "step": 6680
+ },
+ {
+ "epoch": 92.79685452162516,
+ "grad_norm": 0.4225943088531494,
+ "learning_rate": 0.0006,
+ "loss": 4.1806960105896,
+ "step": 6681
+ },
+ {
+ "epoch": 92.81083442551332,
+ "grad_norm": 0.4351981580257416,
+ "learning_rate": 0.0006,
+ "loss": 4.198762893676758,
+ "step": 6682
+ },
+ {
+ "epoch": 92.82481432940149,
+ "grad_norm": 0.4404393434524536,
+ "learning_rate": 0.0006,
+ "loss": 4.174687385559082,
+ "step": 6683
+ },
+ {
+ "epoch": 92.83879423328965,
+ "grad_norm": 0.4501766562461853,
+ "learning_rate": 0.0006,
+ "loss": 4.20904016494751,
+ "step": 6684
+ },
+ {
+ "epoch": 92.8527741371778,
+ "grad_norm": 0.4487316906452179,
+ "learning_rate": 0.0006,
+ "loss": 4.23588752746582,
+ "step": 6685
+ },
+ {
+ "epoch": 92.86675404106597,
+ "grad_norm": 0.4303079843521118,
+ "learning_rate": 0.0006,
+ "loss": 4.194258213043213,
+ "step": 6686
+ },
+ {
+ "epoch": 92.88073394495413,
+ "grad_norm": 0.43563830852508545,
+ "learning_rate": 0.0006,
+ "loss": 4.275378227233887,
+ "step": 6687
+ },
+ {
+ "epoch": 92.89471384884229,
+ "grad_norm": 0.4283250868320465,
+ "learning_rate": 0.0006,
+ "loss": 4.225555419921875,
+ "step": 6688
+ },
+ {
+ "epoch": 92.90869375273044,
+ "grad_norm": 0.4105052649974823,
+ "learning_rate": 0.0006,
+ "loss": 4.204162120819092,
+ "step": 6689
+ },
+ {
+ "epoch": 92.92267365661861,
+ "grad_norm": 0.4446575343608856,
+ "learning_rate": 0.0006,
+ "loss": 4.2873358726501465,
+ "step": 6690
+ },
+ {
+ "epoch": 92.93665356050677,
+ "grad_norm": 0.45260751247406006,
+ "learning_rate": 0.0006,
+ "loss": 4.243109703063965,
+ "step": 6691
+ },
+ {
+ "epoch": 92.95063346439493,
+ "grad_norm": 0.4449608623981476,
+ "learning_rate": 0.0006,
+ "loss": 4.176984786987305,
+ "step": 6692
+ },
+ {
+ "epoch": 92.9646133682831,
+ "grad_norm": 0.43001097440719604,
+ "learning_rate": 0.0006,
+ "loss": 4.21728515625,
+ "step": 6693
+ },
+ {
+ "epoch": 92.97859327217125,
+ "grad_norm": 0.46151459217071533,
+ "learning_rate": 0.0006,
+ "loss": 4.252613067626953,
+ "step": 6694
+ },
+ {
+ "epoch": 92.99257317605941,
+ "grad_norm": 0.4348209500312805,
+ "learning_rate": 0.0006,
+ "loss": 4.17473840713501,
+ "step": 6695
+ },
+ {
+ "epoch": 93.0,
+ "grad_norm": 0.5008269548416138,
+ "learning_rate": 0.0006,
+ "loss": 4.233550548553467,
+ "step": 6696
+ },
+ {
+ "epoch": 93.0,
+ "eval_loss": 6.519959926605225,
+ "eval_runtime": 63.3251,
+ "eval_samples_per_second": 38.563,
+ "eval_steps_per_second": 2.416,
+ "step": 6696
+ },
+ {
+ "epoch": 93.01397990388816,
+ "grad_norm": 0.4617251455783844,
+ "learning_rate": 0.0006,
+ "loss": 4.085988998413086,
+ "step": 6697
+ },
+ {
+ "epoch": 93.02795980777633,
+ "grad_norm": 0.5370984077453613,
+ "learning_rate": 0.0006,
+ "loss": 4.075861930847168,
+ "step": 6698
+ },
+ {
+ "epoch": 93.04193971166448,
+ "grad_norm": 0.5422016978263855,
+ "learning_rate": 0.0006,
+ "loss": 4.158822059631348,
+ "step": 6699
+ },
+ {
+ "epoch": 93.05591961555264,
+ "grad_norm": 0.5784112215042114,
+ "learning_rate": 0.0006,
+ "loss": 4.097670555114746,
+ "step": 6700
+ },
+ {
+ "epoch": 93.06989951944081,
+ "grad_norm": 0.6625284552574158,
+ "learning_rate": 0.0006,
+ "loss": 4.0941572189331055,
+ "step": 6701
+ },
+ {
+ "epoch": 93.08387942332897,
+ "grad_norm": 0.732620120048523,
+ "learning_rate": 0.0006,
+ "loss": 4.102657318115234,
+ "step": 6702
+ },
+ {
+ "epoch": 93.09785932721712,
+ "grad_norm": 0.8737137913703918,
+ "learning_rate": 0.0006,
+ "loss": 4.072106838226318,
+ "step": 6703
+ },
+ {
+ "epoch": 93.1118392311053,
+ "grad_norm": 1.1315202713012695,
+ "learning_rate": 0.0006,
+ "loss": 4.178171157836914,
+ "step": 6704
+ },
+ {
+ "epoch": 93.12581913499345,
+ "grad_norm": 0.9865092635154724,
+ "learning_rate": 0.0006,
+ "loss": 4.220589637756348,
+ "step": 6705
+ },
+ {
+ "epoch": 93.1397990388816,
+ "grad_norm": 0.95701664686203,
+ "learning_rate": 0.0006,
+ "loss": 4.210036754608154,
+ "step": 6706
+ },
+ {
+ "epoch": 93.15377894276976,
+ "grad_norm": 0.8259546160697937,
+ "learning_rate": 0.0006,
+ "loss": 4.109549522399902,
+ "step": 6707
+ },
+ {
+ "epoch": 93.16775884665793,
+ "grad_norm": 0.6793416142463684,
+ "learning_rate": 0.0006,
+ "loss": 4.204812049865723,
+ "step": 6708
+ },
+ {
+ "epoch": 93.18173875054609,
+ "grad_norm": 0.5950173139572144,
+ "learning_rate": 0.0006,
+ "loss": 4.097187042236328,
+ "step": 6709
+ },
+ {
+ "epoch": 93.19571865443424,
+ "grad_norm": 0.5783600211143494,
+ "learning_rate": 0.0006,
+ "loss": 4.093636512756348,
+ "step": 6710
+ },
+ {
+ "epoch": 93.20969855832242,
+ "grad_norm": 0.6058599352836609,
+ "learning_rate": 0.0006,
+ "loss": 4.152331352233887,
+ "step": 6711
+ },
+ {
+ "epoch": 93.22367846221057,
+ "grad_norm": 0.5733161568641663,
+ "learning_rate": 0.0006,
+ "loss": 4.188261985778809,
+ "step": 6712
+ },
+ {
+ "epoch": 93.23765836609873,
+ "grad_norm": 0.518713116645813,
+ "learning_rate": 0.0006,
+ "loss": 4.121092796325684,
+ "step": 6713
+ },
+ {
+ "epoch": 93.2516382699869,
+ "grad_norm": 0.5400905013084412,
+ "learning_rate": 0.0006,
+ "loss": 4.172319412231445,
+ "step": 6714
+ },
+ {
+ "epoch": 93.26561817387505,
+ "grad_norm": 0.5308226943016052,
+ "learning_rate": 0.0006,
+ "loss": 4.153152942657471,
+ "step": 6715
+ },
+ {
+ "epoch": 93.27959807776321,
+ "grad_norm": 0.5869466066360474,
+ "learning_rate": 0.0006,
+ "loss": 4.132747650146484,
+ "step": 6716
+ },
+ {
+ "epoch": 93.29357798165138,
+ "grad_norm": 0.5807886123657227,
+ "learning_rate": 0.0006,
+ "loss": 4.114269256591797,
+ "step": 6717
+ },
+ {
+ "epoch": 93.30755788553954,
+ "grad_norm": 0.5260794758796692,
+ "learning_rate": 0.0006,
+ "loss": 4.170077800750732,
+ "step": 6718
+ },
+ {
+ "epoch": 93.3215377894277,
+ "grad_norm": 0.5076675415039062,
+ "learning_rate": 0.0006,
+ "loss": 4.153864860534668,
+ "step": 6719
+ },
+ {
+ "epoch": 93.33551769331586,
+ "grad_norm": 0.527502715587616,
+ "learning_rate": 0.0006,
+ "loss": 4.137730598449707,
+ "step": 6720
+ },
+ {
+ "epoch": 93.34949759720402,
+ "grad_norm": 0.5096501708030701,
+ "learning_rate": 0.0006,
+ "loss": 4.078490257263184,
+ "step": 6721
+ },
+ {
+ "epoch": 93.36347750109218,
+ "grad_norm": 0.4965399503707886,
+ "learning_rate": 0.0006,
+ "loss": 4.188817024230957,
+ "step": 6722
+ },
+ {
+ "epoch": 93.37745740498035,
+ "grad_norm": 0.470617413520813,
+ "learning_rate": 0.0006,
+ "loss": 4.198916435241699,
+ "step": 6723
+ },
+ {
+ "epoch": 93.3914373088685,
+ "grad_norm": 0.5136640667915344,
+ "learning_rate": 0.0006,
+ "loss": 4.1623992919921875,
+ "step": 6724
+ },
+ {
+ "epoch": 93.40541721275666,
+ "grad_norm": 0.4889892041683197,
+ "learning_rate": 0.0006,
+ "loss": 4.1161298751831055,
+ "step": 6725
+ },
+ {
+ "epoch": 93.41939711664482,
+ "grad_norm": 0.48139041662216187,
+ "learning_rate": 0.0006,
+ "loss": 4.1785783767700195,
+ "step": 6726
+ },
+ {
+ "epoch": 93.43337702053299,
+ "grad_norm": 0.4519556164741516,
+ "learning_rate": 0.0006,
+ "loss": 4.106186389923096,
+ "step": 6727
+ },
+ {
+ "epoch": 93.44735692442114,
+ "grad_norm": 0.45652639865875244,
+ "learning_rate": 0.0006,
+ "loss": 4.187058448791504,
+ "step": 6728
+ },
+ {
+ "epoch": 93.4613368283093,
+ "grad_norm": 0.48742297291755676,
+ "learning_rate": 0.0006,
+ "loss": 4.203413486480713,
+ "step": 6729
+ },
+ {
+ "epoch": 93.47531673219747,
+ "grad_norm": 0.4952318072319031,
+ "learning_rate": 0.0006,
+ "loss": 4.185919761657715,
+ "step": 6730
+ },
+ {
+ "epoch": 93.48929663608563,
+ "grad_norm": 0.48744967579841614,
+ "learning_rate": 0.0006,
+ "loss": 4.184289932250977,
+ "step": 6731
+ },
+ {
+ "epoch": 93.50327653997378,
+ "grad_norm": 0.4749008119106293,
+ "learning_rate": 0.0006,
+ "loss": 4.119291305541992,
+ "step": 6732
+ },
+ {
+ "epoch": 93.51725644386195,
+ "grad_norm": 0.4655332565307617,
+ "learning_rate": 0.0006,
+ "loss": 4.153029441833496,
+ "step": 6733
+ },
+ {
+ "epoch": 93.53123634775011,
+ "grad_norm": 0.4466649889945984,
+ "learning_rate": 0.0006,
+ "loss": 4.088071823120117,
+ "step": 6734
+ },
+ {
+ "epoch": 93.54521625163827,
+ "grad_norm": 0.443222314119339,
+ "learning_rate": 0.0006,
+ "loss": 4.084128379821777,
+ "step": 6735
+ },
+ {
+ "epoch": 93.55919615552644,
+ "grad_norm": 0.462419718503952,
+ "learning_rate": 0.0006,
+ "loss": 4.1618194580078125,
+ "step": 6736
+ },
+ {
+ "epoch": 93.57317605941459,
+ "grad_norm": 0.4391580820083618,
+ "learning_rate": 0.0006,
+ "loss": 4.1149091720581055,
+ "step": 6737
+ },
+ {
+ "epoch": 93.58715596330275,
+ "grad_norm": 0.42679905891418457,
+ "learning_rate": 0.0006,
+ "loss": 4.204461097717285,
+ "step": 6738
+ },
+ {
+ "epoch": 93.60113586719092,
+ "grad_norm": 0.43574175238609314,
+ "learning_rate": 0.0006,
+ "loss": 4.170613765716553,
+ "step": 6739
+ },
+ {
+ "epoch": 93.61511577107908,
+ "grad_norm": 0.4494042992591858,
+ "learning_rate": 0.0006,
+ "loss": 4.184232711791992,
+ "step": 6740
+ },
+ {
+ "epoch": 93.62909567496723,
+ "grad_norm": 0.4476962089538574,
+ "learning_rate": 0.0006,
+ "loss": 4.214268684387207,
+ "step": 6741
+ },
+ {
+ "epoch": 93.6430755788554,
+ "grad_norm": 0.45630091428756714,
+ "learning_rate": 0.0006,
+ "loss": 4.092458724975586,
+ "step": 6742
+ },
+ {
+ "epoch": 93.65705548274356,
+ "grad_norm": 0.46159541606903076,
+ "learning_rate": 0.0006,
+ "loss": 4.104642391204834,
+ "step": 6743
+ },
+ {
+ "epoch": 93.67103538663171,
+ "grad_norm": 0.470024049282074,
+ "learning_rate": 0.0006,
+ "loss": 4.1928558349609375,
+ "step": 6744
+ },
+ {
+ "epoch": 93.68501529051987,
+ "grad_norm": 0.4541080594062805,
+ "learning_rate": 0.0006,
+ "loss": 4.209540843963623,
+ "step": 6745
+ },
+ {
+ "epoch": 93.69899519440804,
+ "grad_norm": 0.43244633078575134,
+ "learning_rate": 0.0006,
+ "loss": 4.137758255004883,
+ "step": 6746
+ },
+ {
+ "epoch": 93.7129750982962,
+ "grad_norm": 0.43841874599456787,
+ "learning_rate": 0.0006,
+ "loss": 4.168188571929932,
+ "step": 6747
+ },
+ {
+ "epoch": 93.72695500218435,
+ "grad_norm": 0.4578094482421875,
+ "learning_rate": 0.0006,
+ "loss": 4.161255836486816,
+ "step": 6748
+ },
+ {
+ "epoch": 93.74093490607252,
+ "grad_norm": 0.4311692714691162,
+ "learning_rate": 0.0006,
+ "loss": 4.198974609375,
+ "step": 6749
+ },
+ {
+ "epoch": 93.75491480996068,
+ "grad_norm": 0.4296444356441498,
+ "learning_rate": 0.0006,
+ "loss": 4.163196563720703,
+ "step": 6750
+ },
+ {
+ "epoch": 93.76889471384884,
+ "grad_norm": 0.44610607624053955,
+ "learning_rate": 0.0006,
+ "loss": 4.199775695800781,
+ "step": 6751
+ },
+ {
+ "epoch": 93.78287461773701,
+ "grad_norm": 0.4333937168121338,
+ "learning_rate": 0.0006,
+ "loss": 4.202628135681152,
+ "step": 6752
+ },
+ {
+ "epoch": 93.79685452162516,
+ "grad_norm": 0.4453052580356598,
+ "learning_rate": 0.0006,
+ "loss": 4.191913604736328,
+ "step": 6753
+ },
+ {
+ "epoch": 93.81083442551332,
+ "grad_norm": 0.4554404616355896,
+ "learning_rate": 0.0006,
+ "loss": 4.1654052734375,
+ "step": 6754
+ },
+ {
+ "epoch": 93.82481432940149,
+ "grad_norm": 0.4619498550891876,
+ "learning_rate": 0.0006,
+ "loss": 4.251041889190674,
+ "step": 6755
+ },
+ {
+ "epoch": 93.83879423328965,
+ "grad_norm": 0.4444896876811981,
+ "learning_rate": 0.0006,
+ "loss": 4.178712368011475,
+ "step": 6756
+ },
+ {
+ "epoch": 93.8527741371778,
+ "grad_norm": 0.4188700318336487,
+ "learning_rate": 0.0006,
+ "loss": 4.236794948577881,
+ "step": 6757
+ },
+ {
+ "epoch": 93.86675404106597,
+ "grad_norm": 0.45948484539985657,
+ "learning_rate": 0.0006,
+ "loss": 4.1369309425354,
+ "step": 6758
+ },
+ {
+ "epoch": 93.88073394495413,
+ "grad_norm": 0.4385707676410675,
+ "learning_rate": 0.0006,
+ "loss": 4.21196174621582,
+ "step": 6759
+ },
+ {
+ "epoch": 93.89471384884229,
+ "grad_norm": 0.4491344094276428,
+ "learning_rate": 0.0006,
+ "loss": 4.230751991271973,
+ "step": 6760
+ },
+ {
+ "epoch": 93.90869375273044,
+ "grad_norm": 0.47145071625709534,
+ "learning_rate": 0.0006,
+ "loss": 4.2278733253479,
+ "step": 6761
+ },
+ {
+ "epoch": 93.92267365661861,
+ "grad_norm": 0.46541526913642883,
+ "learning_rate": 0.0006,
+ "loss": 4.125926971435547,
+ "step": 6762
+ },
+ {
+ "epoch": 93.93665356050677,
+ "grad_norm": 0.4199608862400055,
+ "learning_rate": 0.0006,
+ "loss": 4.257157325744629,
+ "step": 6763
+ },
+ {
+ "epoch": 93.95063346439493,
+ "grad_norm": 0.438938707113266,
+ "learning_rate": 0.0006,
+ "loss": 4.245532989501953,
+ "step": 6764
+ },
+ {
+ "epoch": 93.9646133682831,
+ "grad_norm": 0.44459059834480286,
+ "learning_rate": 0.0006,
+ "loss": 4.1860504150390625,
+ "step": 6765
+ },
+ {
+ "epoch": 93.97859327217125,
+ "grad_norm": 0.46545299887657166,
+ "learning_rate": 0.0006,
+ "loss": 4.3102617263793945,
+ "step": 6766
+ },
+ {
+ "epoch": 93.99257317605941,
+ "grad_norm": 0.4773047864437103,
+ "learning_rate": 0.0006,
+ "loss": 4.078923225402832,
+ "step": 6767
+ },
+ {
+ "epoch": 94.0,
+ "grad_norm": 0.5514643788337708,
+ "learning_rate": 0.0006,
+ "loss": 4.276580810546875,
+ "step": 6768
+ },
+ {
+ "epoch": 94.0,
+ "eval_loss": 6.551272869110107,
+ "eval_runtime": 63.4887,
+ "eval_samples_per_second": 38.464,
+ "eval_steps_per_second": 2.41,
+ "step": 6768
+ },
+ {
+ "epoch": 94.01397990388816,
+ "grad_norm": 0.47039031982421875,
+ "learning_rate": 0.0006,
+ "loss": 4.007132530212402,
+ "step": 6769
+ },
+ {
+ "epoch": 94.02795980777633,
+ "grad_norm": 0.5764750838279724,
+ "learning_rate": 0.0006,
+ "loss": 4.084009170532227,
+ "step": 6770
+ },
+ {
+ "epoch": 94.04193971166448,
+ "grad_norm": 0.5629863739013672,
+ "learning_rate": 0.0006,
+ "loss": 4.163414478302002,
+ "step": 6771
+ },
+ {
+ "epoch": 94.05591961555264,
+ "grad_norm": 0.528769850730896,
+ "learning_rate": 0.0006,
+ "loss": 4.147699356079102,
+ "step": 6772
+ },
+ {
+ "epoch": 94.06989951944081,
+ "grad_norm": 0.5141040086746216,
+ "learning_rate": 0.0006,
+ "loss": 4.104916572570801,
+ "step": 6773
+ },
+ {
+ "epoch": 94.08387942332897,
+ "grad_norm": 0.6509723663330078,
+ "learning_rate": 0.0006,
+ "loss": 4.178592205047607,
+ "step": 6774
+ },
+ {
+ "epoch": 94.09785932721712,
+ "grad_norm": 0.7362110614776611,
+ "learning_rate": 0.0006,
+ "loss": 4.042470932006836,
+ "step": 6775
+ },
+ {
+ "epoch": 94.1118392311053,
+ "grad_norm": 0.8672369718551636,
+ "learning_rate": 0.0006,
+ "loss": 4.083386421203613,
+ "step": 6776
+ },
+ {
+ "epoch": 94.12581913499345,
+ "grad_norm": 1.0653108358383179,
+ "learning_rate": 0.0006,
+ "loss": 4.134354591369629,
+ "step": 6777
+ },
+ {
+ "epoch": 94.1397990388816,
+ "grad_norm": 1.0296201705932617,
+ "learning_rate": 0.0006,
+ "loss": 4.1243510246276855,
+ "step": 6778
+ },
+ {
+ "epoch": 94.15377894276976,
+ "grad_norm": 0.8544971942901611,
+ "learning_rate": 0.0006,
+ "loss": 4.207662105560303,
+ "step": 6779
+ },
+ {
+ "epoch": 94.16775884665793,
+ "grad_norm": 0.7648150324821472,
+ "learning_rate": 0.0006,
+ "loss": 4.1454057693481445,
+ "step": 6780
+ },
+ {
+ "epoch": 94.18173875054609,
+ "grad_norm": 0.7310001850128174,
+ "learning_rate": 0.0006,
+ "loss": 4.0937957763671875,
+ "step": 6781
+ },
+ {
+ "epoch": 94.19571865443424,
+ "grad_norm": 0.6844931244850159,
+ "learning_rate": 0.0006,
+ "loss": 4.048280715942383,
+ "step": 6782
+ },
+ {
+ "epoch": 94.20969855832242,
+ "grad_norm": 0.5635718107223511,
+ "learning_rate": 0.0006,
+ "loss": 4.024993419647217,
+ "step": 6783
+ },
+ {
+ "epoch": 94.22367846221057,
+ "grad_norm": 0.6640156507492065,
+ "learning_rate": 0.0006,
+ "loss": 4.08033561706543,
+ "step": 6784
+ },
+ {
+ "epoch": 94.23765836609873,
+ "grad_norm": 0.5887769460678101,
+ "learning_rate": 0.0006,
+ "loss": 4.202587127685547,
+ "step": 6785
+ },
+ {
+ "epoch": 94.2516382699869,
+ "grad_norm": 0.5525524616241455,
+ "learning_rate": 0.0006,
+ "loss": 4.104559898376465,
+ "step": 6786
+ },
+ {
+ "epoch": 94.26561817387505,
+ "grad_norm": 0.5675064325332642,
+ "learning_rate": 0.0006,
+ "loss": 4.114745616912842,
+ "step": 6787
+ },
+ {
+ "epoch": 94.27959807776321,
+ "grad_norm": 0.5262162089347839,
+ "learning_rate": 0.0006,
+ "loss": 4.141836166381836,
+ "step": 6788
+ },
+ {
+ "epoch": 94.29357798165138,
+ "grad_norm": 0.5173436999320984,
+ "learning_rate": 0.0006,
+ "loss": 4.191330432891846,
+ "step": 6789
+ },
+ {
+ "epoch": 94.30755788553954,
+ "grad_norm": 0.49230462312698364,
+ "learning_rate": 0.0006,
+ "loss": 4.172584533691406,
+ "step": 6790
+ },
+ {
+ "epoch": 94.3215377894277,
+ "grad_norm": 0.4957887828350067,
+ "learning_rate": 0.0006,
+ "loss": 4.1476593017578125,
+ "step": 6791
+ },
+ {
+ "epoch": 94.33551769331586,
+ "grad_norm": 0.4976184368133545,
+ "learning_rate": 0.0006,
+ "loss": 4.156308174133301,
+ "step": 6792
+ },
+ {
+ "epoch": 94.34949759720402,
+ "grad_norm": 0.4829961061477661,
+ "learning_rate": 0.0006,
+ "loss": 4.161005973815918,
+ "step": 6793
+ },
+ {
+ "epoch": 94.36347750109218,
+ "grad_norm": 0.5071393251419067,
+ "learning_rate": 0.0006,
+ "loss": 4.125982761383057,
+ "step": 6794
+ },
+ {
+ "epoch": 94.37745740498035,
+ "grad_norm": 0.47981470823287964,
+ "learning_rate": 0.0006,
+ "loss": 4.084125518798828,
+ "step": 6795
+ },
+ {
+ "epoch": 94.3914373088685,
+ "grad_norm": 0.47377970814704895,
+ "learning_rate": 0.0006,
+ "loss": 4.138985633850098,
+ "step": 6796
+ },
+ {
+ "epoch": 94.40541721275666,
+ "grad_norm": 0.4774772524833679,
+ "learning_rate": 0.0006,
+ "loss": 4.207159519195557,
+ "step": 6797
+ },
+ {
+ "epoch": 94.41939711664482,
+ "grad_norm": 0.47720399498939514,
+ "learning_rate": 0.0006,
+ "loss": 4.155617713928223,
+ "step": 6798
+ },
+ {
+ "epoch": 94.43337702053299,
+ "grad_norm": 0.4447745680809021,
+ "learning_rate": 0.0006,
+ "loss": 4.089460372924805,
+ "step": 6799
+ },
+ {
+ "epoch": 94.44735692442114,
+ "grad_norm": 0.4387582540512085,
+ "learning_rate": 0.0006,
+ "loss": 4.06248664855957,
+ "step": 6800
+ },
+ {
+ "epoch": 94.4613368283093,
+ "grad_norm": 0.43859368562698364,
+ "learning_rate": 0.0006,
+ "loss": 4.153326034545898,
+ "step": 6801
+ },
+ {
+ "epoch": 94.47531673219747,
+ "grad_norm": 0.4720434844493866,
+ "learning_rate": 0.0006,
+ "loss": 4.159944534301758,
+ "step": 6802
+ },
+ {
+ "epoch": 94.48929663608563,
+ "grad_norm": 0.4751245379447937,
+ "learning_rate": 0.0006,
+ "loss": 4.198112487792969,
+ "step": 6803
+ },
+ {
+ "epoch": 94.50327653997378,
+ "grad_norm": 0.44865724444389343,
+ "learning_rate": 0.0006,
+ "loss": 4.129387855529785,
+ "step": 6804
+ },
+ {
+ "epoch": 94.51725644386195,
+ "grad_norm": 0.4543623924255371,
+ "learning_rate": 0.0006,
+ "loss": 4.166349411010742,
+ "step": 6805
+ },
+ {
+ "epoch": 94.53123634775011,
+ "grad_norm": 0.4518912136554718,
+ "learning_rate": 0.0006,
+ "loss": 4.1921892166137695,
+ "step": 6806
+ },
+ {
+ "epoch": 94.54521625163827,
+ "grad_norm": 0.43021276593208313,
+ "learning_rate": 0.0006,
+ "loss": 4.186769008636475,
+ "step": 6807
+ },
+ {
+ "epoch": 94.55919615552644,
+ "grad_norm": 0.4603467881679535,
+ "learning_rate": 0.0006,
+ "loss": 4.218608856201172,
+ "step": 6808
+ },
+ {
+ "epoch": 94.57317605941459,
+ "grad_norm": 0.4297736585140228,
+ "learning_rate": 0.0006,
+ "loss": 4.147751331329346,
+ "step": 6809
+ },
+ {
+ "epoch": 94.58715596330275,
+ "grad_norm": 0.44581538438796997,
+ "learning_rate": 0.0006,
+ "loss": 4.25939416885376,
+ "step": 6810
+ },
+ {
+ "epoch": 94.60113586719092,
+ "grad_norm": 0.43693089485168457,
+ "learning_rate": 0.0006,
+ "loss": 4.116797924041748,
+ "step": 6811
+ },
+ {
+ "epoch": 94.61511577107908,
+ "grad_norm": 0.4358426332473755,
+ "learning_rate": 0.0006,
+ "loss": 4.198864459991455,
+ "step": 6812
+ },
+ {
+ "epoch": 94.62909567496723,
+ "grad_norm": 0.4534723460674286,
+ "learning_rate": 0.0006,
+ "loss": 4.16396951675415,
+ "step": 6813
+ },
+ {
+ "epoch": 94.6430755788554,
+ "grad_norm": 0.4272654950618744,
+ "learning_rate": 0.0006,
+ "loss": 4.135400295257568,
+ "step": 6814
+ },
+ {
+ "epoch": 94.65705548274356,
+ "grad_norm": 0.4433833658695221,
+ "learning_rate": 0.0006,
+ "loss": 4.067310333251953,
+ "step": 6815
+ },
+ {
+ "epoch": 94.67103538663171,
+ "grad_norm": 0.451760470867157,
+ "learning_rate": 0.0006,
+ "loss": 4.162823677062988,
+ "step": 6816
+ },
+ {
+ "epoch": 94.68501529051987,
+ "grad_norm": 0.45587676763534546,
+ "learning_rate": 0.0006,
+ "loss": 4.093784332275391,
+ "step": 6817
+ },
+ {
+ "epoch": 94.69899519440804,
+ "grad_norm": 0.4539637863636017,
+ "learning_rate": 0.0006,
+ "loss": 4.187982082366943,
+ "step": 6818
+ },
+ {
+ "epoch": 94.7129750982962,
+ "grad_norm": 0.46095454692840576,
+ "learning_rate": 0.0006,
+ "loss": 4.113205909729004,
+ "step": 6819
+ },
+ {
+ "epoch": 94.72695500218435,
+ "grad_norm": 0.46080538630485535,
+ "learning_rate": 0.0006,
+ "loss": 4.176076889038086,
+ "step": 6820
+ },
+ {
+ "epoch": 94.74093490607252,
+ "grad_norm": 0.4813077449798584,
+ "learning_rate": 0.0006,
+ "loss": 4.191545486450195,
+ "step": 6821
+ },
+ {
+ "epoch": 94.75491480996068,
+ "grad_norm": 0.4791409969329834,
+ "learning_rate": 0.0006,
+ "loss": 4.156200408935547,
+ "step": 6822
+ },
+ {
+ "epoch": 94.76889471384884,
+ "grad_norm": 0.4560452699661255,
+ "learning_rate": 0.0006,
+ "loss": 4.23425817489624,
+ "step": 6823
+ },
+ {
+ "epoch": 94.78287461773701,
+ "grad_norm": 0.44062307476997375,
+ "learning_rate": 0.0006,
+ "loss": 4.247008323669434,
+ "step": 6824
+ },
+ {
+ "epoch": 94.79685452162516,
+ "grad_norm": 0.4222586154937744,
+ "learning_rate": 0.0006,
+ "loss": 4.17763614654541,
+ "step": 6825
+ },
+ {
+ "epoch": 94.81083442551332,
+ "grad_norm": 0.42270949482917786,
+ "learning_rate": 0.0006,
+ "loss": 4.111972808837891,
+ "step": 6826
+ },
+ {
+ "epoch": 94.82481432940149,
+ "grad_norm": 0.4353210926055908,
+ "learning_rate": 0.0006,
+ "loss": 4.127784729003906,
+ "step": 6827
+ },
+ {
+ "epoch": 94.83879423328965,
+ "grad_norm": 0.4246017634868622,
+ "learning_rate": 0.0006,
+ "loss": 4.094331741333008,
+ "step": 6828
+ },
+ {
+ "epoch": 94.8527741371778,
+ "grad_norm": 0.4365920424461365,
+ "learning_rate": 0.0006,
+ "loss": 4.23120641708374,
+ "step": 6829
+ },
+ {
+ "epoch": 94.86675404106597,
+ "grad_norm": 0.459832102060318,
+ "learning_rate": 0.0006,
+ "loss": 4.197485446929932,
+ "step": 6830
+ },
+ {
+ "epoch": 94.88073394495413,
+ "grad_norm": 0.4367716610431671,
+ "learning_rate": 0.0006,
+ "loss": 4.21002197265625,
+ "step": 6831
+ },
+ {
+ "epoch": 94.89471384884229,
+ "grad_norm": 0.4294082224369049,
+ "learning_rate": 0.0006,
+ "loss": 4.2008209228515625,
+ "step": 6832
+ },
+ {
+ "epoch": 94.90869375273044,
+ "grad_norm": 0.42561233043670654,
+ "learning_rate": 0.0006,
+ "loss": 4.111930847167969,
+ "step": 6833
+ },
+ {
+ "epoch": 94.92267365661861,
+ "grad_norm": 0.4307434558868408,
+ "learning_rate": 0.0006,
+ "loss": 4.145732402801514,
+ "step": 6834
+ },
+ {
+ "epoch": 94.93665356050677,
+ "grad_norm": 0.4107128381729126,
+ "learning_rate": 0.0006,
+ "loss": 4.262533187866211,
+ "step": 6835
+ },
+ {
+ "epoch": 94.95063346439493,
+ "grad_norm": 0.44187504053115845,
+ "learning_rate": 0.0006,
+ "loss": 4.249768257141113,
+ "step": 6836
+ },
+ {
+ "epoch": 94.9646133682831,
+ "grad_norm": 0.42857134342193604,
+ "learning_rate": 0.0006,
+ "loss": 4.144186019897461,
+ "step": 6837
+ },
+ {
+ "epoch": 94.97859327217125,
+ "grad_norm": 0.421383261680603,
+ "learning_rate": 0.0006,
+ "loss": 4.121860980987549,
+ "step": 6838
+ },
+ {
+ "epoch": 94.99257317605941,
+ "grad_norm": 0.46091943979263306,
+ "learning_rate": 0.0006,
+ "loss": 4.339262962341309,
+ "step": 6839
+ },
+ {
+ "epoch": 95.0,
+ "grad_norm": 0.5088675618171692,
+ "learning_rate": 0.0006,
+ "loss": 4.206243515014648,
+ "step": 6840
+ },
+ {
+ "epoch": 95.0,
+ "eval_loss": 6.5428972244262695,
+ "eval_runtime": 44.2683,
+ "eval_samples_per_second": 55.164,
+ "eval_steps_per_second": 3.456,
+ "step": 6840
+ },
+ {
+ "epoch": 95.01397990388816,
+ "grad_norm": 0.47629159688949585,
+ "learning_rate": 0.0006,
+ "loss": 4.1371917724609375,
+ "step": 6841
+ },
+ {
+ "epoch": 95.02795980777633,
+ "grad_norm": 0.4860699772834778,
+ "learning_rate": 0.0006,
+ "loss": 4.0605010986328125,
+ "step": 6842
+ },
+ {
+ "epoch": 95.04193971166448,
+ "grad_norm": 0.5068523287773132,
+ "learning_rate": 0.0006,
+ "loss": 3.9951086044311523,
+ "step": 6843
+ },
+ {
+ "epoch": 95.05591961555264,
+ "grad_norm": 0.5174555778503418,
+ "learning_rate": 0.0006,
+ "loss": 4.153883934020996,
+ "step": 6844
+ },
+ {
+ "epoch": 95.06989951944081,
+ "grad_norm": 0.48299622535705566,
+ "learning_rate": 0.0006,
+ "loss": 4.072522163391113,
+ "step": 6845
+ },
+ {
+ "epoch": 95.08387942332897,
+ "grad_norm": 0.5154499411582947,
+ "learning_rate": 0.0006,
+ "loss": 4.076699256896973,
+ "step": 6846
+ },
+ {
+ "epoch": 95.09785932721712,
+ "grad_norm": 0.5421119332313538,
+ "learning_rate": 0.0006,
+ "loss": 4.054714679718018,
+ "step": 6847
+ },
+ {
+ "epoch": 95.1118392311053,
+ "grad_norm": 0.5453760027885437,
+ "learning_rate": 0.0006,
+ "loss": 4.099617004394531,
+ "step": 6848
+ },
+ {
+ "epoch": 95.12581913499345,
+ "grad_norm": 0.570228099822998,
+ "learning_rate": 0.0006,
+ "loss": 4.116765975952148,
+ "step": 6849
+ },
+ {
+ "epoch": 95.1397990388816,
+ "grad_norm": 0.6594432592391968,
+ "learning_rate": 0.0006,
+ "loss": 4.1107635498046875,
+ "step": 6850
+ },
+ {
+ "epoch": 95.15377894276976,
+ "grad_norm": 0.7619166374206543,
+ "learning_rate": 0.0006,
+ "loss": 4.056267261505127,
+ "step": 6851
+ },
+ {
+ "epoch": 95.16775884665793,
+ "grad_norm": 0.8866838812828064,
+ "learning_rate": 0.0006,
+ "loss": 4.14144229888916,
+ "step": 6852
+ },
+ {
+ "epoch": 95.18173875054609,
+ "grad_norm": 0.9399778246879578,
+ "learning_rate": 0.0006,
+ "loss": 4.074902534484863,
+ "step": 6853
+ },
+ {
+ "epoch": 95.19571865443424,
+ "grad_norm": 0.8083099126815796,
+ "learning_rate": 0.0006,
+ "loss": 4.199965476989746,
+ "step": 6854
+ },
+ {
+ "epoch": 95.20969855832242,
+ "grad_norm": 0.7218199372291565,
+ "learning_rate": 0.0006,
+ "loss": 4.164974212646484,
+ "step": 6855
+ },
+ {
+ "epoch": 95.22367846221057,
+ "grad_norm": 0.6853331923484802,
+ "learning_rate": 0.0006,
+ "loss": 4.042540550231934,
+ "step": 6856
+ },
+ {
+ "epoch": 95.23765836609873,
+ "grad_norm": 0.6632657647132874,
+ "learning_rate": 0.0006,
+ "loss": 4.067739486694336,
+ "step": 6857
+ },
+ {
+ "epoch": 95.2516382699869,
+ "grad_norm": 0.5614999532699585,
+ "learning_rate": 0.0006,
+ "loss": 4.168394088745117,
+ "step": 6858
+ },
+ {
+ "epoch": 95.26561817387505,
+ "grad_norm": 0.5466957092285156,
+ "learning_rate": 0.0006,
+ "loss": 4.064231872558594,
+ "step": 6859
+ },
+ {
+ "epoch": 95.27959807776321,
+ "grad_norm": 0.5275687575340271,
+ "learning_rate": 0.0006,
+ "loss": 3.995577096939087,
+ "step": 6860
+ },
+ {
+ "epoch": 95.29357798165138,
+ "grad_norm": 0.5507028698921204,
+ "learning_rate": 0.0006,
+ "loss": 4.1036763191223145,
+ "step": 6861
+ },
+ {
+ "epoch": 95.30755788553954,
+ "grad_norm": 0.5088850259780884,
+ "learning_rate": 0.0006,
+ "loss": 4.108875274658203,
+ "step": 6862
+ },
+ {
+ "epoch": 95.3215377894277,
+ "grad_norm": 0.5197715163230896,
+ "learning_rate": 0.0006,
+ "loss": 4.087859630584717,
+ "step": 6863
+ },
+ {
+ "epoch": 95.33551769331586,
+ "grad_norm": 0.5089393258094788,
+ "learning_rate": 0.0006,
+ "loss": 4.1831207275390625,
+ "step": 6864
+ },
+ {
+ "epoch": 95.34949759720402,
+ "grad_norm": 0.4992108643054962,
+ "learning_rate": 0.0006,
+ "loss": 4.13450813293457,
+ "step": 6865
+ },
+ {
+ "epoch": 95.36347750109218,
+ "grad_norm": 0.48714372515678406,
+ "learning_rate": 0.0006,
+ "loss": 4.073522567749023,
+ "step": 6866
+ },
+ {
+ "epoch": 95.37745740498035,
+ "grad_norm": 0.5265013575553894,
+ "learning_rate": 0.0006,
+ "loss": 4.125735282897949,
+ "step": 6867
+ },
+ {
+ "epoch": 95.3914373088685,
+ "grad_norm": 0.5132632851600647,
+ "learning_rate": 0.0006,
+ "loss": 4.054095268249512,
+ "step": 6868
+ },
+ {
+ "epoch": 95.40541721275666,
+ "grad_norm": 0.512633204460144,
+ "learning_rate": 0.0006,
+ "loss": 4.135960102081299,
+ "step": 6869
+ },
+ {
+ "epoch": 95.41939711664482,
+ "grad_norm": 0.5068862438201904,
+ "learning_rate": 0.0006,
+ "loss": 4.096134185791016,
+ "step": 6870
+ },
+ {
+ "epoch": 95.43337702053299,
+ "grad_norm": 0.5249714851379395,
+ "learning_rate": 0.0006,
+ "loss": 4.084434509277344,
+ "step": 6871
+ },
+ {
+ "epoch": 95.44735692442114,
+ "grad_norm": 0.5165737271308899,
+ "learning_rate": 0.0006,
+ "loss": 4.142446041107178,
+ "step": 6872
+ },
+ {
+ "epoch": 95.4613368283093,
+ "grad_norm": 0.48951077461242676,
+ "learning_rate": 0.0006,
+ "loss": 4.170736312866211,
+ "step": 6873
+ },
+ {
+ "epoch": 95.47531673219747,
+ "grad_norm": 0.48471155762672424,
+ "learning_rate": 0.0006,
+ "loss": 4.172013282775879,
+ "step": 6874
+ },
+ {
+ "epoch": 95.48929663608563,
+ "grad_norm": 0.47400999069213867,
+ "learning_rate": 0.0006,
+ "loss": 4.095659255981445,
+ "step": 6875
+ },
+ {
+ "epoch": 95.50327653997378,
+ "grad_norm": 0.4577101469039917,
+ "learning_rate": 0.0006,
+ "loss": 4.068535804748535,
+ "step": 6876
+ },
+ {
+ "epoch": 95.51725644386195,
+ "grad_norm": 0.47317007184028625,
+ "learning_rate": 0.0006,
+ "loss": 4.19393253326416,
+ "step": 6877
+ },
+ {
+ "epoch": 95.53123634775011,
+ "grad_norm": 0.47511136531829834,
+ "learning_rate": 0.0006,
+ "loss": 4.174132823944092,
+ "step": 6878
+ },
+ {
+ "epoch": 95.54521625163827,
+ "grad_norm": 0.4574567675590515,
+ "learning_rate": 0.0006,
+ "loss": 4.189523696899414,
+ "step": 6879
+ },
+ {
+ "epoch": 95.55919615552644,
+ "grad_norm": 0.4483296573162079,
+ "learning_rate": 0.0006,
+ "loss": 4.100164413452148,
+ "step": 6880
+ },
+ {
+ "epoch": 95.57317605941459,
+ "grad_norm": 0.4459962844848633,
+ "learning_rate": 0.0006,
+ "loss": 4.108081817626953,
+ "step": 6881
+ },
+ {
+ "epoch": 95.58715596330275,
+ "grad_norm": 0.44342491030693054,
+ "learning_rate": 0.0006,
+ "loss": 4.198594093322754,
+ "step": 6882
+ },
+ {
+ "epoch": 95.60113586719092,
+ "grad_norm": 0.4531255066394806,
+ "learning_rate": 0.0006,
+ "loss": 4.147405624389648,
+ "step": 6883
+ },
+ {
+ "epoch": 95.61511577107908,
+ "grad_norm": 0.4644201993942261,
+ "learning_rate": 0.0006,
+ "loss": 4.1198225021362305,
+ "step": 6884
+ },
+ {
+ "epoch": 95.62909567496723,
+ "grad_norm": 0.4796750843524933,
+ "learning_rate": 0.0006,
+ "loss": 4.198688983917236,
+ "step": 6885
+ },
+ {
+ "epoch": 95.6430755788554,
+ "grad_norm": 0.47686126828193665,
+ "learning_rate": 0.0006,
+ "loss": 4.219273567199707,
+ "step": 6886
+ },
+ {
+ "epoch": 95.65705548274356,
+ "grad_norm": 0.45663920044898987,
+ "learning_rate": 0.0006,
+ "loss": 4.11749267578125,
+ "step": 6887
+ },
+ {
+ "epoch": 95.67103538663171,
+ "grad_norm": 0.44049474596977234,
+ "learning_rate": 0.0006,
+ "loss": 4.215906143188477,
+ "step": 6888
+ },
+ {
+ "epoch": 95.68501529051987,
+ "grad_norm": 0.4287659823894501,
+ "learning_rate": 0.0006,
+ "loss": 4.189912796020508,
+ "step": 6889
+ },
+ {
+ "epoch": 95.69899519440804,
+ "grad_norm": 0.44612404704093933,
+ "learning_rate": 0.0006,
+ "loss": 4.130494117736816,
+ "step": 6890
+ },
+ {
+ "epoch": 95.7129750982962,
+ "grad_norm": 0.45957738161087036,
+ "learning_rate": 0.0006,
+ "loss": 4.14907169342041,
+ "step": 6891
+ },
+ {
+ "epoch": 95.72695500218435,
+ "grad_norm": 0.5050562024116516,
+ "learning_rate": 0.0006,
+ "loss": 4.134866714477539,
+ "step": 6892
+ },
+ {
+ "epoch": 95.74093490607252,
+ "grad_norm": 0.5289379954338074,
+ "learning_rate": 0.0006,
+ "loss": 4.1987152099609375,
+ "step": 6893
+ },
+ {
+ "epoch": 95.75491480996068,
+ "grad_norm": 0.5022200345993042,
+ "learning_rate": 0.0006,
+ "loss": 4.14801549911499,
+ "step": 6894
+ },
+ {
+ "epoch": 95.76889471384884,
+ "grad_norm": 0.45263758301734924,
+ "learning_rate": 0.0006,
+ "loss": 4.122977256774902,
+ "step": 6895
+ },
+ {
+ "epoch": 95.78287461773701,
+ "grad_norm": 0.43757519125938416,
+ "learning_rate": 0.0006,
+ "loss": 4.23306941986084,
+ "step": 6896
+ },
+ {
+ "epoch": 95.79685452162516,
+ "grad_norm": 0.4655337333679199,
+ "learning_rate": 0.0006,
+ "loss": 4.133179664611816,
+ "step": 6897
+ },
+ {
+ "epoch": 95.81083442551332,
+ "grad_norm": 0.5189670324325562,
+ "learning_rate": 0.0006,
+ "loss": 4.217549800872803,
+ "step": 6898
+ },
+ {
+ "epoch": 95.82481432940149,
+ "grad_norm": 0.5370217561721802,
+ "learning_rate": 0.0006,
+ "loss": 4.1656975746154785,
+ "step": 6899
+ },
+ {
+ "epoch": 95.83879423328965,
+ "grad_norm": 0.5483759641647339,
+ "learning_rate": 0.0006,
+ "loss": 4.267925262451172,
+ "step": 6900
+ },
+ {
+ "epoch": 95.8527741371778,
+ "grad_norm": 0.5216960310935974,
+ "learning_rate": 0.0006,
+ "loss": 4.155750274658203,
+ "step": 6901
+ },
+ {
+ "epoch": 95.86675404106597,
+ "grad_norm": 0.4929947257041931,
+ "learning_rate": 0.0006,
+ "loss": 4.261270046234131,
+ "step": 6902
+ },
+ {
+ "epoch": 95.88073394495413,
+ "grad_norm": 0.4465656578540802,
+ "learning_rate": 0.0006,
+ "loss": 4.092657566070557,
+ "step": 6903
+ },
+ {
+ "epoch": 95.89471384884229,
+ "grad_norm": 0.4376829266548157,
+ "learning_rate": 0.0006,
+ "loss": 4.187044143676758,
+ "step": 6904
+ },
+ {
+ "epoch": 95.90869375273044,
+ "grad_norm": 0.4521138072013855,
+ "learning_rate": 0.0006,
+ "loss": 4.220088958740234,
+ "step": 6905
+ },
+ {
+ "epoch": 95.92267365661861,
+ "grad_norm": 0.4758683741092682,
+ "learning_rate": 0.0006,
+ "loss": 4.11916971206665,
+ "step": 6906
+ },
+ {
+ "epoch": 95.93665356050677,
+ "grad_norm": 0.4840446710586548,
+ "learning_rate": 0.0006,
+ "loss": 4.2120513916015625,
+ "step": 6907
+ },
+ {
+ "epoch": 95.95063346439493,
+ "grad_norm": 0.4849572479724884,
+ "learning_rate": 0.0006,
+ "loss": 4.195476055145264,
+ "step": 6908
+ },
+ {
+ "epoch": 95.9646133682831,
+ "grad_norm": 0.4654180407524109,
+ "learning_rate": 0.0006,
+ "loss": 4.226565837860107,
+ "step": 6909
+ },
+ {
+ "epoch": 95.97859327217125,
+ "grad_norm": 0.4830659329891205,
+ "learning_rate": 0.0006,
+ "loss": 4.174907684326172,
+ "step": 6910
+ },
+ {
+ "epoch": 95.99257317605941,
+ "grad_norm": 0.46775931119918823,
+ "learning_rate": 0.0006,
+ "loss": 4.211753845214844,
+ "step": 6911
+ },
+ {
+ "epoch": 96.0,
+ "grad_norm": 0.535663366317749,
+ "learning_rate": 0.0006,
+ "loss": 4.181452751159668,
+ "step": 6912
+ },
+ {
+ "epoch": 96.0,
+ "eval_loss": 6.538204193115234,
+ "eval_runtime": 44.1115,
+ "eval_samples_per_second": 55.36,
+ "eval_steps_per_second": 3.468,
+ "step": 6912
+ },
+ {
+ "epoch": 96.01397990388816,
+ "grad_norm": 0.46761733293533325,
+ "learning_rate": 0.0006,
+ "loss": 4.0441460609436035,
+ "step": 6913
+ },
+ {
+ "epoch": 96.02795980777633,
+ "grad_norm": 0.48263782262802124,
+ "learning_rate": 0.0006,
+ "loss": 3.991487503051758,
+ "step": 6914
+ },
+ {
+ "epoch": 96.04193971166448,
+ "grad_norm": 0.49042603373527527,
+ "learning_rate": 0.0006,
+ "loss": 4.076535224914551,
+ "step": 6915
+ },
+ {
+ "epoch": 96.05591961555264,
+ "grad_norm": 0.5522645711898804,
+ "learning_rate": 0.0006,
+ "loss": 4.082953453063965,
+ "step": 6916
+ },
+ {
+ "epoch": 96.06989951944081,
+ "grad_norm": 0.6313494443893433,
+ "learning_rate": 0.0006,
+ "loss": 4.139706611633301,
+ "step": 6917
+ },
+ {
+ "epoch": 96.08387942332897,
+ "grad_norm": 0.7248101234436035,
+ "learning_rate": 0.0006,
+ "loss": 3.9855399131774902,
+ "step": 6918
+ },
+ {
+ "epoch": 96.09785932721712,
+ "grad_norm": 0.8027888536453247,
+ "learning_rate": 0.0006,
+ "loss": 4.1272053718566895,
+ "step": 6919
+ },
+ {
+ "epoch": 96.1118392311053,
+ "grad_norm": 0.9052670001983643,
+ "learning_rate": 0.0006,
+ "loss": 4.071163177490234,
+ "step": 6920
+ },
+ {
+ "epoch": 96.12581913499345,
+ "grad_norm": 0.9876996278762817,
+ "learning_rate": 0.0006,
+ "loss": 4.053455352783203,
+ "step": 6921
+ },
+ {
+ "epoch": 96.1397990388816,
+ "grad_norm": 0.909814715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.071072578430176,
+ "step": 6922
+ },
+ {
+ "epoch": 96.15377894276976,
+ "grad_norm": 0.7000014185905457,
+ "learning_rate": 0.0006,
+ "loss": 4.083397388458252,
+ "step": 6923
+ },
+ {
+ "epoch": 96.16775884665793,
+ "grad_norm": 0.5606781840324402,
+ "learning_rate": 0.0006,
+ "loss": 4.168983459472656,
+ "step": 6924
+ },
+ {
+ "epoch": 96.18173875054609,
+ "grad_norm": 0.5940408110618591,
+ "learning_rate": 0.0006,
+ "loss": 4.152904033660889,
+ "step": 6925
+ },
+ {
+ "epoch": 96.19571865443424,
+ "grad_norm": 0.5642334818840027,
+ "learning_rate": 0.0006,
+ "loss": 4.074671745300293,
+ "step": 6926
+ },
+ {
+ "epoch": 96.20969855832242,
+ "grad_norm": 0.5476233959197998,
+ "learning_rate": 0.0006,
+ "loss": 4.0836310386657715,
+ "step": 6927
+ },
+ {
+ "epoch": 96.22367846221057,
+ "grad_norm": 0.5543522238731384,
+ "learning_rate": 0.0006,
+ "loss": 4.1802144050598145,
+ "step": 6928
+ },
+ {
+ "epoch": 96.23765836609873,
+ "grad_norm": 0.5157725214958191,
+ "learning_rate": 0.0006,
+ "loss": 4.0325517654418945,
+ "step": 6929
+ },
+ {
+ "epoch": 96.2516382699869,
+ "grad_norm": 0.48993420600891113,
+ "learning_rate": 0.0006,
+ "loss": 4.056548118591309,
+ "step": 6930
+ },
+ {
+ "epoch": 96.26561817387505,
+ "grad_norm": 0.5049798488616943,
+ "learning_rate": 0.0006,
+ "loss": 4.0599470138549805,
+ "step": 6931
+ },
+ {
+ "epoch": 96.27959807776321,
+ "grad_norm": 0.49621084332466125,
+ "learning_rate": 0.0006,
+ "loss": 4.119996547698975,
+ "step": 6932
+ },
+ {
+ "epoch": 96.29357798165138,
+ "grad_norm": 0.49966681003570557,
+ "learning_rate": 0.0006,
+ "loss": 4.1109747886657715,
+ "step": 6933
+ },
+ {
+ "epoch": 96.30755788553954,
+ "grad_norm": 0.5015199780464172,
+ "learning_rate": 0.0006,
+ "loss": 4.188989639282227,
+ "step": 6934
+ },
+ {
+ "epoch": 96.3215377894277,
+ "grad_norm": 0.49785494804382324,
+ "learning_rate": 0.0006,
+ "loss": 4.130712032318115,
+ "step": 6935
+ },
+ {
+ "epoch": 96.33551769331586,
+ "grad_norm": 0.4780677855014801,
+ "learning_rate": 0.0006,
+ "loss": 4.078304290771484,
+ "step": 6936
+ },
+ {
+ "epoch": 96.34949759720402,
+ "grad_norm": 0.48353657126426697,
+ "learning_rate": 0.0006,
+ "loss": 4.178647041320801,
+ "step": 6937
+ },
+ {
+ "epoch": 96.36347750109218,
+ "grad_norm": 0.5073637962341309,
+ "learning_rate": 0.0006,
+ "loss": 4.149468898773193,
+ "step": 6938
+ },
+ {
+ "epoch": 96.37745740498035,
+ "grad_norm": 0.4548754394054413,
+ "learning_rate": 0.0006,
+ "loss": 4.057592391967773,
+ "step": 6939
+ },
+ {
+ "epoch": 96.3914373088685,
+ "grad_norm": 0.4579493999481201,
+ "learning_rate": 0.0006,
+ "loss": 4.155331134796143,
+ "step": 6940
+ },
+ {
+ "epoch": 96.40541721275666,
+ "grad_norm": 0.48254841566085815,
+ "learning_rate": 0.0006,
+ "loss": 4.169379234313965,
+ "step": 6941
+ },
+ {
+ "epoch": 96.41939711664482,
+ "grad_norm": 0.48724451661109924,
+ "learning_rate": 0.0006,
+ "loss": 4.081277847290039,
+ "step": 6942
+ },
+ {
+ "epoch": 96.43337702053299,
+ "grad_norm": 0.5129022002220154,
+ "learning_rate": 0.0006,
+ "loss": 4.103294849395752,
+ "step": 6943
+ },
+ {
+ "epoch": 96.44735692442114,
+ "grad_norm": 0.4953666031360626,
+ "learning_rate": 0.0006,
+ "loss": 4.101707935333252,
+ "step": 6944
+ },
+ {
+ "epoch": 96.4613368283093,
+ "grad_norm": 0.524560272693634,
+ "learning_rate": 0.0006,
+ "loss": 4.078084945678711,
+ "step": 6945
+ },
+ {
+ "epoch": 96.47531673219747,
+ "grad_norm": 0.5085508823394775,
+ "learning_rate": 0.0006,
+ "loss": 4.178118705749512,
+ "step": 6946
+ },
+ {
+ "epoch": 96.48929663608563,
+ "grad_norm": 0.49961233139038086,
+ "learning_rate": 0.0006,
+ "loss": 4.154083251953125,
+ "step": 6947
+ },
+ {
+ "epoch": 96.50327653997378,
+ "grad_norm": 0.47452062368392944,
+ "learning_rate": 0.0006,
+ "loss": 4.169801712036133,
+ "step": 6948
+ },
+ {
+ "epoch": 96.51725644386195,
+ "grad_norm": 0.4447079300880432,
+ "learning_rate": 0.0006,
+ "loss": 4.066725254058838,
+ "step": 6949
+ },
+ {
+ "epoch": 96.53123634775011,
+ "grad_norm": 0.47990554571151733,
+ "learning_rate": 0.0006,
+ "loss": 4.145941734313965,
+ "step": 6950
+ },
+ {
+ "epoch": 96.54521625163827,
+ "grad_norm": 0.4540978670120239,
+ "learning_rate": 0.0006,
+ "loss": 4.119297504425049,
+ "step": 6951
+ },
+ {
+ "epoch": 96.55919615552644,
+ "grad_norm": 0.421951025724411,
+ "learning_rate": 0.0006,
+ "loss": 4.0825300216674805,
+ "step": 6952
+ },
+ {
+ "epoch": 96.57317605941459,
+ "grad_norm": 0.4226614534854889,
+ "learning_rate": 0.0006,
+ "loss": 4.106687545776367,
+ "step": 6953
+ },
+ {
+ "epoch": 96.58715596330275,
+ "grad_norm": 0.4475690424442291,
+ "learning_rate": 0.0006,
+ "loss": 4.085957050323486,
+ "step": 6954
+ },
+ {
+ "epoch": 96.60113586719092,
+ "grad_norm": 0.4609984755516052,
+ "learning_rate": 0.0006,
+ "loss": 4.083858489990234,
+ "step": 6955
+ },
+ {
+ "epoch": 96.61511577107908,
+ "grad_norm": 0.4446718096733093,
+ "learning_rate": 0.0006,
+ "loss": 4.225866794586182,
+ "step": 6956
+ },
+ {
+ "epoch": 96.62909567496723,
+ "grad_norm": 0.4551014006137848,
+ "learning_rate": 0.0006,
+ "loss": 4.189782619476318,
+ "step": 6957
+ },
+ {
+ "epoch": 96.6430755788554,
+ "grad_norm": 0.43392619490623474,
+ "learning_rate": 0.0006,
+ "loss": 4.1766276359558105,
+ "step": 6958
+ },
+ {
+ "epoch": 96.65705548274356,
+ "grad_norm": 0.4403136372566223,
+ "learning_rate": 0.0006,
+ "loss": 4.110769748687744,
+ "step": 6959
+ },
+ {
+ "epoch": 96.67103538663171,
+ "grad_norm": 0.4386030435562134,
+ "learning_rate": 0.0006,
+ "loss": 4.248918056488037,
+ "step": 6960
+ },
+ {
+ "epoch": 96.68501529051987,
+ "grad_norm": 0.4770461618900299,
+ "learning_rate": 0.0006,
+ "loss": 4.147521018981934,
+ "step": 6961
+ },
+ {
+ "epoch": 96.69899519440804,
+ "grad_norm": 0.5179876685142517,
+ "learning_rate": 0.0006,
+ "loss": 4.089095592498779,
+ "step": 6962
+ },
+ {
+ "epoch": 96.7129750982962,
+ "grad_norm": 0.50107342004776,
+ "learning_rate": 0.0006,
+ "loss": 4.136371612548828,
+ "step": 6963
+ },
+ {
+ "epoch": 96.72695500218435,
+ "grad_norm": 0.4645512104034424,
+ "learning_rate": 0.0006,
+ "loss": 4.153011322021484,
+ "step": 6964
+ },
+ {
+ "epoch": 96.74093490607252,
+ "grad_norm": 0.46310389041900635,
+ "learning_rate": 0.0006,
+ "loss": 4.1072492599487305,
+ "step": 6965
+ },
+ {
+ "epoch": 96.75491480996068,
+ "grad_norm": 0.5032095909118652,
+ "learning_rate": 0.0006,
+ "loss": 4.169560432434082,
+ "step": 6966
+ },
+ {
+ "epoch": 96.76889471384884,
+ "grad_norm": 0.486697256565094,
+ "learning_rate": 0.0006,
+ "loss": 4.1576128005981445,
+ "step": 6967
+ },
+ {
+ "epoch": 96.78287461773701,
+ "grad_norm": 0.4661971926689148,
+ "learning_rate": 0.0006,
+ "loss": 4.147255897521973,
+ "step": 6968
+ },
+ {
+ "epoch": 96.79685452162516,
+ "grad_norm": 0.4716511070728302,
+ "learning_rate": 0.0006,
+ "loss": 4.116130352020264,
+ "step": 6969
+ },
+ {
+ "epoch": 96.81083442551332,
+ "grad_norm": 0.498890221118927,
+ "learning_rate": 0.0006,
+ "loss": 4.145158767700195,
+ "step": 6970
+ },
+ {
+ "epoch": 96.82481432940149,
+ "grad_norm": 0.5214377641677856,
+ "learning_rate": 0.0006,
+ "loss": 4.1071977615356445,
+ "step": 6971
+ },
+ {
+ "epoch": 96.83879423328965,
+ "grad_norm": 0.5029880404472351,
+ "learning_rate": 0.0006,
+ "loss": 4.161649703979492,
+ "step": 6972
+ },
+ {
+ "epoch": 96.8527741371778,
+ "grad_norm": 0.477816641330719,
+ "learning_rate": 0.0006,
+ "loss": 4.146169662475586,
+ "step": 6973
+ },
+ {
+ "epoch": 96.86675404106597,
+ "grad_norm": 0.474496990442276,
+ "learning_rate": 0.0006,
+ "loss": 4.154404640197754,
+ "step": 6974
+ },
+ {
+ "epoch": 96.88073394495413,
+ "grad_norm": 0.47790059447288513,
+ "learning_rate": 0.0006,
+ "loss": 4.070874214172363,
+ "step": 6975
+ },
+ {
+ "epoch": 96.89471384884229,
+ "grad_norm": 0.4680976867675781,
+ "learning_rate": 0.0006,
+ "loss": 4.203765869140625,
+ "step": 6976
+ },
+ {
+ "epoch": 96.90869375273044,
+ "grad_norm": 0.4553922712802887,
+ "learning_rate": 0.0006,
+ "loss": 4.075750350952148,
+ "step": 6977
+ },
+ {
+ "epoch": 96.92267365661861,
+ "grad_norm": 0.43940818309783936,
+ "learning_rate": 0.0006,
+ "loss": 4.172768592834473,
+ "step": 6978
+ },
+ {
+ "epoch": 96.93665356050677,
+ "grad_norm": 0.462308794260025,
+ "learning_rate": 0.0006,
+ "loss": 4.1971635818481445,
+ "step": 6979
+ },
+ {
+ "epoch": 96.95063346439493,
+ "grad_norm": 0.4657149612903595,
+ "learning_rate": 0.0006,
+ "loss": 4.140349388122559,
+ "step": 6980
+ },
+ {
+ "epoch": 96.9646133682831,
+ "grad_norm": 0.4416927993297577,
+ "learning_rate": 0.0006,
+ "loss": 4.194025993347168,
+ "step": 6981
+ },
+ {
+ "epoch": 96.97859327217125,
+ "grad_norm": 0.45172175765037537,
+ "learning_rate": 0.0006,
+ "loss": 4.193450927734375,
+ "step": 6982
+ },
+ {
+ "epoch": 96.99257317605941,
+ "grad_norm": 0.4664062559604645,
+ "learning_rate": 0.0006,
+ "loss": 4.112277030944824,
+ "step": 6983
+ },
+ {
+ "epoch": 97.0,
+ "grad_norm": 0.5202839374542236,
+ "learning_rate": 0.0006,
+ "loss": 4.157317161560059,
+ "step": 6984
+ },
+ {
+ "epoch": 97.0,
+ "eval_loss": 6.5102949142456055,
+ "eval_runtime": 44.1365,
+ "eval_samples_per_second": 55.328,
+ "eval_steps_per_second": 3.467,
+ "step": 6984
+ },
+ {
+ "epoch": 97.01397990388816,
+ "grad_norm": 0.461074560880661,
+ "learning_rate": 0.0006,
+ "loss": 4.035987854003906,
+ "step": 6985
+ },
+ {
+ "epoch": 97.02795980777633,
+ "grad_norm": 0.47619423270225525,
+ "learning_rate": 0.0006,
+ "loss": 4.083276271820068,
+ "step": 6986
+ },
+ {
+ "epoch": 97.04193971166448,
+ "grad_norm": 0.48172053694725037,
+ "learning_rate": 0.0006,
+ "loss": 4.03182315826416,
+ "step": 6987
+ },
+ {
+ "epoch": 97.05591961555264,
+ "grad_norm": 0.4910135865211487,
+ "learning_rate": 0.0006,
+ "loss": 4.016219139099121,
+ "step": 6988
+ },
+ {
+ "epoch": 97.06989951944081,
+ "grad_norm": 0.5172551870346069,
+ "learning_rate": 0.0006,
+ "loss": 4.023312568664551,
+ "step": 6989
+ },
+ {
+ "epoch": 97.08387942332897,
+ "grad_norm": 0.5937358140945435,
+ "learning_rate": 0.0006,
+ "loss": 4.043891429901123,
+ "step": 6990
+ },
+ {
+ "epoch": 97.09785932721712,
+ "grad_norm": 0.6697216629981995,
+ "learning_rate": 0.0006,
+ "loss": 4.076224327087402,
+ "step": 6991
+ },
+ {
+ "epoch": 97.1118392311053,
+ "grad_norm": 0.7804470658302307,
+ "learning_rate": 0.0006,
+ "loss": 4.09335470199585,
+ "step": 6992
+ },
+ {
+ "epoch": 97.12581913499345,
+ "grad_norm": 0.9183133840560913,
+ "learning_rate": 0.0006,
+ "loss": 3.9788904190063477,
+ "step": 6993
+ },
+ {
+ "epoch": 97.1397990388816,
+ "grad_norm": 0.9508665800094604,
+ "learning_rate": 0.0006,
+ "loss": 4.131627082824707,
+ "step": 6994
+ },
+ {
+ "epoch": 97.15377894276976,
+ "grad_norm": 0.8047600388526917,
+ "learning_rate": 0.0006,
+ "loss": 4.06958532333374,
+ "step": 6995
+ },
+ {
+ "epoch": 97.16775884665793,
+ "grad_norm": 0.6849161386489868,
+ "learning_rate": 0.0006,
+ "loss": 4.103867530822754,
+ "step": 6996
+ },
+ {
+ "epoch": 97.18173875054609,
+ "grad_norm": 0.6311691999435425,
+ "learning_rate": 0.0006,
+ "loss": 3.985719680786133,
+ "step": 6997
+ },
+ {
+ "epoch": 97.19571865443424,
+ "grad_norm": 0.6101590991020203,
+ "learning_rate": 0.0006,
+ "loss": 4.038421630859375,
+ "step": 6998
+ },
+ {
+ "epoch": 97.20969855832242,
+ "grad_norm": 0.5902279019355774,
+ "learning_rate": 0.0006,
+ "loss": 4.136788368225098,
+ "step": 6999
+ },
+ {
+ "epoch": 97.22367846221057,
+ "grad_norm": 0.6025383472442627,
+ "learning_rate": 0.0006,
+ "loss": 4.115448951721191,
+ "step": 7000
+ },
+ {
+ "epoch": 97.23765836609873,
+ "grad_norm": 0.572137713432312,
+ "learning_rate": 0.0006,
+ "loss": 4.1319580078125,
+ "step": 7001
+ },
+ {
+ "epoch": 97.2516382699869,
+ "grad_norm": 0.5894166231155396,
+ "learning_rate": 0.0006,
+ "loss": 4.103736877441406,
+ "step": 7002
+ },
+ {
+ "epoch": 97.26561817387505,
+ "grad_norm": 0.5755757093429565,
+ "learning_rate": 0.0006,
+ "loss": 4.137690544128418,
+ "step": 7003
+ },
+ {
+ "epoch": 97.27959807776321,
+ "grad_norm": 0.507847011089325,
+ "learning_rate": 0.0006,
+ "loss": 4.173171043395996,
+ "step": 7004
+ },
+ {
+ "epoch": 97.29357798165138,
+ "grad_norm": 0.49358415603637695,
+ "learning_rate": 0.0006,
+ "loss": 4.02469539642334,
+ "step": 7005
+ },
+ {
+ "epoch": 97.30755788553954,
+ "grad_norm": 0.5392143726348877,
+ "learning_rate": 0.0006,
+ "loss": 4.117171287536621,
+ "step": 7006
+ },
+ {
+ "epoch": 97.3215377894277,
+ "grad_norm": 0.5368227958679199,
+ "learning_rate": 0.0006,
+ "loss": 4.096714973449707,
+ "step": 7007
+ },
+ {
+ "epoch": 97.33551769331586,
+ "grad_norm": 0.5174763798713684,
+ "learning_rate": 0.0006,
+ "loss": 4.086803913116455,
+ "step": 7008
+ },
+ {
+ "epoch": 97.34949759720402,
+ "grad_norm": 0.5070654153823853,
+ "learning_rate": 0.0006,
+ "loss": 4.145634651184082,
+ "step": 7009
+ },
+ {
+ "epoch": 97.36347750109218,
+ "grad_norm": 0.4653833508491516,
+ "learning_rate": 0.0006,
+ "loss": 4.053770542144775,
+ "step": 7010
+ },
+ {
+ "epoch": 97.37745740498035,
+ "grad_norm": 0.4787232577800751,
+ "learning_rate": 0.0006,
+ "loss": 4.037479400634766,
+ "step": 7011
+ },
+ {
+ "epoch": 97.3914373088685,
+ "grad_norm": 0.4898133873939514,
+ "learning_rate": 0.0006,
+ "loss": 4.058388710021973,
+ "step": 7012
+ },
+ {
+ "epoch": 97.40541721275666,
+ "grad_norm": 0.48582640290260315,
+ "learning_rate": 0.0006,
+ "loss": 4.153290271759033,
+ "step": 7013
+ },
+ {
+ "epoch": 97.41939711664482,
+ "grad_norm": 0.4822466969490051,
+ "learning_rate": 0.0006,
+ "loss": 4.104269981384277,
+ "step": 7014
+ },
+ {
+ "epoch": 97.43337702053299,
+ "grad_norm": 0.48612290620803833,
+ "learning_rate": 0.0006,
+ "loss": 4.1062140464782715,
+ "step": 7015
+ },
+ {
+ "epoch": 97.44735692442114,
+ "grad_norm": 0.4782179892063141,
+ "learning_rate": 0.0006,
+ "loss": 4.122232913970947,
+ "step": 7016
+ },
+ {
+ "epoch": 97.4613368283093,
+ "grad_norm": 0.4945358633995056,
+ "learning_rate": 0.0006,
+ "loss": 4.084674835205078,
+ "step": 7017
+ },
+ {
+ "epoch": 97.47531673219747,
+ "grad_norm": 0.4541004002094269,
+ "learning_rate": 0.0006,
+ "loss": 4.112082004547119,
+ "step": 7018
+ },
+ {
+ "epoch": 97.48929663608563,
+ "grad_norm": 0.4716781675815582,
+ "learning_rate": 0.0006,
+ "loss": 4.086457252502441,
+ "step": 7019
+ },
+ {
+ "epoch": 97.50327653997378,
+ "grad_norm": 0.46438083052635193,
+ "learning_rate": 0.0006,
+ "loss": 4.1409831047058105,
+ "step": 7020
+ },
+ {
+ "epoch": 97.51725644386195,
+ "grad_norm": 0.5086216330528259,
+ "learning_rate": 0.0006,
+ "loss": 4.228301525115967,
+ "step": 7021
+ },
+ {
+ "epoch": 97.53123634775011,
+ "grad_norm": 0.45884037017822266,
+ "learning_rate": 0.0006,
+ "loss": 4.106400012969971,
+ "step": 7022
+ },
+ {
+ "epoch": 97.54521625163827,
+ "grad_norm": 0.4514281749725342,
+ "learning_rate": 0.0006,
+ "loss": 4.219980239868164,
+ "step": 7023
+ },
+ {
+ "epoch": 97.55919615552644,
+ "grad_norm": 0.43917757272720337,
+ "learning_rate": 0.0006,
+ "loss": 4.182549476623535,
+ "step": 7024
+ },
+ {
+ "epoch": 97.57317605941459,
+ "grad_norm": 0.4712623953819275,
+ "learning_rate": 0.0006,
+ "loss": 4.157881736755371,
+ "step": 7025
+ },
+ {
+ "epoch": 97.58715596330275,
+ "grad_norm": 0.48024773597717285,
+ "learning_rate": 0.0006,
+ "loss": 4.158403396606445,
+ "step": 7026
+ },
+ {
+ "epoch": 97.60113586719092,
+ "grad_norm": 0.48880746960639954,
+ "learning_rate": 0.0006,
+ "loss": 4.1102294921875,
+ "step": 7027
+ },
+ {
+ "epoch": 97.61511577107908,
+ "grad_norm": 0.4955100119113922,
+ "learning_rate": 0.0006,
+ "loss": 4.177490234375,
+ "step": 7028
+ },
+ {
+ "epoch": 97.62909567496723,
+ "grad_norm": 0.5296671986579895,
+ "learning_rate": 0.0006,
+ "loss": 4.133601665496826,
+ "step": 7029
+ },
+ {
+ "epoch": 97.6430755788554,
+ "grad_norm": 0.5368140935897827,
+ "learning_rate": 0.0006,
+ "loss": 4.108867645263672,
+ "step": 7030
+ },
+ {
+ "epoch": 97.65705548274356,
+ "grad_norm": 0.5069003701210022,
+ "learning_rate": 0.0006,
+ "loss": 4.09990119934082,
+ "step": 7031
+ },
+ {
+ "epoch": 97.67103538663171,
+ "grad_norm": 0.46604984998703003,
+ "learning_rate": 0.0006,
+ "loss": 4.051074981689453,
+ "step": 7032
+ },
+ {
+ "epoch": 97.68501529051987,
+ "grad_norm": 0.44505587220191956,
+ "learning_rate": 0.0006,
+ "loss": 4.154073715209961,
+ "step": 7033
+ },
+ {
+ "epoch": 97.69899519440804,
+ "grad_norm": 0.44832125306129456,
+ "learning_rate": 0.0006,
+ "loss": 4.177700042724609,
+ "step": 7034
+ },
+ {
+ "epoch": 97.7129750982962,
+ "grad_norm": 0.44669315218925476,
+ "learning_rate": 0.0006,
+ "loss": 4.031851768493652,
+ "step": 7035
+ },
+ {
+ "epoch": 97.72695500218435,
+ "grad_norm": 0.4855099022388458,
+ "learning_rate": 0.0006,
+ "loss": 4.128591537475586,
+ "step": 7036
+ },
+ {
+ "epoch": 97.74093490607252,
+ "grad_norm": 0.48845359683036804,
+ "learning_rate": 0.0006,
+ "loss": 4.201168060302734,
+ "step": 7037
+ },
+ {
+ "epoch": 97.75491480996068,
+ "grad_norm": 0.46379178762435913,
+ "learning_rate": 0.0006,
+ "loss": 4.2270827293396,
+ "step": 7038
+ },
+ {
+ "epoch": 97.76889471384884,
+ "grad_norm": 0.4617145359516144,
+ "learning_rate": 0.0006,
+ "loss": 4.204126834869385,
+ "step": 7039
+ },
+ {
+ "epoch": 97.78287461773701,
+ "grad_norm": 0.4632973372936249,
+ "learning_rate": 0.0006,
+ "loss": 4.156821250915527,
+ "step": 7040
+ },
+ {
+ "epoch": 97.79685452162516,
+ "grad_norm": 0.4645385146141052,
+ "learning_rate": 0.0006,
+ "loss": 4.254281044006348,
+ "step": 7041
+ },
+ {
+ "epoch": 97.81083442551332,
+ "grad_norm": 0.4636121690273285,
+ "learning_rate": 0.0006,
+ "loss": 4.208913803100586,
+ "step": 7042
+ },
+ {
+ "epoch": 97.82481432940149,
+ "grad_norm": 0.4632473886013031,
+ "learning_rate": 0.0006,
+ "loss": 4.23077392578125,
+ "step": 7043
+ },
+ {
+ "epoch": 97.83879423328965,
+ "grad_norm": 0.4576912820339203,
+ "learning_rate": 0.0006,
+ "loss": 4.156333923339844,
+ "step": 7044
+ },
+ {
+ "epoch": 97.8527741371778,
+ "grad_norm": 0.4295523762702942,
+ "learning_rate": 0.0006,
+ "loss": 4.074779510498047,
+ "step": 7045
+ },
+ {
+ "epoch": 97.86675404106597,
+ "grad_norm": 0.43909916281700134,
+ "learning_rate": 0.0006,
+ "loss": 4.217282295227051,
+ "step": 7046
+ },
+ {
+ "epoch": 97.88073394495413,
+ "grad_norm": 0.4360143542289734,
+ "learning_rate": 0.0006,
+ "loss": 4.135436534881592,
+ "step": 7047
+ },
+ {
+ "epoch": 97.89471384884229,
+ "grad_norm": 0.4372352063655853,
+ "learning_rate": 0.0006,
+ "loss": 4.169966697692871,
+ "step": 7048
+ },
+ {
+ "epoch": 97.90869375273044,
+ "grad_norm": 0.45691296458244324,
+ "learning_rate": 0.0006,
+ "loss": 4.248478889465332,
+ "step": 7049
+ },
+ {
+ "epoch": 97.92267365661861,
+ "grad_norm": 0.44667884707450867,
+ "learning_rate": 0.0006,
+ "loss": 4.19401741027832,
+ "step": 7050
+ },
+ {
+ "epoch": 97.93665356050677,
+ "grad_norm": 0.4496072232723236,
+ "learning_rate": 0.0006,
+ "loss": 4.238926410675049,
+ "step": 7051
+ },
+ {
+ "epoch": 97.95063346439493,
+ "grad_norm": 0.46430063247680664,
+ "learning_rate": 0.0006,
+ "loss": 4.249418258666992,
+ "step": 7052
+ },
+ {
+ "epoch": 97.9646133682831,
+ "grad_norm": 0.46042537689208984,
+ "learning_rate": 0.0006,
+ "loss": 4.168248176574707,
+ "step": 7053
+ },
+ {
+ "epoch": 97.97859327217125,
+ "grad_norm": 0.4358222782611847,
+ "learning_rate": 0.0006,
+ "loss": 4.186125755310059,
+ "step": 7054
+ },
+ {
+ "epoch": 97.99257317605941,
+ "grad_norm": 0.4189607799053192,
+ "learning_rate": 0.0006,
+ "loss": 4.079550743103027,
+ "step": 7055
+ },
+ {
+ "epoch": 98.0,
+ "grad_norm": 0.5132976770401001,
+ "learning_rate": 0.0006,
+ "loss": 4.140740394592285,
+ "step": 7056
+ },
+ {
+ "epoch": 98.0,
+ "eval_loss": 6.55159854888916,
+ "eval_runtime": 44.0904,
+ "eval_samples_per_second": 55.386,
+ "eval_steps_per_second": 3.47,
+ "step": 7056
+ },
+ {
+ "epoch": 98.01397990388816,
+ "grad_norm": 0.4453953206539154,
+ "learning_rate": 0.0006,
+ "loss": 3.9992103576660156,
+ "step": 7057
+ },
+ {
+ "epoch": 98.02795980777633,
+ "grad_norm": 0.5418996810913086,
+ "learning_rate": 0.0006,
+ "loss": 4.020098686218262,
+ "step": 7058
+ },
+ {
+ "epoch": 98.04193971166448,
+ "grad_norm": 0.5753687620162964,
+ "learning_rate": 0.0006,
+ "loss": 4.149735450744629,
+ "step": 7059
+ },
+ {
+ "epoch": 98.05591961555264,
+ "grad_norm": 0.5993179678916931,
+ "learning_rate": 0.0006,
+ "loss": 4.026359558105469,
+ "step": 7060
+ },
+ {
+ "epoch": 98.06989951944081,
+ "grad_norm": 0.6126981377601624,
+ "learning_rate": 0.0006,
+ "loss": 4.146673202514648,
+ "step": 7061
+ },
+ {
+ "epoch": 98.08387942332897,
+ "grad_norm": 0.7130326628684998,
+ "learning_rate": 0.0006,
+ "loss": 4.089106559753418,
+ "step": 7062
+ },
+ {
+ "epoch": 98.09785932721712,
+ "grad_norm": 0.8803637623786926,
+ "learning_rate": 0.0006,
+ "loss": 4.064471244812012,
+ "step": 7063
+ },
+ {
+ "epoch": 98.1118392311053,
+ "grad_norm": 1.057308554649353,
+ "learning_rate": 0.0006,
+ "loss": 4.055942058563232,
+ "step": 7064
+ },
+ {
+ "epoch": 98.12581913499345,
+ "grad_norm": 1.074599266052246,
+ "learning_rate": 0.0006,
+ "loss": 4.195087432861328,
+ "step": 7065
+ },
+ {
+ "epoch": 98.1397990388816,
+ "grad_norm": 0.9593775272369385,
+ "learning_rate": 0.0006,
+ "loss": 4.1546430587768555,
+ "step": 7066
+ },
+ {
+ "epoch": 98.15377894276976,
+ "grad_norm": 0.7947931289672852,
+ "learning_rate": 0.0006,
+ "loss": 4.057973861694336,
+ "step": 7067
+ },
+ {
+ "epoch": 98.16775884665793,
+ "grad_norm": 0.6534966230392456,
+ "learning_rate": 0.0006,
+ "loss": 4.053707122802734,
+ "step": 7068
+ },
+ {
+ "epoch": 98.18173875054609,
+ "grad_norm": 0.7121894359588623,
+ "learning_rate": 0.0006,
+ "loss": 4.102308750152588,
+ "step": 7069
+ },
+ {
+ "epoch": 98.19571865443424,
+ "grad_norm": 0.6378675699234009,
+ "learning_rate": 0.0006,
+ "loss": 4.076139450073242,
+ "step": 7070
+ },
+ {
+ "epoch": 98.20969855832242,
+ "grad_norm": 0.588146448135376,
+ "learning_rate": 0.0006,
+ "loss": 4.10132360458374,
+ "step": 7071
+ },
+ {
+ "epoch": 98.22367846221057,
+ "grad_norm": 0.6075363159179688,
+ "learning_rate": 0.0006,
+ "loss": 4.047061920166016,
+ "step": 7072
+ },
+ {
+ "epoch": 98.23765836609873,
+ "grad_norm": 0.5380366444587708,
+ "learning_rate": 0.0006,
+ "loss": 4.161431312561035,
+ "step": 7073
+ },
+ {
+ "epoch": 98.2516382699869,
+ "grad_norm": 0.547032356262207,
+ "learning_rate": 0.0006,
+ "loss": 4.078095436096191,
+ "step": 7074
+ },
+ {
+ "epoch": 98.26561817387505,
+ "grad_norm": 0.5228540301322937,
+ "learning_rate": 0.0006,
+ "loss": 4.10054874420166,
+ "step": 7075
+ },
+ {
+ "epoch": 98.27959807776321,
+ "grad_norm": 0.5488446950912476,
+ "learning_rate": 0.0006,
+ "loss": 4.0805816650390625,
+ "step": 7076
+ },
+ {
+ "epoch": 98.29357798165138,
+ "grad_norm": 0.5554054379463196,
+ "learning_rate": 0.0006,
+ "loss": 4.1113386154174805,
+ "step": 7077
+ },
+ {
+ "epoch": 98.30755788553954,
+ "grad_norm": 0.47874003648757935,
+ "learning_rate": 0.0006,
+ "loss": 4.075514316558838,
+ "step": 7078
+ },
+ {
+ "epoch": 98.3215377894277,
+ "grad_norm": 0.5234898924827576,
+ "learning_rate": 0.0006,
+ "loss": 4.0540547370910645,
+ "step": 7079
+ },
+ {
+ "epoch": 98.33551769331586,
+ "grad_norm": 0.5275157690048218,
+ "learning_rate": 0.0006,
+ "loss": 4.051668167114258,
+ "step": 7080
+ },
+ {
+ "epoch": 98.34949759720402,
+ "grad_norm": 0.5232820510864258,
+ "learning_rate": 0.0006,
+ "loss": 4.193521022796631,
+ "step": 7081
+ },
+ {
+ "epoch": 98.36347750109218,
+ "grad_norm": 0.5506188273429871,
+ "learning_rate": 0.0006,
+ "loss": 4.082660675048828,
+ "step": 7082
+ },
+ {
+ "epoch": 98.37745740498035,
+ "grad_norm": 0.4977515935897827,
+ "learning_rate": 0.0006,
+ "loss": 4.1096601486206055,
+ "step": 7083
+ },
+ {
+ "epoch": 98.3914373088685,
+ "grad_norm": 0.47451871633529663,
+ "learning_rate": 0.0006,
+ "loss": 4.105356693267822,
+ "step": 7084
+ },
+ {
+ "epoch": 98.40541721275666,
+ "grad_norm": 0.4810066521167755,
+ "learning_rate": 0.0006,
+ "loss": 4.063985824584961,
+ "step": 7085
+ },
+ {
+ "epoch": 98.41939711664482,
+ "grad_norm": 0.4831165671348572,
+ "learning_rate": 0.0006,
+ "loss": 4.009471893310547,
+ "step": 7086
+ },
+ {
+ "epoch": 98.43337702053299,
+ "grad_norm": 0.4543702304363251,
+ "learning_rate": 0.0006,
+ "loss": 4.082817554473877,
+ "step": 7087
+ },
+ {
+ "epoch": 98.44735692442114,
+ "grad_norm": 0.4436284303665161,
+ "learning_rate": 0.0006,
+ "loss": 3.982809543609619,
+ "step": 7088
+ },
+ {
+ "epoch": 98.4613368283093,
+ "grad_norm": 0.48702117800712585,
+ "learning_rate": 0.0006,
+ "loss": 4.128550052642822,
+ "step": 7089
+ },
+ {
+ "epoch": 98.47531673219747,
+ "grad_norm": 0.4805661141872406,
+ "learning_rate": 0.0006,
+ "loss": 4.194584846496582,
+ "step": 7090
+ },
+ {
+ "epoch": 98.48929663608563,
+ "grad_norm": 0.502912163734436,
+ "learning_rate": 0.0006,
+ "loss": 4.116239070892334,
+ "step": 7091
+ },
+ {
+ "epoch": 98.50327653997378,
+ "grad_norm": 0.5034586787223816,
+ "learning_rate": 0.0006,
+ "loss": 4.176222801208496,
+ "step": 7092
+ },
+ {
+ "epoch": 98.51725644386195,
+ "grad_norm": 0.5198729634284973,
+ "learning_rate": 0.0006,
+ "loss": 4.129663944244385,
+ "step": 7093
+ },
+ {
+ "epoch": 98.53123634775011,
+ "grad_norm": 0.47121137380599976,
+ "learning_rate": 0.0006,
+ "loss": 4.090271949768066,
+ "step": 7094
+ },
+ {
+ "epoch": 98.54521625163827,
+ "grad_norm": 0.49490439891815186,
+ "learning_rate": 0.0006,
+ "loss": 4.182285308837891,
+ "step": 7095
+ },
+ {
+ "epoch": 98.55919615552644,
+ "grad_norm": 0.4981266260147095,
+ "learning_rate": 0.0006,
+ "loss": 4.169669151306152,
+ "step": 7096
+ },
+ {
+ "epoch": 98.57317605941459,
+ "grad_norm": 0.5379036068916321,
+ "learning_rate": 0.0006,
+ "loss": 4.119904041290283,
+ "step": 7097
+ },
+ {
+ "epoch": 98.58715596330275,
+ "grad_norm": 0.5116757154464722,
+ "learning_rate": 0.0006,
+ "loss": 4.132133483886719,
+ "step": 7098
+ },
+ {
+ "epoch": 98.60113586719092,
+ "grad_norm": 0.4751177728176117,
+ "learning_rate": 0.0006,
+ "loss": 4.191065788269043,
+ "step": 7099
+ },
+ {
+ "epoch": 98.61511577107908,
+ "grad_norm": 0.5010045766830444,
+ "learning_rate": 0.0006,
+ "loss": 4.195987701416016,
+ "step": 7100
+ },
+ {
+ "epoch": 98.62909567496723,
+ "grad_norm": 0.5072547793388367,
+ "learning_rate": 0.0006,
+ "loss": 4.1880011558532715,
+ "step": 7101
+ },
+ {
+ "epoch": 98.6430755788554,
+ "grad_norm": 0.47768813371658325,
+ "learning_rate": 0.0006,
+ "loss": 4.051324844360352,
+ "step": 7102
+ },
+ {
+ "epoch": 98.65705548274356,
+ "grad_norm": 0.4803067445755005,
+ "learning_rate": 0.0006,
+ "loss": 4.188128471374512,
+ "step": 7103
+ },
+ {
+ "epoch": 98.67103538663171,
+ "grad_norm": 0.4684396982192993,
+ "learning_rate": 0.0006,
+ "loss": 4.155356407165527,
+ "step": 7104
+ },
+ {
+ "epoch": 98.68501529051987,
+ "grad_norm": 0.4910701513290405,
+ "learning_rate": 0.0006,
+ "loss": 4.134973526000977,
+ "step": 7105
+ },
+ {
+ "epoch": 98.69899519440804,
+ "grad_norm": 0.531513512134552,
+ "learning_rate": 0.0006,
+ "loss": 4.121379852294922,
+ "step": 7106
+ },
+ {
+ "epoch": 98.7129750982962,
+ "grad_norm": 0.5581766963005066,
+ "learning_rate": 0.0006,
+ "loss": 4.188475608825684,
+ "step": 7107
+ },
+ {
+ "epoch": 98.72695500218435,
+ "grad_norm": 0.5554750561714172,
+ "learning_rate": 0.0006,
+ "loss": 4.1387176513671875,
+ "step": 7108
+ },
+ {
+ "epoch": 98.74093490607252,
+ "grad_norm": 0.5508815050125122,
+ "learning_rate": 0.0006,
+ "loss": 4.127656936645508,
+ "step": 7109
+ },
+ {
+ "epoch": 98.75491480996068,
+ "grad_norm": 0.5178379416465759,
+ "learning_rate": 0.0006,
+ "loss": 4.191033363342285,
+ "step": 7110
+ },
+ {
+ "epoch": 98.76889471384884,
+ "grad_norm": 0.4913410246372223,
+ "learning_rate": 0.0006,
+ "loss": 4.124366760253906,
+ "step": 7111
+ },
+ {
+ "epoch": 98.78287461773701,
+ "grad_norm": 0.49553224444389343,
+ "learning_rate": 0.0006,
+ "loss": 4.187944412231445,
+ "step": 7112
+ },
+ {
+ "epoch": 98.79685452162516,
+ "grad_norm": 0.4709588587284088,
+ "learning_rate": 0.0006,
+ "loss": 4.146156311035156,
+ "step": 7113
+ },
+ {
+ "epoch": 98.81083442551332,
+ "grad_norm": 0.4905901253223419,
+ "learning_rate": 0.0006,
+ "loss": 4.156800270080566,
+ "step": 7114
+ },
+ {
+ "epoch": 98.82481432940149,
+ "grad_norm": 0.5258520245552063,
+ "learning_rate": 0.0006,
+ "loss": 4.1913604736328125,
+ "step": 7115
+ },
+ {
+ "epoch": 98.83879423328965,
+ "grad_norm": 0.5640511512756348,
+ "learning_rate": 0.0006,
+ "loss": 4.119570255279541,
+ "step": 7116
+ },
+ {
+ "epoch": 98.8527741371778,
+ "grad_norm": 0.5489979386329651,
+ "learning_rate": 0.0006,
+ "loss": 4.094902038574219,
+ "step": 7117
+ },
+ {
+ "epoch": 98.86675404106597,
+ "grad_norm": 0.5402773022651672,
+ "learning_rate": 0.0006,
+ "loss": 4.194994926452637,
+ "step": 7118
+ },
+ {
+ "epoch": 98.88073394495413,
+ "grad_norm": 0.4910939931869507,
+ "learning_rate": 0.0006,
+ "loss": 4.137809753417969,
+ "step": 7119
+ },
+ {
+ "epoch": 98.89471384884229,
+ "grad_norm": 0.4878501296043396,
+ "learning_rate": 0.0006,
+ "loss": 4.15915584564209,
+ "step": 7120
+ },
+ {
+ "epoch": 98.90869375273044,
+ "grad_norm": 0.48779919743537903,
+ "learning_rate": 0.0006,
+ "loss": 4.266197204589844,
+ "step": 7121
+ },
+ {
+ "epoch": 98.92267365661861,
+ "grad_norm": 0.5203080177307129,
+ "learning_rate": 0.0006,
+ "loss": 4.2181196212768555,
+ "step": 7122
+ },
+ {
+ "epoch": 98.93665356050677,
+ "grad_norm": 0.5252925753593445,
+ "learning_rate": 0.0006,
+ "loss": 4.212495803833008,
+ "step": 7123
+ },
+ {
+ "epoch": 98.95063346439493,
+ "grad_norm": 0.5169079303741455,
+ "learning_rate": 0.0006,
+ "loss": 4.232982158660889,
+ "step": 7124
+ },
+ {
+ "epoch": 98.9646133682831,
+ "grad_norm": 0.4931119978427887,
+ "learning_rate": 0.0006,
+ "loss": 4.199098587036133,
+ "step": 7125
+ },
+ {
+ "epoch": 98.97859327217125,
+ "grad_norm": 0.4826517701148987,
+ "learning_rate": 0.0006,
+ "loss": 4.181868553161621,
+ "step": 7126
+ },
+ {
+ "epoch": 98.99257317605941,
+ "grad_norm": 0.5012722015380859,
+ "learning_rate": 0.0006,
+ "loss": 4.138530254364014,
+ "step": 7127
+ },
+ {
+ "epoch": 99.0,
+ "grad_norm": 0.6062319874763489,
+ "learning_rate": 0.0006,
+ "loss": 4.224992275238037,
+ "step": 7128
+ },
+ {
+ "epoch": 99.0,
+ "eval_loss": 6.588064193725586,
+ "eval_runtime": 44.0245,
+ "eval_samples_per_second": 55.469,
+ "eval_steps_per_second": 3.475,
+ "step": 7128
+ },
+ {
+ "epoch": 99.01397990388816,
+ "grad_norm": 0.5495805144309998,
+ "learning_rate": 0.0006,
+ "loss": 4.109453201293945,
+ "step": 7129
+ },
+ {
+ "epoch": 99.02795980777633,
+ "grad_norm": 0.5033695101737976,
+ "learning_rate": 0.0006,
+ "loss": 4.039588928222656,
+ "step": 7130
+ },
+ {
+ "epoch": 99.04193971166448,
+ "grad_norm": 0.5156841278076172,
+ "learning_rate": 0.0006,
+ "loss": 4.044214725494385,
+ "step": 7131
+ },
+ {
+ "epoch": 99.05591961555264,
+ "grad_norm": 0.562054455280304,
+ "learning_rate": 0.0006,
+ "loss": 4.015318393707275,
+ "step": 7132
+ },
+ {
+ "epoch": 99.06989951944081,
+ "grad_norm": 0.6458460688591003,
+ "learning_rate": 0.0006,
+ "loss": 4.056145668029785,
+ "step": 7133
+ },
+ {
+ "epoch": 99.08387942332897,
+ "grad_norm": 0.6251622438430786,
+ "learning_rate": 0.0006,
+ "loss": 4.049222946166992,
+ "step": 7134
+ },
+ {
+ "epoch": 99.09785932721712,
+ "grad_norm": 0.6611141562461853,
+ "learning_rate": 0.0006,
+ "loss": 4.116849899291992,
+ "step": 7135
+ },
+ {
+ "epoch": 99.1118392311053,
+ "grad_norm": 0.7895457148551941,
+ "learning_rate": 0.0006,
+ "loss": 4.011542797088623,
+ "step": 7136
+ },
+ {
+ "epoch": 99.12581913499345,
+ "grad_norm": 0.8456315398216248,
+ "learning_rate": 0.0006,
+ "loss": 4.061209678649902,
+ "step": 7137
+ },
+ {
+ "epoch": 99.1397990388816,
+ "grad_norm": 0.7963458299636841,
+ "learning_rate": 0.0006,
+ "loss": 4.085158348083496,
+ "step": 7138
+ },
+ {
+ "epoch": 99.15377894276976,
+ "grad_norm": 0.6889739632606506,
+ "learning_rate": 0.0006,
+ "loss": 4.124040603637695,
+ "step": 7139
+ },
+ {
+ "epoch": 99.16775884665793,
+ "grad_norm": 0.6426130533218384,
+ "learning_rate": 0.0006,
+ "loss": 4.09499454498291,
+ "step": 7140
+ },
+ {
+ "epoch": 99.18173875054609,
+ "grad_norm": 0.6183459758758545,
+ "learning_rate": 0.0006,
+ "loss": 4.092257499694824,
+ "step": 7141
+ },
+ {
+ "epoch": 99.19571865443424,
+ "grad_norm": 0.6379088163375854,
+ "learning_rate": 0.0006,
+ "loss": 4.030123710632324,
+ "step": 7142
+ },
+ {
+ "epoch": 99.20969855832242,
+ "grad_norm": 0.6007694602012634,
+ "learning_rate": 0.0006,
+ "loss": 4.056822776794434,
+ "step": 7143
+ },
+ {
+ "epoch": 99.22367846221057,
+ "grad_norm": 0.5078362822532654,
+ "learning_rate": 0.0006,
+ "loss": 4.122973442077637,
+ "step": 7144
+ },
+ {
+ "epoch": 99.23765836609873,
+ "grad_norm": 0.5411445498466492,
+ "learning_rate": 0.0006,
+ "loss": 4.161450386047363,
+ "step": 7145
+ },
+ {
+ "epoch": 99.2516382699869,
+ "grad_norm": 0.548491895198822,
+ "learning_rate": 0.0006,
+ "loss": 4.093230247497559,
+ "step": 7146
+ },
+ {
+ "epoch": 99.26561817387505,
+ "grad_norm": 0.5482704043388367,
+ "learning_rate": 0.0006,
+ "loss": 4.151093482971191,
+ "step": 7147
+ },
+ {
+ "epoch": 99.27959807776321,
+ "grad_norm": 0.5484820008277893,
+ "learning_rate": 0.0006,
+ "loss": 4.066967010498047,
+ "step": 7148
+ },
+ {
+ "epoch": 99.29357798165138,
+ "grad_norm": 0.5236219763755798,
+ "learning_rate": 0.0006,
+ "loss": 4.17291259765625,
+ "step": 7149
+ },
+ {
+ "epoch": 99.30755788553954,
+ "grad_norm": 0.5082974433898926,
+ "learning_rate": 0.0006,
+ "loss": 4.130829334259033,
+ "step": 7150
+ },
+ {
+ "epoch": 99.3215377894277,
+ "grad_norm": 0.5173243880271912,
+ "learning_rate": 0.0006,
+ "loss": 4.117154598236084,
+ "step": 7151
+ },
+ {
+ "epoch": 99.33551769331586,
+ "grad_norm": 0.5276272892951965,
+ "learning_rate": 0.0006,
+ "loss": 4.103668212890625,
+ "step": 7152
+ },
+ {
+ "epoch": 99.34949759720402,
+ "grad_norm": 0.5045097470283508,
+ "learning_rate": 0.0006,
+ "loss": 4.063185691833496,
+ "step": 7153
+ },
+ {
+ "epoch": 99.36347750109218,
+ "grad_norm": 0.5696848034858704,
+ "learning_rate": 0.0006,
+ "loss": 4.066627502441406,
+ "step": 7154
+ },
+ {
+ "epoch": 99.37745740498035,
+ "grad_norm": 0.529842734336853,
+ "learning_rate": 0.0006,
+ "loss": 4.230612277984619,
+ "step": 7155
+ },
+ {
+ "epoch": 99.3914373088685,
+ "grad_norm": 0.48186948895454407,
+ "learning_rate": 0.0006,
+ "loss": 4.033309459686279,
+ "step": 7156
+ },
+ {
+ "epoch": 99.40541721275666,
+ "grad_norm": 0.5315477848052979,
+ "learning_rate": 0.0006,
+ "loss": 4.045201301574707,
+ "step": 7157
+ },
+ {
+ "epoch": 99.41939711664482,
+ "grad_norm": 0.49855172634124756,
+ "learning_rate": 0.0006,
+ "loss": 4.082748889923096,
+ "step": 7158
+ },
+ {
+ "epoch": 99.43337702053299,
+ "grad_norm": 0.4681031405925751,
+ "learning_rate": 0.0006,
+ "loss": 4.037099361419678,
+ "step": 7159
+ },
+ {
+ "epoch": 99.44735692442114,
+ "grad_norm": 0.49363383650779724,
+ "learning_rate": 0.0006,
+ "loss": 4.151002883911133,
+ "step": 7160
+ },
+ {
+ "epoch": 99.4613368283093,
+ "grad_norm": 0.4939712882041931,
+ "learning_rate": 0.0006,
+ "loss": 4.122071743011475,
+ "step": 7161
+ },
+ {
+ "epoch": 99.47531673219747,
+ "grad_norm": 0.5160421133041382,
+ "learning_rate": 0.0006,
+ "loss": 4.139202117919922,
+ "step": 7162
+ },
+ {
+ "epoch": 99.48929663608563,
+ "grad_norm": 0.5292940735816956,
+ "learning_rate": 0.0006,
+ "loss": 4.133066177368164,
+ "step": 7163
+ },
+ {
+ "epoch": 99.50327653997378,
+ "grad_norm": 0.570379912853241,
+ "learning_rate": 0.0006,
+ "loss": 4.077898025512695,
+ "step": 7164
+ },
+ {
+ "epoch": 99.51725644386195,
+ "grad_norm": 0.5607588291168213,
+ "learning_rate": 0.0006,
+ "loss": 4.081667900085449,
+ "step": 7165
+ },
+ {
+ "epoch": 99.53123634775011,
+ "grad_norm": 0.4822019636631012,
+ "learning_rate": 0.0006,
+ "loss": 4.118327617645264,
+ "step": 7166
+ },
+ {
+ "epoch": 99.54521625163827,
+ "grad_norm": 0.47640711069107056,
+ "learning_rate": 0.0006,
+ "loss": 4.067081451416016,
+ "step": 7167
+ },
+ {
+ "epoch": 99.55919615552644,
+ "grad_norm": 0.47204363346099854,
+ "learning_rate": 0.0006,
+ "loss": 4.139846324920654,
+ "step": 7168
+ },
+ {
+ "epoch": 99.57317605941459,
+ "grad_norm": 0.4470030963420868,
+ "learning_rate": 0.0006,
+ "loss": 4.105378150939941,
+ "step": 7169
+ },
+ {
+ "epoch": 99.58715596330275,
+ "grad_norm": 0.4714698791503906,
+ "learning_rate": 0.0006,
+ "loss": 4.124320030212402,
+ "step": 7170
+ },
+ {
+ "epoch": 99.60113586719092,
+ "grad_norm": 0.45423394441604614,
+ "learning_rate": 0.0006,
+ "loss": 4.166717529296875,
+ "step": 7171
+ },
+ {
+ "epoch": 99.61511577107908,
+ "grad_norm": 0.46368682384490967,
+ "learning_rate": 0.0006,
+ "loss": 4.145930290222168,
+ "step": 7172
+ },
+ {
+ "epoch": 99.62909567496723,
+ "grad_norm": 0.4971572458744049,
+ "learning_rate": 0.0006,
+ "loss": 4.1443681716918945,
+ "step": 7173
+ },
+ {
+ "epoch": 99.6430755788554,
+ "grad_norm": 0.4864252209663391,
+ "learning_rate": 0.0006,
+ "loss": 4.130318641662598,
+ "step": 7174
+ },
+ {
+ "epoch": 99.65705548274356,
+ "grad_norm": 0.4697951674461365,
+ "learning_rate": 0.0006,
+ "loss": 4.058167934417725,
+ "step": 7175
+ },
+ {
+ "epoch": 99.67103538663171,
+ "grad_norm": 0.441293865442276,
+ "learning_rate": 0.0006,
+ "loss": 4.046492099761963,
+ "step": 7176
+ },
+ {
+ "epoch": 99.68501529051987,
+ "grad_norm": 0.4748845398426056,
+ "learning_rate": 0.0006,
+ "loss": 4.150599956512451,
+ "step": 7177
+ },
+ {
+ "epoch": 99.69899519440804,
+ "grad_norm": 0.44668635725975037,
+ "learning_rate": 0.0006,
+ "loss": 4.144721031188965,
+ "step": 7178
+ },
+ {
+ "epoch": 99.7129750982962,
+ "grad_norm": 0.47588229179382324,
+ "learning_rate": 0.0006,
+ "loss": 4.166041851043701,
+ "step": 7179
+ },
+ {
+ "epoch": 99.72695500218435,
+ "grad_norm": 0.5003524422645569,
+ "learning_rate": 0.0006,
+ "loss": 4.143935203552246,
+ "step": 7180
+ },
+ {
+ "epoch": 99.74093490607252,
+ "grad_norm": 0.5268462896347046,
+ "learning_rate": 0.0006,
+ "loss": 4.0493879318237305,
+ "step": 7181
+ },
+ {
+ "epoch": 99.75491480996068,
+ "grad_norm": 0.5325331687927246,
+ "learning_rate": 0.0006,
+ "loss": 4.162197113037109,
+ "step": 7182
+ },
+ {
+ "epoch": 99.76889471384884,
+ "grad_norm": 0.5219342112541199,
+ "learning_rate": 0.0006,
+ "loss": 4.070736885070801,
+ "step": 7183
+ },
+ {
+ "epoch": 99.78287461773701,
+ "grad_norm": 0.48190727829933167,
+ "learning_rate": 0.0006,
+ "loss": 4.147245407104492,
+ "step": 7184
+ },
+ {
+ "epoch": 99.79685452162516,
+ "grad_norm": 0.45468607544898987,
+ "learning_rate": 0.0006,
+ "loss": 4.1916680335998535,
+ "step": 7185
+ },
+ {
+ "epoch": 99.81083442551332,
+ "grad_norm": 0.46559810638427734,
+ "learning_rate": 0.0006,
+ "loss": 4.1366987228393555,
+ "step": 7186
+ },
+ {
+ "epoch": 99.82481432940149,
+ "grad_norm": 0.4908849895000458,
+ "learning_rate": 0.0006,
+ "loss": 4.137726783752441,
+ "step": 7187
+ },
+ {
+ "epoch": 99.83879423328965,
+ "grad_norm": 0.5124282836914062,
+ "learning_rate": 0.0006,
+ "loss": 4.10656213760376,
+ "step": 7188
+ },
+ {
+ "epoch": 99.8527741371778,
+ "grad_norm": 0.5164557695388794,
+ "learning_rate": 0.0006,
+ "loss": 4.179607391357422,
+ "step": 7189
+ },
+ {
+ "epoch": 99.86675404106597,
+ "grad_norm": 0.5008688569068909,
+ "learning_rate": 0.0006,
+ "loss": 4.121486186981201,
+ "step": 7190
+ },
+ {
+ "epoch": 99.88073394495413,
+ "grad_norm": 0.45067673921585083,
+ "learning_rate": 0.0006,
+ "loss": 4.033831596374512,
+ "step": 7191
+ },
+ {
+ "epoch": 99.89471384884229,
+ "grad_norm": 0.4691345989704132,
+ "learning_rate": 0.0006,
+ "loss": 4.146100997924805,
+ "step": 7192
+ },
+ {
+ "epoch": 99.90869375273044,
+ "grad_norm": 0.4452730715274811,
+ "learning_rate": 0.0006,
+ "loss": 4.126260757446289,
+ "step": 7193
+ },
+ {
+ "epoch": 99.92267365661861,
+ "grad_norm": 0.43522030115127563,
+ "learning_rate": 0.0006,
+ "loss": 4.174652099609375,
+ "step": 7194
+ },
+ {
+ "epoch": 99.93665356050677,
+ "grad_norm": 0.440651535987854,
+ "learning_rate": 0.0006,
+ "loss": 4.195049285888672,
+ "step": 7195
+ },
+ {
+ "epoch": 99.95063346439493,
+ "grad_norm": 0.4672205448150635,
+ "learning_rate": 0.0006,
+ "loss": 4.1064252853393555,
+ "step": 7196
+ },
+ {
+ "epoch": 99.9646133682831,
+ "grad_norm": 0.46729591488838196,
+ "learning_rate": 0.0006,
+ "loss": 4.17401123046875,
+ "step": 7197
+ },
+ {
+ "epoch": 99.97859327217125,
+ "grad_norm": 0.453289657831192,
+ "learning_rate": 0.0006,
+ "loss": 4.101666450500488,
+ "step": 7198
+ },
+ {
+ "epoch": 99.99257317605941,
+ "grad_norm": 0.47348323464393616,
+ "learning_rate": 0.0006,
+ "loss": 4.2749342918396,
+ "step": 7199
+ },
+ {
+ "epoch": 100.0,
+ "grad_norm": 0.5494643449783325,
+ "learning_rate": 0.0006,
+ "loss": 4.109330177307129,
+ "step": 7200
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.0682729188163584e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-7200/training_args.bin b/runs/i5-fulle-lm/checkpoint-7200/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-7200/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856
diff --git a/runs/i5-fulle-lm/checkpoint-864/chat_template.jinja b/runs/i5-fulle-lm/checkpoint-864/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/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/i5-fulle-lm/checkpoint-864/config.json b/runs/i5-fulle-lm/checkpoint-864/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..058c0c9cb78c1d73ea59c4a9b9f05ed9ffd67c58
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/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.6.2",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-fulle-lm/checkpoint-864/generation_config.json b/runs/i5-fulle-lm/checkpoint-864/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/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.6.2",
+ "use_cache": true
+}
diff --git a/runs/i5-fulle-lm/checkpoint-864/model.safetensors b/runs/i5-fulle-lm/checkpoint-864/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6844f605805fa32444c3b3c45664efb40a799f24
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5dd668b2a64c5e9c90d45f9103badbdcbcc2233ba833149b8cbd530d8a7bacab
+size 583366472
diff --git a/runs/i5-fulle-lm/checkpoint-864/optimizer.pt b/runs/i5-fulle-lm/checkpoint-864/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f3071fee83a845319f0f1bb3fb36856c79fc5bcd
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d88faa998e99160cd04ca1aa50884aa7734f77ab1cc9533ad9391f2d6dbc2fa6
+size 1166848378
diff --git a/runs/i5-fulle-lm/checkpoint-864/rng_state_0.pth b/runs/i5-fulle-lm/checkpoint-864/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..e7238750e32c8e84e19dab0e03ccd710d1ec8744
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0deba2e1887c562f425f51147810c61b4f5e1e1d2f2cc8d2e5da3e28fdd5eaf8
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-864/rng_state_1.pth b/runs/i5-fulle-lm/checkpoint-864/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1f161bcdbc2562e4d718187b60e981dbad46572c
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7e06f459615f9acdcdb652340b6a70e655addf6eb17a190a0a8d213c619c4dec
+size 14512
diff --git a/runs/i5-fulle-lm/checkpoint-864/scheduler.pt b/runs/i5-fulle-lm/checkpoint-864/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f21fc027a37dccb66b77a4752de227c557d8ff04
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b1a1dda88112968a1342ac518f362b4f5e138437f0b670c818ad8493b91ca49d
+size 1064
diff --git a/runs/i5-fulle-lm/checkpoint-864/tokenizer.json b/runs/i5-fulle-lm/checkpoint-864/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-fulle-lm/checkpoint-864/tokenizer_config.json b/runs/i5-fulle-lm/checkpoint-864/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c2c3bc55161b3677a88fc64af454e024db70034
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/tokenizer_config.json
@@ -0,0 +1,24 @@
+{
+ "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|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "local_files_only": false,
+ "model_max_length": 32768,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-864/trainer_state.json b/runs/i5-fulle-lm/checkpoint-864/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..e4f59a67f1e508ada9e362457e01ee603a1f3756
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/trainer_state.json
@@ -0,0 +1,6162 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 12.0,
+ "eval_steps": 500,
+ "global_step": 864,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 2.9929754734039307,
+ "learning_rate": 0.0,
+ "loss": 11.991058349609375,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 2.9691145420074463,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.995436668395996,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 2.943331480026245,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.945241928100586,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 2.7279052734375,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.857856750488281,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 2.459994316101074,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.753747940063477,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 2.3261163234710693,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.634729385375977,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 2.102216958999634,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.522893905639648,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 1.9048895835876465,
+ "learning_rate": 4.2e-05,
+ "loss": 11.433613777160645,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 1.822629690170288,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.346614837646484,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 1.7702407836914062,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.274776458740234,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 1.724582314491272,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.214641571044922,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 1.7143093347549438,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.160767555236816,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 1.7055429220199585,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.112727165222168,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 1.6979949474334717,
+ "learning_rate": 7.8e-05,
+ "loss": 11.070176124572754,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 1.698456883430481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.021273612976074,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 1.694309949874878,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.964617729187012,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 1.7008790969848633,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.905136108398438,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 1.6909408569335938,
+ "learning_rate": 0.000102,
+ "loss": 10.840185165405273,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 1.6919310092926025,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.770065307617188,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 1.6948130130767822,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.692286491394043,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 1.6694281101226807,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.622184753417969,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 1.672411561012268,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.533384323120117,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 1.6780970096588135,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.443933486938477,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 1.6708232164382935,
+ "learning_rate": 0.000138,
+ "loss": 10.355020523071289,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 1.665282964706421,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.263477325439453,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 1.6800806522369385,
+ "learning_rate": 0.00015,
+ "loss": 10.157119750976562,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 1.6528797149658203,
+ "learning_rate": 0.000156,
+ "loss": 10.072553634643555,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 1.6828707456588745,
+ "learning_rate": 0.000162,
+ "loss": 9.954492568969727,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 1.6531107425689697,
+ "learning_rate": 0.000168,
+ "loss": 9.86182689666748,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 1.660179853439331,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.744815826416016,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 1.638755202293396,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.652502059936523,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 1.6358997821807861,
+ "learning_rate": 0.000186,
+ "loss": 9.537353515625,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 1.621189832687378,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.42542552947998,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 1.6219159364700317,
+ "learning_rate": 0.000198,
+ "loss": 9.317501068115234,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.5829830169677734,
+ "learning_rate": 0.000204,
+ "loss": 9.230195999145508,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.570173978805542,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.109664916992188,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.565650463104248,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.996440887451172,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.5497723817825317,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.887308120727539,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.5418901443481445,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.779237747192383,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.4985361099243164,
+ "learning_rate": 0.000234,
+ "loss": 8.688765525817871,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.4592864513397217,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.600611686706543,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4482712745666504,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.499870300292969,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.4105122089385986,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.387744903564453,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.34541654586792,
+ "learning_rate": 0.000258,
+ "loss": 8.338939666748047,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2429373264312744,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.24583625793457,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.1936670541763306,
+ "learning_rate": 0.00027,
+ "loss": 8.162744522094727,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.13948392868042,
+ "learning_rate": 0.000276,
+ "loss": 8.059897422790527,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 1.0357334613800049,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.972769260406494,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.9511513113975525,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.923378944396973,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.8084472417831421,
+ "learning_rate": 0.000294,
+ "loss": 7.861480712890625,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.7135328650474548,
+ "learning_rate": 0.0003,
+ "loss": 7.82336950302124,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.572115957736969,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.784486770629883,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.4873937666416168,
+ "learning_rate": 0.000312,
+ "loss": 7.732234954833984,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.3295879364013672,
+ "learning_rate": 0.000318,
+ "loss": 7.720306873321533,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.25995877385139465,
+ "learning_rate": 0.000324,
+ "loss": 7.698555946350098,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.24519014358520508,
+ "learning_rate": 0.00033,
+ "loss": 7.677582263946533,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.17343710362911224,
+ "learning_rate": 0.000336,
+ "loss": 7.684822082519531,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.18203967809677124,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.677922248840332,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.23763766884803772,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.663730621337891,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.27194544672966003,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.656854629516602,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.26884615421295166,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.617514133453369,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.2615501880645752,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.634084701538086,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.21137872338294983,
+ "learning_rate": 0.000372,
+ "loss": 7.62425422668457,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.1411866545677185,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.603841781616211,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.1536041498184204,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617574691772461,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.15028807520866394,
+ "learning_rate": 0.00039,
+ "loss": 7.605348587036133,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.14039766788482666,
+ "learning_rate": 0.000396,
+ "loss": 7.590822219848633,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.12192250043153763,
+ "learning_rate": 0.000402,
+ "loss": 7.5595173835754395,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.10842809826135635,
+ "learning_rate": 0.000408,
+ "loss": 7.565250396728516,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.11480727046728134,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.540429592132568,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.12565556168556213,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.53934383392334,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.15351328253746033,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.551596164703369,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.557724952697754,
+ "eval_runtime": 43.9265,
+ "eval_samples_per_second": 55.593,
+ "eval_steps_per_second": 3.483,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.20383046567440033,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.540946960449219,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9161878228187561,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.555147171020508,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 2.083580493927002,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.768552303314209,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.8796588778495789,
+ "learning_rate": 0.00045,
+ "loss": 7.611505031585693,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.6216000318527222,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.567468643188477,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.8930279612541199,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.5782470703125,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.4613345265388489,
+ "learning_rate": 0.000468,
+ "loss": 7.576062202453613,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.3412339687347412,
+ "learning_rate": 0.000474,
+ "loss": 7.564639091491699,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.40676653385162354,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.571394920349121,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.3903053104877472,
+ "learning_rate": 0.000486,
+ "loss": 7.551764965057373,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.24286146461963654,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.519876480102539,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3156949281692505,
+ "learning_rate": 0.000498,
+ "loss": 7.49195671081543,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.31037577986717224,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.489378929138184,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.2998732626438141,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.490997314453125,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.24859440326690674,
+ "learning_rate": 0.000516,
+ "loss": 7.495302200317383,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.2625124752521515,
+ "learning_rate": 0.000522,
+ "loss": 7.517210006713867,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.3036101162433624,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.47798490524292,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.25779256224632263,
+ "learning_rate": 0.000534,
+ "loss": 7.494161605834961,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.1909315437078476,
+ "learning_rate": 0.00054,
+ "loss": 7.487898826599121,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.24012571573257446,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.480587959289551,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.29606521129608154,
+ "learning_rate": 0.000552,
+ "loss": 7.481789588928223,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.23928579688072205,
+ "learning_rate": 0.000558,
+ "loss": 7.439096450805664,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.16471117734909058,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.459171772003174,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.19538572430610657,
+ "learning_rate": 0.00057,
+ "loss": 7.492301940917969,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.21342918276786804,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.4531755447387695,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.18592850863933563,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.477556228637695,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.1463978886604309,
+ "learning_rate": 0.000588,
+ "loss": 7.478244781494141,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.14106525480747223,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.46275520324707,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.17314527928829193,
+ "learning_rate": 0.0006,
+ "loss": 7.479445457458496,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.22932972013950348,
+ "learning_rate": 0.0006,
+ "loss": 7.470530986785889,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.2356046438217163,
+ "learning_rate": 0.0006,
+ "loss": 7.479394435882568,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.3144241273403168,
+ "learning_rate": 0.0006,
+ "loss": 7.462943077087402,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.24671342968940735,
+ "learning_rate": 0.0006,
+ "loss": 7.469005584716797,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.13560344278812408,
+ "learning_rate": 0.0006,
+ "loss": 7.446053504943848,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.23291273415088654,
+ "learning_rate": 0.0006,
+ "loss": 7.472160816192627,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.19900304079055786,
+ "learning_rate": 0.0006,
+ "loss": 7.451987266540527,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.1223536878824234,
+ "learning_rate": 0.0006,
+ "loss": 7.435811996459961,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.27388015389442444,
+ "learning_rate": 0.0006,
+ "loss": 7.4550371170043945,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.14400412142276764,
+ "learning_rate": 0.0006,
+ "loss": 7.46645450592041,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.16108646988868713,
+ "learning_rate": 0.0006,
+ "loss": 7.452724456787109,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.1659977287054062,
+ "learning_rate": 0.0006,
+ "loss": 7.441495418548584,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.09798736870288849,
+ "learning_rate": 0.0006,
+ "loss": 7.453086853027344,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.17251403629779816,
+ "learning_rate": 0.0006,
+ "loss": 7.42927360534668,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.11626467853784561,
+ "learning_rate": 0.0006,
+ "loss": 7.463476181030273,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.16235218942165375,
+ "learning_rate": 0.0006,
+ "loss": 7.43464469909668,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.141210675239563,
+ "learning_rate": 0.0006,
+ "loss": 7.434066295623779,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.10119029134511948,
+ "learning_rate": 0.0006,
+ "loss": 7.432812213897705,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.1677795648574829,
+ "learning_rate": 0.0006,
+ "loss": 7.401336669921875,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.15185703337192535,
+ "learning_rate": 0.0006,
+ "loss": 7.408813953399658,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.10933516919612885,
+ "learning_rate": 0.0006,
+ "loss": 7.440712928771973,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.18483813107013702,
+ "learning_rate": 0.0006,
+ "loss": 7.420928955078125,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.16304557025432587,
+ "learning_rate": 0.0006,
+ "loss": 7.422573089599609,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.10511505603790283,
+ "learning_rate": 0.0006,
+ "loss": 7.414434909820557,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.16721735894680023,
+ "learning_rate": 0.0006,
+ "loss": 7.430843353271484,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.1958962082862854,
+ "learning_rate": 0.0006,
+ "loss": 7.454378128051758,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.1712699681520462,
+ "learning_rate": 0.0006,
+ "loss": 7.442202568054199,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.11664750427007675,
+ "learning_rate": 0.0006,
+ "loss": 7.4285125732421875,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.12337825447320938,
+ "learning_rate": 0.0006,
+ "loss": 7.428487777709961,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.16938446462154388,
+ "learning_rate": 0.0006,
+ "loss": 7.434096336364746,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.24545668065547943,
+ "learning_rate": 0.0006,
+ "loss": 7.394075870513916,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.3402247130870819,
+ "learning_rate": 0.0006,
+ "loss": 7.414653778076172,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.36810728907585144,
+ "learning_rate": 0.0006,
+ "loss": 7.424988746643066,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.21281471848487854,
+ "learning_rate": 0.0006,
+ "loss": 7.411754608154297,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.1980692744255066,
+ "learning_rate": 0.0006,
+ "loss": 7.40480899810791,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.27005308866500854,
+ "learning_rate": 0.0006,
+ "loss": 7.423867225646973,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.16427795588970184,
+ "learning_rate": 0.0006,
+ "loss": 7.4098711013793945,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.17707839608192444,
+ "learning_rate": 0.0006,
+ "loss": 7.415262222290039,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.1794007420539856,
+ "learning_rate": 0.0006,
+ "loss": 7.418964385986328,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.231395423412323,
+ "learning_rate": 0.0006,
+ "loss": 7.39762020111084,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.13338525593280792,
+ "learning_rate": 0.0006,
+ "loss": 7.373764991760254,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.13533078134059906,
+ "learning_rate": 0.0006,
+ "loss": 7.366655349731445,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.17013047635555267,
+ "learning_rate": 0.0006,
+ "loss": 7.378033638000488,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.4123454093933105,
+ "eval_runtime": 43.8729,
+ "eval_samples_per_second": 55.661,
+ "eval_steps_per_second": 3.487,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.11198635399341583,
+ "learning_rate": 0.0006,
+ "loss": 7.378727912902832,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.1774112433195114,
+ "learning_rate": 0.0006,
+ "loss": 7.369501113891602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.27899402379989624,
+ "learning_rate": 0.0006,
+ "loss": 7.399102687835693,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.4848053455352783,
+ "learning_rate": 0.0006,
+ "loss": 7.372189521789551,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.604353666305542,
+ "learning_rate": 0.0006,
+ "loss": 7.438274383544922,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3621702790260315,
+ "learning_rate": 0.0006,
+ "loss": 7.400620460510254,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.2087877094745636,
+ "learning_rate": 0.0006,
+ "loss": 7.36997127532959,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3555629551410675,
+ "learning_rate": 0.0006,
+ "loss": 7.394223213195801,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.4509451687335968,
+ "learning_rate": 0.0006,
+ "loss": 7.385214328765869,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.7136989831924438,
+ "learning_rate": 0.0006,
+ "loss": 7.376396179199219,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.382146954536438,
+ "learning_rate": 0.0006,
+ "loss": 7.398931980133057,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.29745835065841675,
+ "learning_rate": 0.0006,
+ "loss": 7.385200500488281,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.22685673832893372,
+ "learning_rate": 0.0006,
+ "loss": 7.382201194763184,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.343770295381546,
+ "learning_rate": 0.0006,
+ "loss": 7.3411102294921875,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.26879584789276123,
+ "learning_rate": 0.0006,
+ "loss": 7.357332229614258,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.2427089512348175,
+ "learning_rate": 0.0006,
+ "loss": 7.363718032836914,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2931700050830841,
+ "learning_rate": 0.0006,
+ "loss": 7.368688583374023,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.13952866196632385,
+ "learning_rate": 0.0006,
+ "loss": 7.364292621612549,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.26854249835014343,
+ "learning_rate": 0.0006,
+ "loss": 7.3626389503479,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.21246272325515747,
+ "learning_rate": 0.0006,
+ "loss": 7.361966609954834,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.15983626246452332,
+ "learning_rate": 0.0006,
+ "loss": 7.367931365966797,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.24395889043807983,
+ "learning_rate": 0.0006,
+ "loss": 7.322544097900391,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.15896999835968018,
+ "learning_rate": 0.0006,
+ "loss": 7.338911533355713,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.24652288854122162,
+ "learning_rate": 0.0006,
+ "loss": 7.344303607940674,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.2133418172597885,
+ "learning_rate": 0.0006,
+ "loss": 7.3513898849487305,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.18094605207443237,
+ "learning_rate": 0.0006,
+ "loss": 7.324538707733154,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.2253016233444214,
+ "learning_rate": 0.0006,
+ "loss": 7.352097511291504,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.15868234634399414,
+ "learning_rate": 0.0006,
+ "loss": 7.301148891448975,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.3204607367515564,
+ "learning_rate": 0.0006,
+ "loss": 7.337883949279785,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.21076281368732452,
+ "learning_rate": 0.0006,
+ "loss": 7.342248916625977,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.23778486251831055,
+ "learning_rate": 0.0006,
+ "loss": 7.310346603393555,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.15573205053806305,
+ "learning_rate": 0.0006,
+ "loss": 7.343023300170898,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.33393287658691406,
+ "learning_rate": 0.0006,
+ "loss": 7.300928592681885,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.35888051986694336,
+ "learning_rate": 0.0006,
+ "loss": 7.297277450561523,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.2832542955875397,
+ "learning_rate": 0.0006,
+ "loss": 7.298312187194824,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.2123432159423828,
+ "learning_rate": 0.0006,
+ "loss": 7.29883337020874,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.30314815044403076,
+ "learning_rate": 0.0006,
+ "loss": 7.285894393920898,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.35035452246665955,
+ "learning_rate": 0.0006,
+ "loss": 7.318349838256836,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.2431941032409668,
+ "learning_rate": 0.0006,
+ "loss": 7.296319961547852,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.3479756712913513,
+ "learning_rate": 0.0006,
+ "loss": 7.3054399490356445,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.2816961109638214,
+ "learning_rate": 0.0006,
+ "loss": 7.270098686218262,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.2909104824066162,
+ "learning_rate": 0.0006,
+ "loss": 7.270987510681152,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.2449629306793213,
+ "learning_rate": 0.0006,
+ "loss": 7.258650779724121,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.39041537046432495,
+ "learning_rate": 0.0006,
+ "loss": 7.294661521911621,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.4115809202194214,
+ "learning_rate": 0.0006,
+ "loss": 7.240309238433838,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.41485708951950073,
+ "learning_rate": 0.0006,
+ "loss": 7.294451713562012,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.49846965074539185,
+ "learning_rate": 0.0006,
+ "loss": 7.252174377441406,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.6144671440124512,
+ "learning_rate": 0.0006,
+ "loss": 7.280319690704346,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.5955181121826172,
+ "learning_rate": 0.0006,
+ "loss": 7.274979591369629,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.2802278697490692,
+ "learning_rate": 0.0006,
+ "loss": 7.270544528961182,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.2788214385509491,
+ "learning_rate": 0.0006,
+ "loss": 7.283371925354004,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.313618540763855,
+ "learning_rate": 0.0006,
+ "loss": 7.256155967712402,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.29027095437049866,
+ "learning_rate": 0.0006,
+ "loss": 7.233058452606201,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.2737275958061218,
+ "learning_rate": 0.0006,
+ "loss": 7.193321704864502,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2631153464317322,
+ "learning_rate": 0.0006,
+ "loss": 7.219632148742676,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.22121192514896393,
+ "learning_rate": 0.0006,
+ "loss": 7.230212211608887,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.23263955116271973,
+ "learning_rate": 0.0006,
+ "loss": 7.209331512451172,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.24149790406227112,
+ "learning_rate": 0.0006,
+ "loss": 7.205179214477539,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.2171594202518463,
+ "learning_rate": 0.0006,
+ "loss": 7.232029914855957,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.26197630167007446,
+ "learning_rate": 0.0006,
+ "loss": 7.184950828552246,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.20011170208454132,
+ "learning_rate": 0.0006,
+ "loss": 7.206712245941162,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.27107346057891846,
+ "learning_rate": 0.0006,
+ "loss": 7.222592353820801,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.4205261170864105,
+ "learning_rate": 0.0006,
+ "loss": 7.1839280128479,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.47731834650039673,
+ "learning_rate": 0.0006,
+ "loss": 7.162832260131836,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.4435124695301056,
+ "learning_rate": 0.0006,
+ "loss": 7.161921501159668,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3114961087703705,
+ "learning_rate": 0.0006,
+ "loss": 7.19951868057251,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.2735799551010132,
+ "learning_rate": 0.0006,
+ "loss": 7.203862190246582,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.23693297803401947,
+ "learning_rate": 0.0006,
+ "loss": 7.183262825012207,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 7.1793999671936035,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.369371622800827,
+ "learning_rate": 0.0006,
+ "loss": 7.187225341796875,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4354340136051178,
+ "learning_rate": 0.0006,
+ "loss": 7.173516273498535,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.596161425113678,
+ "learning_rate": 0.0006,
+ "loss": 7.172244548797607,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 7.2277116775512695,
+ "eval_runtime": 43.8371,
+ "eval_samples_per_second": 55.706,
+ "eval_steps_per_second": 3.49,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.6943187713623047,
+ "learning_rate": 0.0006,
+ "loss": 7.192678451538086,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.6334913372993469,
+ "learning_rate": 0.0006,
+ "loss": 7.18038272857666,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.9394033551216125,
+ "learning_rate": 0.0006,
+ "loss": 7.238675117492676,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.6698894500732422,
+ "learning_rate": 0.0006,
+ "loss": 7.2277421951293945,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.808504045009613,
+ "learning_rate": 0.0006,
+ "loss": 7.177737236022949,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.4508601725101471,
+ "learning_rate": 0.0006,
+ "loss": 7.193819999694824,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.5354502201080322,
+ "learning_rate": 0.0006,
+ "loss": 7.20770263671875,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.38915351033210754,
+ "learning_rate": 0.0006,
+ "loss": 7.1766557693481445,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.3691655695438385,
+ "learning_rate": 0.0006,
+ "loss": 7.178019046783447,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.33945342898368835,
+ "learning_rate": 0.0006,
+ "loss": 7.19429874420166,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.32922592759132385,
+ "learning_rate": 0.0006,
+ "loss": 7.120317459106445,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.3513849675655365,
+ "learning_rate": 0.0006,
+ "loss": 7.142359733581543,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.30255037546157837,
+ "learning_rate": 0.0006,
+ "loss": 7.152212142944336,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.2880764305591583,
+ "learning_rate": 0.0006,
+ "loss": 7.121652603149414,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.25499045848846436,
+ "learning_rate": 0.0006,
+ "loss": 7.140979766845703,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.23907481133937836,
+ "learning_rate": 0.0006,
+ "loss": 7.176339149475098,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.17425109446048737,
+ "learning_rate": 0.0006,
+ "loss": 7.111868381500244,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.20220792293548584,
+ "learning_rate": 0.0006,
+ "loss": 7.111875534057617,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.18983975052833557,
+ "learning_rate": 0.0006,
+ "loss": 7.15122127532959,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.1762138307094574,
+ "learning_rate": 0.0006,
+ "loss": 7.097733497619629,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.17428478598594666,
+ "learning_rate": 0.0006,
+ "loss": 7.135674476623535,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.20386698842048645,
+ "learning_rate": 0.0006,
+ "loss": 7.069553375244141,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.15233081579208374,
+ "learning_rate": 0.0006,
+ "loss": 7.109054088592529,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.17089344561100006,
+ "learning_rate": 0.0006,
+ "loss": 7.130184650421143,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.17807772755622864,
+ "learning_rate": 0.0006,
+ "loss": 7.095787525177002,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.16838936507701874,
+ "learning_rate": 0.0006,
+ "loss": 7.114252090454102,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.16293153166770935,
+ "learning_rate": 0.0006,
+ "loss": 7.074337482452393,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.16128183901309967,
+ "learning_rate": 0.0006,
+ "loss": 7.063385009765625,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.1928701102733612,
+ "learning_rate": 0.0006,
+ "loss": 7.051932334899902,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.20493793487548828,
+ "learning_rate": 0.0006,
+ "loss": 7.077460289001465,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.2293575257062912,
+ "learning_rate": 0.0006,
+ "loss": 7.078977584838867,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.18689008057117462,
+ "learning_rate": 0.0006,
+ "loss": 7.059084892272949,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.19842873513698578,
+ "learning_rate": 0.0006,
+ "loss": 7.0738420486450195,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.3007665276527405,
+ "learning_rate": 0.0006,
+ "loss": 7.076623916625977,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.4958188831806183,
+ "learning_rate": 0.0006,
+ "loss": 7.082813262939453,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.5846964716911316,
+ "learning_rate": 0.0006,
+ "loss": 7.047091484069824,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.5116973519325256,
+ "learning_rate": 0.0006,
+ "loss": 6.983251094818115,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.6879552006721497,
+ "learning_rate": 0.0006,
+ "loss": 7.006407737731934,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.7615530490875244,
+ "learning_rate": 0.0006,
+ "loss": 7.069635391235352,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8079577684402466,
+ "learning_rate": 0.0006,
+ "loss": 7.107845783233643,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.6537765264511108,
+ "learning_rate": 0.0006,
+ "loss": 7.081098556518555,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.46238747239112854,
+ "learning_rate": 0.0006,
+ "loss": 7.082648277282715,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.4576103687286377,
+ "learning_rate": 0.0006,
+ "loss": 7.0410237312316895,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.33660757541656494,
+ "learning_rate": 0.0006,
+ "loss": 7.045464038848877,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.47639480233192444,
+ "learning_rate": 0.0006,
+ "loss": 7.022253036499023,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.30574870109558105,
+ "learning_rate": 0.0006,
+ "loss": 6.974809646606445,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.2908029854297638,
+ "learning_rate": 0.0006,
+ "loss": 7.023398399353027,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.2543371021747589,
+ "learning_rate": 0.0006,
+ "loss": 7.032631874084473,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.2172250747680664,
+ "learning_rate": 0.0006,
+ "loss": 7.005949974060059,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.2803422212600708,
+ "learning_rate": 0.0006,
+ "loss": 6.959385871887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.2104235142469406,
+ "learning_rate": 0.0006,
+ "loss": 7.014190673828125,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.29399633407592773,
+ "learning_rate": 0.0006,
+ "loss": 7.024015426635742,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.25223857164382935,
+ "learning_rate": 0.0006,
+ "loss": 6.9788408279418945,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.24702847003936768,
+ "learning_rate": 0.0006,
+ "loss": 6.916315078735352,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.32983389496803284,
+ "learning_rate": 0.0006,
+ "loss": 7.016416549682617,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.40918615460395813,
+ "learning_rate": 0.0006,
+ "loss": 6.979311943054199,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.40026846528053284,
+ "learning_rate": 0.0006,
+ "loss": 6.964433670043945,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.3424563705921173,
+ "learning_rate": 0.0006,
+ "loss": 6.944975852966309,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.35519829392433167,
+ "learning_rate": 0.0006,
+ "loss": 6.957089900970459,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.3994079530239105,
+ "learning_rate": 0.0006,
+ "loss": 6.9287567138671875,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.3062368929386139,
+ "learning_rate": 0.0006,
+ "loss": 6.968643665313721,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.3296017348766327,
+ "learning_rate": 0.0006,
+ "loss": 6.96293306350708,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.23638883233070374,
+ "learning_rate": 0.0006,
+ "loss": 6.906896591186523,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.32885977625846863,
+ "learning_rate": 0.0006,
+ "loss": 6.88896369934082,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.3043595552444458,
+ "learning_rate": 0.0006,
+ "loss": 6.944347381591797,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.3249066472053528,
+ "learning_rate": 0.0006,
+ "loss": 6.933192253112793,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.35260462760925293,
+ "learning_rate": 0.0006,
+ "loss": 6.953738212585449,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.3615424633026123,
+ "learning_rate": 0.0006,
+ "loss": 6.929230690002441,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.3885534405708313,
+ "learning_rate": 0.0006,
+ "loss": 6.882650375366211,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.5568890571594238,
+ "learning_rate": 0.0006,
+ "loss": 6.941799163818359,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.4770040214061737,
+ "learning_rate": 0.0006,
+ "loss": 6.916370391845703,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.34664037823677063,
+ "learning_rate": 0.0006,
+ "loss": 6.911777496337891,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.43003302812576294,
+ "learning_rate": 0.0006,
+ "loss": 6.907038688659668,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.31611213088035583,
+ "learning_rate": 0.0006,
+ "loss": 6.905763626098633,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4253947138786316,
+ "learning_rate": 0.0006,
+ "loss": 6.880043983459473,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.3813386857509613,
+ "learning_rate": 0.0006,
+ "loss": 6.945316314697266,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.35442763566970825,
+ "learning_rate": 0.0006,
+ "loss": 6.854349136352539,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.38193321228027344,
+ "learning_rate": 0.0006,
+ "loss": 6.905119895935059,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.28014835715293884,
+ "learning_rate": 0.0006,
+ "loss": 6.8911309242248535,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.25916025042533875,
+ "learning_rate": 0.0006,
+ "loss": 6.895605087280273,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.2623496949672699,
+ "learning_rate": 0.0006,
+ "loss": 6.850434303283691,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.29736328125,
+ "learning_rate": 0.0006,
+ "loss": 6.900381088256836,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.261861115694046,
+ "learning_rate": 0.0006,
+ "loss": 6.855595588684082,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.21060509979724884,
+ "learning_rate": 0.0006,
+ "loss": 6.8173675537109375,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.23517587780952454,
+ "learning_rate": 0.0006,
+ "loss": 6.908602714538574,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.22007179260253906,
+ "learning_rate": 0.0006,
+ "loss": 6.879385948181152,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.18281681835651398,
+ "learning_rate": 0.0006,
+ "loss": 6.825986385345459,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.2735491394996643,
+ "learning_rate": 0.0006,
+ "loss": 6.824638843536377,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.31025663018226624,
+ "learning_rate": 0.0006,
+ "loss": 6.790165901184082,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.2943422198295593,
+ "learning_rate": 0.0006,
+ "loss": 6.826445579528809,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.3197483718395233,
+ "learning_rate": 0.0006,
+ "loss": 6.861552715301514,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.41383418440818787,
+ "learning_rate": 0.0006,
+ "loss": 6.840981960296631,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.6787397861480713,
+ "learning_rate": 0.0006,
+ "loss": 6.827180862426758,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.8793061375617981,
+ "learning_rate": 0.0006,
+ "loss": 6.853043079376221,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.6034865379333496,
+ "learning_rate": 0.0006,
+ "loss": 6.808193206787109,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.6299529671669006,
+ "learning_rate": 0.0006,
+ "loss": 6.852898597717285,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.5380269885063171,
+ "learning_rate": 0.0006,
+ "loss": 6.884943962097168,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.5388438105583191,
+ "learning_rate": 0.0006,
+ "loss": 6.851771354675293,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.6895723342895508,
+ "learning_rate": 0.0006,
+ "loss": 6.8510847091674805,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.6458063125610352,
+ "learning_rate": 0.0006,
+ "loss": 6.821014404296875,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.5137446522712708,
+ "learning_rate": 0.0006,
+ "loss": 6.847311973571777,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.6917193531990051,
+ "learning_rate": 0.0006,
+ "loss": 6.829414367675781,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.5819533467292786,
+ "learning_rate": 0.0006,
+ "loss": 6.884113311767578,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.42149919271469116,
+ "learning_rate": 0.0006,
+ "loss": 6.814886093139648,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.4692433476448059,
+ "learning_rate": 0.0006,
+ "loss": 6.836569309234619,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.386050820350647,
+ "learning_rate": 0.0006,
+ "loss": 6.7614030838012695,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.3057600259780884,
+ "learning_rate": 0.0006,
+ "loss": 6.813638210296631,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.34246382117271423,
+ "learning_rate": 0.0006,
+ "loss": 6.810598850250244,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.2884293794631958,
+ "learning_rate": 0.0006,
+ "loss": 6.818202018737793,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.2543860077857971,
+ "learning_rate": 0.0006,
+ "loss": 6.803103446960449,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.3036445081233978,
+ "learning_rate": 0.0006,
+ "loss": 6.781904220581055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.19102950394153595,
+ "learning_rate": 0.0006,
+ "loss": 6.829860687255859,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.2270991951227188,
+ "learning_rate": 0.0006,
+ "loss": 6.826030731201172,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.19449156522750854,
+ "learning_rate": 0.0006,
+ "loss": 6.809983253479004,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.20503748953342438,
+ "learning_rate": 0.0006,
+ "loss": 6.791386604309082,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.16570241749286652,
+ "learning_rate": 0.0006,
+ "loss": 6.748939514160156,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.16903091967105865,
+ "learning_rate": 0.0006,
+ "loss": 6.781308174133301,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.18656553328037262,
+ "learning_rate": 0.0006,
+ "loss": 6.753606796264648,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.21860167384147644,
+ "learning_rate": 0.0006,
+ "loss": 6.764520168304443,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.25753432512283325,
+ "learning_rate": 0.0006,
+ "loss": 6.816551685333252,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.3112996220588684,
+ "learning_rate": 0.0006,
+ "loss": 6.691162109375,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.37410297989845276,
+ "learning_rate": 0.0006,
+ "loss": 6.714019775390625,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.35096225142478943,
+ "learning_rate": 0.0006,
+ "loss": 6.751519680023193,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.2375858873128891,
+ "learning_rate": 0.0006,
+ "loss": 6.750519752502441,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.22767139971256256,
+ "learning_rate": 0.0006,
+ "loss": 6.701960563659668,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.2831069529056549,
+ "learning_rate": 0.0006,
+ "loss": 6.751977920532227,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.21699653565883636,
+ "learning_rate": 0.0006,
+ "loss": 6.680997848510742,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.1879044473171234,
+ "learning_rate": 0.0006,
+ "loss": 6.721236705780029,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.20410527288913727,
+ "learning_rate": 0.0006,
+ "loss": 6.742780685424805,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.1745269000530243,
+ "learning_rate": 0.0006,
+ "loss": 6.74809455871582,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.23389488458633423,
+ "learning_rate": 0.0006,
+ "loss": 6.7095842361450195,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.20933692157268524,
+ "learning_rate": 0.0006,
+ "loss": 6.678476810455322,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.26075083017349243,
+ "learning_rate": 0.0006,
+ "loss": 6.749744892120361,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.3021028935909271,
+ "learning_rate": 0.0006,
+ "loss": 6.750411033630371,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.35684287548065186,
+ "learning_rate": 0.0006,
+ "loss": 6.687806606292725,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.3839452862739563,
+ "learning_rate": 0.0006,
+ "loss": 6.698683261871338,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.3616754114627838,
+ "learning_rate": 0.0006,
+ "loss": 6.69844913482666,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.35643985867500305,
+ "learning_rate": 0.0006,
+ "loss": 6.715807914733887,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.4223266839981079,
+ "learning_rate": 0.0006,
+ "loss": 6.598971366882324,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.612011194229126,
+ "learning_rate": 0.0006,
+ "loss": 6.722421646118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.6449596285820007,
+ "learning_rate": 0.0006,
+ "loss": 6.651342391967773,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.584477424621582,
+ "learning_rate": 0.0006,
+ "loss": 6.686327934265137,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.5838497281074524,
+ "learning_rate": 0.0006,
+ "loss": 6.698613166809082,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.5723262429237366,
+ "learning_rate": 0.0006,
+ "loss": 6.7668304443359375,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 6.769902229309082,
+ "eval_runtime": 43.8681,
+ "eval_samples_per_second": 55.667,
+ "eval_steps_per_second": 3.488,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.46897390484809875,
+ "learning_rate": 0.0006,
+ "loss": 6.671019554138184,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.49461546540260315,
+ "learning_rate": 0.0006,
+ "loss": 6.663300037384033,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.5353936553001404,
+ "learning_rate": 0.0006,
+ "loss": 6.743340015411377,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6086093783378601,
+ "learning_rate": 0.0006,
+ "loss": 6.657721519470215,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5271756649017334,
+ "learning_rate": 0.0006,
+ "loss": 6.713525772094727,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4154670536518097,
+ "learning_rate": 0.0006,
+ "loss": 6.714386463165283,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.429561048746109,
+ "learning_rate": 0.0006,
+ "loss": 6.730536460876465,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.41708284616470337,
+ "learning_rate": 0.0006,
+ "loss": 6.663235664367676,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.3878670334815979,
+ "learning_rate": 0.0006,
+ "loss": 6.681318283081055,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.4383007287979126,
+ "learning_rate": 0.0006,
+ "loss": 6.677402496337891,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.43918395042419434,
+ "learning_rate": 0.0006,
+ "loss": 6.682842254638672,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.38371148705482483,
+ "learning_rate": 0.0006,
+ "loss": 6.6374897956848145,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.29912295937538147,
+ "learning_rate": 0.0006,
+ "loss": 6.695286750793457,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.3217468559741974,
+ "learning_rate": 0.0006,
+ "loss": 6.662800312042236,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.23979242146015167,
+ "learning_rate": 0.0006,
+ "loss": 6.644646644592285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.2286955863237381,
+ "learning_rate": 0.0006,
+ "loss": 6.610865592956543,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.23560768365859985,
+ "learning_rate": 0.0006,
+ "loss": 6.610419273376465,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.22773849964141846,
+ "learning_rate": 0.0006,
+ "loss": 6.605184555053711,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.2129383087158203,
+ "learning_rate": 0.0006,
+ "loss": 6.591241836547852,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.24301697313785553,
+ "learning_rate": 0.0006,
+ "loss": 6.60423469543457,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20627252757549286,
+ "learning_rate": 0.0006,
+ "loss": 6.626827716827393,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.17399083077907562,
+ "learning_rate": 0.0006,
+ "loss": 6.61180305480957,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.2270943820476532,
+ "learning_rate": 0.0006,
+ "loss": 6.600848197937012,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.21250231564044952,
+ "learning_rate": 0.0006,
+ "loss": 6.567562103271484,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.22269941866397858,
+ "learning_rate": 0.0006,
+ "loss": 6.627359867095947,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.248787522315979,
+ "learning_rate": 0.0006,
+ "loss": 6.619935989379883,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2814922034740448,
+ "learning_rate": 0.0006,
+ "loss": 6.500207424163818,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.2392471432685852,
+ "learning_rate": 0.0006,
+ "loss": 6.593841552734375,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.2575526535511017,
+ "learning_rate": 0.0006,
+ "loss": 6.567001819610596,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.29118093848228455,
+ "learning_rate": 0.0006,
+ "loss": 6.580816268920898,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.3637966513633728,
+ "learning_rate": 0.0006,
+ "loss": 6.60838508605957,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.40012624859809875,
+ "learning_rate": 0.0006,
+ "loss": 6.614717483520508,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4411345422267914,
+ "learning_rate": 0.0006,
+ "loss": 6.549026012420654,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.45780614018440247,
+ "learning_rate": 0.0006,
+ "loss": 6.575192451477051,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.47889280319213867,
+ "learning_rate": 0.0006,
+ "loss": 6.582387924194336,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.5207021236419678,
+ "learning_rate": 0.0006,
+ "loss": 6.541580677032471,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.5414209961891174,
+ "learning_rate": 0.0006,
+ "loss": 6.497028350830078,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.6961405277252197,
+ "learning_rate": 0.0006,
+ "loss": 6.593513488769531,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.634310245513916,
+ "learning_rate": 0.0006,
+ "loss": 6.6731672286987305,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.5633302330970764,
+ "learning_rate": 0.0006,
+ "loss": 6.608777046203613,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.6767802834510803,
+ "learning_rate": 0.0006,
+ "loss": 6.566585540771484,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.7562325596809387,
+ "learning_rate": 0.0006,
+ "loss": 6.559937477111816,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 1.1143726110458374,
+ "learning_rate": 0.0006,
+ "loss": 6.689983367919922,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.7430603504180908,
+ "learning_rate": 0.0006,
+ "loss": 6.679866790771484,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.45640185475349426,
+ "learning_rate": 0.0006,
+ "loss": 6.577699184417725,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.6197953224182129,
+ "learning_rate": 0.0006,
+ "loss": 6.685911178588867,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.5935308337211609,
+ "learning_rate": 0.0006,
+ "loss": 6.586037635803223,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.4048541784286499,
+ "learning_rate": 0.0006,
+ "loss": 6.602471828460693,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.364797979593277,
+ "learning_rate": 0.0006,
+ "loss": 6.585397720336914,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.264461874961853,
+ "learning_rate": 0.0006,
+ "loss": 6.56767463684082,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.24995212256908417,
+ "learning_rate": 0.0006,
+ "loss": 6.629153728485107,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.24154946208000183,
+ "learning_rate": 0.0006,
+ "loss": 6.604824066162109,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.25432339310646057,
+ "learning_rate": 0.0006,
+ "loss": 6.512155532836914,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2657161056995392,
+ "learning_rate": 0.0006,
+ "loss": 6.602592468261719,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.18710561096668243,
+ "learning_rate": 0.0006,
+ "loss": 6.59340238571167,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.23157885670661926,
+ "learning_rate": 0.0006,
+ "loss": 6.584042072296143,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.21244847774505615,
+ "learning_rate": 0.0006,
+ "loss": 6.562799453735352,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.22010256350040436,
+ "learning_rate": 0.0006,
+ "loss": 6.494032859802246,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.18945178389549255,
+ "learning_rate": 0.0006,
+ "loss": 6.552926063537598,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.18794186413288116,
+ "learning_rate": 0.0006,
+ "loss": 6.532886981964111,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.20163418352603912,
+ "learning_rate": 0.0006,
+ "loss": 6.642617702484131,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.15298503637313843,
+ "learning_rate": 0.0006,
+ "loss": 6.554229736328125,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.15346333384513855,
+ "learning_rate": 0.0006,
+ "loss": 6.491065979003906,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.16474273800849915,
+ "learning_rate": 0.0006,
+ "loss": 6.4936323165893555,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.1609218269586563,
+ "learning_rate": 0.0006,
+ "loss": 6.556031227111816,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.16209904849529266,
+ "learning_rate": 0.0006,
+ "loss": 6.50377893447876,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.1896190494298935,
+ "learning_rate": 0.0006,
+ "loss": 6.556982040405273,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.24675355851650238,
+ "learning_rate": 0.0006,
+ "loss": 6.487142562866211,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.2641115188598633,
+ "learning_rate": 0.0006,
+ "loss": 6.389120578765869,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.23698757588863373,
+ "learning_rate": 0.0006,
+ "loss": 6.501721382141113,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.21895459294319153,
+ "learning_rate": 0.0006,
+ "loss": 6.491856575012207,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.25290653109550476,
+ "learning_rate": 0.0006,
+ "loss": 6.451563358306885,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 6.571761131286621,
+ "eval_runtime": 43.9297,
+ "eval_samples_per_second": 55.589,
+ "eval_steps_per_second": 3.483,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.24718300998210907,
+ "learning_rate": 0.0006,
+ "loss": 6.4723405838012695,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.23145692050457,
+ "learning_rate": 0.0006,
+ "loss": 6.442243576049805,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.23721013963222504,
+ "learning_rate": 0.0006,
+ "loss": 6.469328880310059,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.23265263438224792,
+ "learning_rate": 0.0006,
+ "loss": 6.457787990570068,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.27898839116096497,
+ "learning_rate": 0.0006,
+ "loss": 6.505729675292969,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.38966473937034607,
+ "learning_rate": 0.0006,
+ "loss": 6.47234582901001,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.38036301732063293,
+ "learning_rate": 0.0006,
+ "loss": 6.449349403381348,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2777450680732727,
+ "learning_rate": 0.0006,
+ "loss": 6.373193740844727,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.3959980309009552,
+ "learning_rate": 0.0006,
+ "loss": 6.426785469055176,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.46047911047935486,
+ "learning_rate": 0.0006,
+ "loss": 6.480216979980469,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.42982015013694763,
+ "learning_rate": 0.0006,
+ "loss": 6.414214134216309,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.4650203585624695,
+ "learning_rate": 0.0006,
+ "loss": 6.479660987854004,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.5091995000839233,
+ "learning_rate": 0.0006,
+ "loss": 6.451532363891602,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.44366511702537537,
+ "learning_rate": 0.0006,
+ "loss": 6.466494083404541,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.441888689994812,
+ "learning_rate": 0.0006,
+ "loss": 6.510214805603027,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.41339823603630066,
+ "learning_rate": 0.0006,
+ "loss": 6.429603576660156,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.3867740333080292,
+ "learning_rate": 0.0006,
+ "loss": 6.506868839263916,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.34132787585258484,
+ "learning_rate": 0.0006,
+ "loss": 6.4601287841796875,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.35449329018592834,
+ "learning_rate": 0.0006,
+ "loss": 6.42459774017334,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.325230211019516,
+ "learning_rate": 0.0006,
+ "loss": 6.408831596374512,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.24465760588645935,
+ "learning_rate": 0.0006,
+ "loss": 6.430312633514404,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.2936073839664459,
+ "learning_rate": 0.0006,
+ "loss": 6.393385887145996,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.2826905846595764,
+ "learning_rate": 0.0006,
+ "loss": 6.445387363433838,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.25269463658332825,
+ "learning_rate": 0.0006,
+ "loss": 6.414823055267334,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.24569527804851532,
+ "learning_rate": 0.0006,
+ "loss": 6.407116889953613,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.258499413728714,
+ "learning_rate": 0.0006,
+ "loss": 6.368157386779785,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.2946305572986603,
+ "learning_rate": 0.0006,
+ "loss": 6.4434814453125,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.39928701519966125,
+ "learning_rate": 0.0006,
+ "loss": 6.414788246154785,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.37927713990211487,
+ "learning_rate": 0.0006,
+ "loss": 6.414919853210449,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.36300504207611084,
+ "learning_rate": 0.0006,
+ "loss": 6.379022598266602,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.3134414255619049,
+ "learning_rate": 0.0006,
+ "loss": 6.412941932678223,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.2627127766609192,
+ "learning_rate": 0.0006,
+ "loss": 6.3414082527160645,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.2588593065738678,
+ "learning_rate": 0.0006,
+ "loss": 6.368529319763184,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.2516137361526489,
+ "learning_rate": 0.0006,
+ "loss": 6.402078628540039,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.29985669255256653,
+ "learning_rate": 0.0006,
+ "loss": 6.36871862411499,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.32613083720207214,
+ "learning_rate": 0.0006,
+ "loss": 6.372924327850342,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3590388000011444,
+ "learning_rate": 0.0006,
+ "loss": 6.272615432739258,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.3495195209980011,
+ "learning_rate": 0.0006,
+ "loss": 6.389149188995361,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.32729077339172363,
+ "learning_rate": 0.0006,
+ "loss": 6.340854644775391,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.31308189034461975,
+ "learning_rate": 0.0006,
+ "loss": 6.405827522277832,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.32632824778556824,
+ "learning_rate": 0.0006,
+ "loss": 6.324387550354004,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.43531352281570435,
+ "learning_rate": 0.0006,
+ "loss": 6.421856880187988,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.5146081447601318,
+ "learning_rate": 0.0006,
+ "loss": 6.380470275878906,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.4541368782520294,
+ "learning_rate": 0.0006,
+ "loss": 6.353880882263184,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.43550533056259155,
+ "learning_rate": 0.0006,
+ "loss": 6.343443393707275,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.44508445262908936,
+ "learning_rate": 0.0006,
+ "loss": 6.376766204833984,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.5248288512229919,
+ "learning_rate": 0.0006,
+ "loss": 6.450338840484619,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.4469726085662842,
+ "learning_rate": 0.0006,
+ "loss": 6.2944016456604,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.401665598154068,
+ "learning_rate": 0.0006,
+ "loss": 6.313453674316406,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.35024645924568176,
+ "learning_rate": 0.0006,
+ "loss": 6.413942337036133,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.3522147238254547,
+ "learning_rate": 0.0006,
+ "loss": 6.3543009757995605,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.3306400775909424,
+ "learning_rate": 0.0006,
+ "loss": 6.408757209777832,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.39752131700515747,
+ "learning_rate": 0.0006,
+ "loss": 6.38494873046875,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.37128475308418274,
+ "learning_rate": 0.0006,
+ "loss": 6.395086288452148,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.4298363924026489,
+ "learning_rate": 0.0006,
+ "loss": 6.380875587463379,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.42080333828926086,
+ "learning_rate": 0.0006,
+ "loss": 6.3387298583984375,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.4242957532405853,
+ "learning_rate": 0.0006,
+ "loss": 6.3410749435424805,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.38402438163757324,
+ "learning_rate": 0.0006,
+ "loss": 6.408957481384277,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.32325103878974915,
+ "learning_rate": 0.0006,
+ "loss": 6.341658115386963,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3682691752910614,
+ "learning_rate": 0.0006,
+ "loss": 6.328590393066406,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.34359028935432434,
+ "learning_rate": 0.0006,
+ "loss": 6.362915992736816,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.32525840401649475,
+ "learning_rate": 0.0006,
+ "loss": 6.369063377380371,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.3142130970954895,
+ "learning_rate": 0.0006,
+ "loss": 6.291128158569336,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.25559425354003906,
+ "learning_rate": 0.0006,
+ "loss": 6.383067607879639,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.31271371245384216,
+ "learning_rate": 0.0006,
+ "loss": 6.343100070953369,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.2802045941352844,
+ "learning_rate": 0.0006,
+ "loss": 6.249299049377441,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.2745957374572754,
+ "learning_rate": 0.0006,
+ "loss": 6.247655868530273,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.2939384877681732,
+ "learning_rate": 0.0006,
+ "loss": 6.3545942306518555,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.31470295786857605,
+ "learning_rate": 0.0006,
+ "loss": 6.339024066925049,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.3153112232685089,
+ "learning_rate": 0.0006,
+ "loss": 6.345990180969238,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3306496739387512,
+ "learning_rate": 0.0006,
+ "loss": 6.200712203979492,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.3141447901725769,
+ "learning_rate": 0.0006,
+ "loss": 6.296079635620117,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 6.4192891120910645,
+ "eval_runtime": 43.962,
+ "eval_samples_per_second": 55.548,
+ "eval_steps_per_second": 3.48,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.27133846282958984,
+ "learning_rate": 0.0006,
+ "loss": 6.2225446701049805,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.23633569478988647,
+ "learning_rate": 0.0006,
+ "loss": 6.303184509277344,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.23964911699295044,
+ "learning_rate": 0.0006,
+ "loss": 6.271107196807861,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.24484269320964813,
+ "learning_rate": 0.0006,
+ "loss": 6.2634806632995605,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.22390882670879364,
+ "learning_rate": 0.0006,
+ "loss": 6.228469371795654,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.21165794134140015,
+ "learning_rate": 0.0006,
+ "loss": 6.1698455810546875,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.2368468940258026,
+ "learning_rate": 0.0006,
+ "loss": 6.391925811767578,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.25719738006591797,
+ "learning_rate": 0.0006,
+ "loss": 6.2425994873046875,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.26159027218818665,
+ "learning_rate": 0.0006,
+ "loss": 6.292510986328125,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.22013162076473236,
+ "learning_rate": 0.0006,
+ "loss": 6.241815567016602,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.24920926988124847,
+ "learning_rate": 0.0006,
+ "loss": 6.298157691955566,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.252931147813797,
+ "learning_rate": 0.0006,
+ "loss": 6.198716163635254,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.2551969587802887,
+ "learning_rate": 0.0006,
+ "loss": 6.29302978515625,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.3093789517879486,
+ "learning_rate": 0.0006,
+ "loss": 6.25443172454834,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.41590896248817444,
+ "learning_rate": 0.0006,
+ "loss": 6.299040794372559,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.5262776017189026,
+ "learning_rate": 0.0006,
+ "loss": 6.255296230316162,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.6414644122123718,
+ "learning_rate": 0.0006,
+ "loss": 6.2698163986206055,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 1.0792479515075684,
+ "learning_rate": 0.0006,
+ "loss": 6.329158306121826,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 1.1137843132019043,
+ "learning_rate": 0.0006,
+ "loss": 6.412693023681641,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.8267702460289001,
+ "learning_rate": 0.0006,
+ "loss": 6.333863258361816,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.6505829095840454,
+ "learning_rate": 0.0006,
+ "loss": 6.373441696166992,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.643464982509613,
+ "learning_rate": 0.0006,
+ "loss": 6.287293434143066,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.7383758425712585,
+ "learning_rate": 0.0006,
+ "loss": 6.2747039794921875,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.8351980447769165,
+ "learning_rate": 0.0006,
+ "loss": 6.345912456512451,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.6698715686798096,
+ "learning_rate": 0.0006,
+ "loss": 6.383659362792969,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.6866235136985779,
+ "learning_rate": 0.0006,
+ "loss": 6.385272026062012,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.6798795461654663,
+ "learning_rate": 0.0006,
+ "loss": 6.317991256713867,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.6207534670829773,
+ "learning_rate": 0.0006,
+ "loss": 6.3103837966918945,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.5733298659324646,
+ "learning_rate": 0.0006,
+ "loss": 6.362712860107422,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.4456520080566406,
+ "learning_rate": 0.0006,
+ "loss": 6.31395959854126,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.4834206700325012,
+ "learning_rate": 0.0006,
+ "loss": 6.443730354309082,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.36245912313461304,
+ "learning_rate": 0.0006,
+ "loss": 6.278180122375488,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.30097126960754395,
+ "learning_rate": 0.0006,
+ "loss": 6.34881067276001,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.2634623646736145,
+ "learning_rate": 0.0006,
+ "loss": 6.25173807144165,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.28116509318351746,
+ "learning_rate": 0.0006,
+ "loss": 6.2696733474731445,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.23578010499477386,
+ "learning_rate": 0.0006,
+ "loss": 6.225315093994141,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.21885645389556885,
+ "learning_rate": 0.0006,
+ "loss": 6.299158096313477,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2157997488975525,
+ "learning_rate": 0.0006,
+ "loss": 6.204323768615723,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.20451851189136505,
+ "learning_rate": 0.0006,
+ "loss": 6.210858345031738,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.19163936376571655,
+ "learning_rate": 0.0006,
+ "loss": 6.233271598815918,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.2026272714138031,
+ "learning_rate": 0.0006,
+ "loss": 6.221397399902344,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.20133298635482788,
+ "learning_rate": 0.0006,
+ "loss": 6.233098030090332,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.19186054170131683,
+ "learning_rate": 0.0006,
+ "loss": 6.278968811035156,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.20479945838451385,
+ "learning_rate": 0.0006,
+ "loss": 6.288027286529541,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.15553636848926544,
+ "learning_rate": 0.0006,
+ "loss": 6.254487991333008,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.17594791948795319,
+ "learning_rate": 0.0006,
+ "loss": 6.25933313369751,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.16042460501194,
+ "learning_rate": 0.0006,
+ "loss": 6.281538963317871,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.172335684299469,
+ "learning_rate": 0.0006,
+ "loss": 6.137692451477051,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.1465802937746048,
+ "learning_rate": 0.0006,
+ "loss": 6.255125045776367,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.15021121501922607,
+ "learning_rate": 0.0006,
+ "loss": 6.212096214294434,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.15450705587863922,
+ "learning_rate": 0.0006,
+ "loss": 6.19700813293457,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.1636689156293869,
+ "learning_rate": 0.0006,
+ "loss": 6.206218719482422,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.16208192706108093,
+ "learning_rate": 0.0006,
+ "loss": 6.1670732498168945,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.15717796981334686,
+ "learning_rate": 0.0006,
+ "loss": 6.136606693267822,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.1393050253391266,
+ "learning_rate": 0.0006,
+ "loss": 6.234042644500732,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.1486297845840454,
+ "learning_rate": 0.0006,
+ "loss": 6.240458965301514,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.13577783107757568,
+ "learning_rate": 0.0006,
+ "loss": 6.128255844116211,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.16330190002918243,
+ "learning_rate": 0.0006,
+ "loss": 6.188354969024658,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.16014231741428375,
+ "learning_rate": 0.0006,
+ "loss": 6.188694953918457,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.15396200120449066,
+ "learning_rate": 0.0006,
+ "loss": 6.2130231857299805,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.14854513108730316,
+ "learning_rate": 0.0006,
+ "loss": 6.1826934814453125,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.1539020985364914,
+ "learning_rate": 0.0006,
+ "loss": 6.2347893714904785,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.17064358294010162,
+ "learning_rate": 0.0006,
+ "loss": 6.228117942810059,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.16030706465244293,
+ "learning_rate": 0.0006,
+ "loss": 6.133099555969238,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.1734013557434082,
+ "learning_rate": 0.0006,
+ "loss": 6.076104164123535,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.23497602343559265,
+ "learning_rate": 0.0006,
+ "loss": 6.184134483337402,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.27262192964553833,
+ "learning_rate": 0.0006,
+ "loss": 6.092723846435547,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.26083454489707947,
+ "learning_rate": 0.0006,
+ "loss": 6.18111515045166,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.2357817441225052,
+ "learning_rate": 0.0006,
+ "loss": 6.155699729919434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.20198610424995422,
+ "learning_rate": 0.0006,
+ "loss": 6.132438659667969,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.19204901158809662,
+ "learning_rate": 0.0006,
+ "loss": 6.18397855758667,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.27463623881340027,
+ "learning_rate": 0.0006,
+ "loss": 6.217708587646484,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 6.273346424102783,
+ "eval_runtime": 43.834,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.35701796412467957,
+ "learning_rate": 0.0006,
+ "loss": 6.114521026611328,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.43287771940231323,
+ "learning_rate": 0.0006,
+ "loss": 6.058047294616699,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.36878329515457153,
+ "learning_rate": 0.0006,
+ "loss": 6.185087203979492,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.35599812865257263,
+ "learning_rate": 0.0006,
+ "loss": 6.149517059326172,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.34798628091812134,
+ "learning_rate": 0.0006,
+ "loss": 6.065576553344727,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.3117026388645172,
+ "learning_rate": 0.0006,
+ "loss": 6.120299339294434,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.3013622760772705,
+ "learning_rate": 0.0006,
+ "loss": 6.141079902648926,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.34282979369163513,
+ "learning_rate": 0.0006,
+ "loss": 6.057816505432129,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.391835480928421,
+ "learning_rate": 0.0006,
+ "loss": 6.112766265869141,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.34643369913101196,
+ "learning_rate": 0.0006,
+ "loss": 6.080713748931885,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2920789122581482,
+ "learning_rate": 0.0006,
+ "loss": 6.110964775085449,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2951754927635193,
+ "learning_rate": 0.0006,
+ "loss": 6.136922836303711,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.290304571390152,
+ "learning_rate": 0.0006,
+ "loss": 6.114922046661377,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.25352853536605835,
+ "learning_rate": 0.0006,
+ "loss": 6.150857448577881,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.30417194962501526,
+ "learning_rate": 0.0006,
+ "loss": 6.126178741455078,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.33390191197395325,
+ "learning_rate": 0.0006,
+ "loss": 6.155137062072754,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.3213164508342743,
+ "learning_rate": 0.0006,
+ "loss": 6.041496276855469,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.2780022621154785,
+ "learning_rate": 0.0006,
+ "loss": 6.157052040100098,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.3049324154853821,
+ "learning_rate": 0.0006,
+ "loss": 6.164647579193115,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.27533262968063354,
+ "learning_rate": 0.0006,
+ "loss": 6.078222274780273,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.24117007851600647,
+ "learning_rate": 0.0006,
+ "loss": 6.115358352661133,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.2464275360107422,
+ "learning_rate": 0.0006,
+ "loss": 6.090600967407227,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.24364468455314636,
+ "learning_rate": 0.0006,
+ "loss": 6.159808158874512,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2520754635334015,
+ "learning_rate": 0.0006,
+ "loss": 6.017665863037109,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.22658520936965942,
+ "learning_rate": 0.0006,
+ "loss": 6.134740829467773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.24357599020004272,
+ "learning_rate": 0.0006,
+ "loss": 6.112018585205078,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.27817827463150024,
+ "learning_rate": 0.0006,
+ "loss": 6.093548774719238,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.32017260789871216,
+ "learning_rate": 0.0006,
+ "loss": 6.095768928527832,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.33949407935142517,
+ "learning_rate": 0.0006,
+ "loss": 6.06057071685791,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.4282950758934021,
+ "learning_rate": 0.0006,
+ "loss": 6.118317604064941,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.43920406699180603,
+ "learning_rate": 0.0006,
+ "loss": 6.120812892913818,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.35043832659721375,
+ "learning_rate": 0.0006,
+ "loss": 6.012011528015137,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4536541998386383,
+ "learning_rate": 0.0006,
+ "loss": 6.122459411621094,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4026945233345032,
+ "learning_rate": 0.0006,
+ "loss": 6.055920124053955,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.31484556198120117,
+ "learning_rate": 0.0006,
+ "loss": 5.988551139831543,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.378182590007782,
+ "learning_rate": 0.0006,
+ "loss": 6.129339218139648,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.3386235237121582,
+ "learning_rate": 0.0006,
+ "loss": 6.005949974060059,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.346019983291626,
+ "learning_rate": 0.0006,
+ "loss": 6.117867469787598,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.3578963875770569,
+ "learning_rate": 0.0006,
+ "loss": 6.098230838775635,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.33730268478393555,
+ "learning_rate": 0.0006,
+ "loss": 6.025180816650391,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.3155321180820465,
+ "learning_rate": 0.0006,
+ "loss": 6.042684555053711,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.26947784423828125,
+ "learning_rate": 0.0006,
+ "loss": 6.1494526863098145,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.2832205295562744,
+ "learning_rate": 0.0006,
+ "loss": 5.989040374755859,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.25205230712890625,
+ "learning_rate": 0.0006,
+ "loss": 6.023015022277832,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.23451465368270874,
+ "learning_rate": 0.0006,
+ "loss": 6.101784706115723,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.24118894338607788,
+ "learning_rate": 0.0006,
+ "loss": 6.008367538452148,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.21688216924667358,
+ "learning_rate": 0.0006,
+ "loss": 6.054234504699707,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.21046407520771027,
+ "learning_rate": 0.0006,
+ "loss": 6.085782527923584,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.24236257374286652,
+ "learning_rate": 0.0006,
+ "loss": 6.069282531738281,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.26662254333496094,
+ "learning_rate": 0.0006,
+ "loss": 6.0146636962890625,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.27336636185646057,
+ "learning_rate": 0.0006,
+ "loss": 6.000980854034424,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.2610602080821991,
+ "learning_rate": 0.0006,
+ "loss": 6.02379846572876,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2599869966506958,
+ "learning_rate": 0.0006,
+ "loss": 6.1263108253479,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.25347429513931274,
+ "learning_rate": 0.0006,
+ "loss": 5.974973678588867,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.3179565668106079,
+ "learning_rate": 0.0006,
+ "loss": 6.011911392211914,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.3917594850063324,
+ "learning_rate": 0.0006,
+ "loss": 6.020188331604004,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.42581236362457275,
+ "learning_rate": 0.0006,
+ "loss": 6.035971164703369,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.3930552005767822,
+ "learning_rate": 0.0006,
+ "loss": 6.063377380371094,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.40873757004737854,
+ "learning_rate": 0.0006,
+ "loss": 6.045033931732178,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.37749290466308594,
+ "learning_rate": 0.0006,
+ "loss": 6.065659046173096,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.3812621533870697,
+ "learning_rate": 0.0006,
+ "loss": 6.015047073364258,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.4472343921661377,
+ "learning_rate": 0.0006,
+ "loss": 5.985221862792969,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.410028338432312,
+ "learning_rate": 0.0006,
+ "loss": 6.0649871826171875,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.41517892479896545,
+ "learning_rate": 0.0006,
+ "loss": 6.073451042175293,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.4023939371109009,
+ "learning_rate": 0.0006,
+ "loss": 5.988737106323242,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.39611947536468506,
+ "learning_rate": 0.0006,
+ "loss": 6.0932769775390625,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.41837969422340393,
+ "learning_rate": 0.0006,
+ "loss": 6.0583624839782715,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.45293793082237244,
+ "learning_rate": 0.0006,
+ "loss": 6.146656513214111,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.38896480202674866,
+ "learning_rate": 0.0006,
+ "loss": 6.103243827819824,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.38420984148979187,
+ "learning_rate": 0.0006,
+ "loss": 6.064516067504883,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.3382079601287842,
+ "learning_rate": 0.0006,
+ "loss": 6.007835865020752,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.3367147147655487,
+ "learning_rate": 0.0006,
+ "loss": 5.997463226318359,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 6.134459495544434,
+ "eval_runtime": 43.8619,
+ "eval_samples_per_second": 55.675,
+ "eval_steps_per_second": 3.488,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.2982978820800781,
+ "learning_rate": 0.0006,
+ "loss": 6.052591800689697,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.3523862659931183,
+ "learning_rate": 0.0006,
+ "loss": 6.09855318069458,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.3343314230442047,
+ "learning_rate": 0.0006,
+ "loss": 6.058683395385742,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.3181319236755371,
+ "learning_rate": 0.0006,
+ "loss": 6.0426812171936035,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.28128108382225037,
+ "learning_rate": 0.0006,
+ "loss": 5.947657585144043,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.28898635506629944,
+ "learning_rate": 0.0006,
+ "loss": 5.9878458976745605,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.30137068033218384,
+ "learning_rate": 0.0006,
+ "loss": 5.9711689949035645,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3212382197380066,
+ "learning_rate": 0.0006,
+ "loss": 5.925719738006592,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.3437901437282562,
+ "learning_rate": 0.0006,
+ "loss": 5.963557720184326,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.30209118127822876,
+ "learning_rate": 0.0006,
+ "loss": 6.051609039306641,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.2771206796169281,
+ "learning_rate": 0.0006,
+ "loss": 5.962133407592773,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.2518593370914459,
+ "learning_rate": 0.0006,
+ "loss": 6.020097732543945,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.28567832708358765,
+ "learning_rate": 0.0006,
+ "loss": 6.096031188964844,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.25058823823928833,
+ "learning_rate": 0.0006,
+ "loss": 6.059298515319824,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.2046210616827011,
+ "learning_rate": 0.0006,
+ "loss": 5.9421586990356445,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.22448685765266418,
+ "learning_rate": 0.0006,
+ "loss": 6.080745697021484,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.22788450121879578,
+ "learning_rate": 0.0006,
+ "loss": 5.938104629516602,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.26573750376701355,
+ "learning_rate": 0.0006,
+ "loss": 5.973106384277344,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.26524272561073303,
+ "learning_rate": 0.0006,
+ "loss": 5.88787841796875,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2664870619773865,
+ "learning_rate": 0.0006,
+ "loss": 5.907713413238525,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.23447750508785248,
+ "learning_rate": 0.0006,
+ "loss": 5.90394401550293,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.21241699159145355,
+ "learning_rate": 0.0006,
+ "loss": 5.937342643737793,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.22048209607601166,
+ "learning_rate": 0.0006,
+ "loss": 5.900714874267578,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.23776806890964508,
+ "learning_rate": 0.0006,
+ "loss": 5.872601509094238,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.26409798860549927,
+ "learning_rate": 0.0006,
+ "loss": 5.868960380554199,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.25578364729881287,
+ "learning_rate": 0.0006,
+ "loss": 6.016078948974609,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.2326926738023758,
+ "learning_rate": 0.0006,
+ "loss": 6.0241851806640625,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.20940035581588745,
+ "learning_rate": 0.0006,
+ "loss": 5.95332145690918,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.24362404644489288,
+ "learning_rate": 0.0006,
+ "loss": 5.913102149963379,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.29013147950172424,
+ "learning_rate": 0.0006,
+ "loss": 5.997616291046143,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.29396212100982666,
+ "learning_rate": 0.0006,
+ "loss": 5.865334510803223,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.2905840277671814,
+ "learning_rate": 0.0006,
+ "loss": 5.919594764709473,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.2925834655761719,
+ "learning_rate": 0.0006,
+ "loss": 6.0200653076171875,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.32757261395454407,
+ "learning_rate": 0.0006,
+ "loss": 5.935460090637207,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.3171777129173279,
+ "learning_rate": 0.0006,
+ "loss": 5.887059211730957,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.33069008588790894,
+ "learning_rate": 0.0006,
+ "loss": 5.892284393310547,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.3926783502101898,
+ "learning_rate": 0.0006,
+ "loss": 5.966353416442871,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.3445369005203247,
+ "learning_rate": 0.0006,
+ "loss": 5.990660667419434,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.3975822329521179,
+ "learning_rate": 0.0006,
+ "loss": 5.9879560470581055,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.40057969093322754,
+ "learning_rate": 0.0006,
+ "loss": 5.974081993103027,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.3812025785446167,
+ "learning_rate": 0.0006,
+ "loss": 5.954916954040527,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.37875741720199585,
+ "learning_rate": 0.0006,
+ "loss": 5.953755855560303,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.3339402973651886,
+ "learning_rate": 0.0006,
+ "loss": 5.953643798828125,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.3773807883262634,
+ "learning_rate": 0.0006,
+ "loss": 5.920900344848633,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.3619875907897949,
+ "learning_rate": 0.0006,
+ "loss": 6.00272798538208,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.38210874795913696,
+ "learning_rate": 0.0006,
+ "loss": 5.9644999504089355,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.38065019249916077,
+ "learning_rate": 0.0006,
+ "loss": 5.945086479187012,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.3407873511314392,
+ "learning_rate": 0.0006,
+ "loss": 5.926425457000732,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.3026338517665863,
+ "learning_rate": 0.0006,
+ "loss": 5.918400764465332,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.31096121668815613,
+ "learning_rate": 0.0006,
+ "loss": 5.926006317138672,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.3237989544868469,
+ "learning_rate": 0.0006,
+ "loss": 5.934182167053223,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.30130428075790405,
+ "learning_rate": 0.0006,
+ "loss": 5.858344078063965,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.23525774478912354,
+ "learning_rate": 0.0006,
+ "loss": 5.960658550262451,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.23567670583724976,
+ "learning_rate": 0.0006,
+ "loss": 5.855195045471191,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.2267615795135498,
+ "learning_rate": 0.0006,
+ "loss": 5.959880352020264,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2187686413526535,
+ "learning_rate": 0.0006,
+ "loss": 5.966178894042969,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.25064560770988464,
+ "learning_rate": 0.0006,
+ "loss": 5.8697943687438965,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.2993748188018799,
+ "learning_rate": 0.0006,
+ "loss": 5.916175365447998,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.28799113631248474,
+ "learning_rate": 0.0006,
+ "loss": 5.894855499267578,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.3084274232387543,
+ "learning_rate": 0.0006,
+ "loss": 5.850229263305664,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.34822598099708557,
+ "learning_rate": 0.0006,
+ "loss": 5.97930908203125,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.34824326634407043,
+ "learning_rate": 0.0006,
+ "loss": 5.898641586303711,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.3656323254108429,
+ "learning_rate": 0.0006,
+ "loss": 5.922084808349609,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.3589226007461548,
+ "learning_rate": 0.0006,
+ "loss": 5.887510299682617,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.29520174860954285,
+ "learning_rate": 0.0006,
+ "loss": 5.8853960037231445,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.32893887162208557,
+ "learning_rate": 0.0006,
+ "loss": 5.870360374450684,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3407979905605316,
+ "learning_rate": 0.0006,
+ "loss": 5.831633567810059,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.2775689661502838,
+ "learning_rate": 0.0006,
+ "loss": 5.911210060119629,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.24253571033477783,
+ "learning_rate": 0.0006,
+ "loss": 5.897014617919922,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.25398388504981995,
+ "learning_rate": 0.0006,
+ "loss": 5.905571937561035,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.28737613558769226,
+ "learning_rate": 0.0006,
+ "loss": 5.850648880004883,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.31745222210884094,
+ "learning_rate": 0.0006,
+ "loss": 5.842690467834473,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 5.980624675750732,
+ "eval_runtime": 43.8799,
+ "eval_samples_per_second": 55.652,
+ "eval_steps_per_second": 3.487,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.29911327362060547,
+ "learning_rate": 0.0006,
+ "loss": 5.843184947967529,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.3170764148235321,
+ "learning_rate": 0.0006,
+ "loss": 5.937100410461426,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.3595394194126129,
+ "learning_rate": 0.0006,
+ "loss": 5.819394588470459,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.3986411988735199,
+ "learning_rate": 0.0006,
+ "loss": 5.7889604568481445,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.5122131705284119,
+ "learning_rate": 0.0006,
+ "loss": 5.880053520202637,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.6107997894287109,
+ "learning_rate": 0.0006,
+ "loss": 5.940890312194824,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.899748682975769,
+ "learning_rate": 0.0006,
+ "loss": 5.864016532897949,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 2.379981517791748,
+ "learning_rate": 0.0006,
+ "loss": 6.020179748535156,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 1.313679575920105,
+ "learning_rate": 0.0006,
+ "loss": 6.026205062866211,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.9665167331695557,
+ "learning_rate": 0.0006,
+ "loss": 5.956386089324951,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 3.744357109069824,
+ "learning_rate": 0.0006,
+ "loss": 6.0572638511657715,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 1.418748378753662,
+ "learning_rate": 0.0006,
+ "loss": 6.073748588562012,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.8181242942810059,
+ "learning_rate": 0.0006,
+ "loss": 6.074758529663086,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.797336220741272,
+ "learning_rate": 0.0006,
+ "loss": 6.100809097290039,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.931179404258728,
+ "learning_rate": 0.0006,
+ "loss": 6.052517414093018,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.864829957485199,
+ "learning_rate": 0.0006,
+ "loss": 6.036689758300781,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.8054556846618652,
+ "learning_rate": 0.0006,
+ "loss": 6.062129020690918,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.8996280431747437,
+ "learning_rate": 0.0006,
+ "loss": 6.132024765014648,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.7834712862968445,
+ "learning_rate": 0.0006,
+ "loss": 6.093246936798096,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.9129688739776611,
+ "learning_rate": 0.0006,
+ "loss": 6.071832656860352,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.8352737426757812,
+ "learning_rate": 0.0006,
+ "loss": 6.005630970001221,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 1.0907716751098633,
+ "learning_rate": 0.0006,
+ "loss": 6.131707191467285,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 1.0628552436828613,
+ "learning_rate": 0.0006,
+ "loss": 6.115640640258789,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.814592182636261,
+ "learning_rate": 0.0006,
+ "loss": 6.135346412658691,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.7790344953536987,
+ "learning_rate": 0.0006,
+ "loss": 6.09263801574707,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.7010454535484314,
+ "learning_rate": 0.0006,
+ "loss": 6.124373435974121,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.7408034801483154,
+ "learning_rate": 0.0006,
+ "loss": 6.196122646331787,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.5334833860397339,
+ "learning_rate": 0.0006,
+ "loss": 6.061404705047607,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.43990153074264526,
+ "learning_rate": 0.0006,
+ "loss": 6.093700408935547,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.3839710056781769,
+ "learning_rate": 0.0006,
+ "loss": 6.051329612731934,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.2931027412414551,
+ "learning_rate": 0.0006,
+ "loss": 6.002491474151611,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.29730305075645447,
+ "learning_rate": 0.0006,
+ "loss": 6.1044087409973145,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.2706022560596466,
+ "learning_rate": 0.0006,
+ "loss": 5.993399620056152,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.2314901202917099,
+ "learning_rate": 0.0006,
+ "loss": 5.980048179626465,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2334892600774765,
+ "learning_rate": 0.0006,
+ "loss": 5.956851005554199,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.2037622332572937,
+ "learning_rate": 0.0006,
+ "loss": 6.008056640625,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.21010610461235046,
+ "learning_rate": 0.0006,
+ "loss": 5.899617671966553,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.17509450018405914,
+ "learning_rate": 0.0006,
+ "loss": 6.0070390701293945,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.18395289778709412,
+ "learning_rate": 0.0006,
+ "loss": 5.913785457611084,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.16932065784931183,
+ "learning_rate": 0.0006,
+ "loss": 5.972548484802246,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.16896536946296692,
+ "learning_rate": 0.0006,
+ "loss": 5.850445747375488,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.1607963740825653,
+ "learning_rate": 0.0006,
+ "loss": 6.04035758972168,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.1529163271188736,
+ "learning_rate": 0.0006,
+ "loss": 5.868322372436523,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.15551061928272247,
+ "learning_rate": 0.0006,
+ "loss": 5.892184257507324,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.14309485256671906,
+ "learning_rate": 0.0006,
+ "loss": 5.894234657287598,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.1420409232378006,
+ "learning_rate": 0.0006,
+ "loss": 5.878995895385742,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.1421162188053131,
+ "learning_rate": 0.0006,
+ "loss": 5.885466575622559,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.1287851333618164,
+ "learning_rate": 0.0006,
+ "loss": 5.852743625640869,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.13792890310287476,
+ "learning_rate": 0.0006,
+ "loss": 5.917466163635254,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.13011221587657928,
+ "learning_rate": 0.0006,
+ "loss": 5.83922815322876,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.12764990329742432,
+ "learning_rate": 0.0006,
+ "loss": 5.8485236167907715,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.12389274686574936,
+ "learning_rate": 0.0006,
+ "loss": 5.839393615722656,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.14273591339588165,
+ "learning_rate": 0.0006,
+ "loss": 5.85328483581543,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.127460315823555,
+ "learning_rate": 0.0006,
+ "loss": 5.894877910614014,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.1349720060825348,
+ "learning_rate": 0.0006,
+ "loss": 5.915747165679932,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.13994872570037842,
+ "learning_rate": 0.0006,
+ "loss": 5.884880542755127,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.15009115636348724,
+ "learning_rate": 0.0006,
+ "loss": 5.823565483093262,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.14404791593551636,
+ "learning_rate": 0.0006,
+ "loss": 5.857900142669678,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.1300925612449646,
+ "learning_rate": 0.0006,
+ "loss": 5.877419948577881,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.15243276953697205,
+ "learning_rate": 0.0006,
+ "loss": 5.734375953674316,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.14567813277244568,
+ "learning_rate": 0.0006,
+ "loss": 5.868631362915039,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.14043602347373962,
+ "learning_rate": 0.0006,
+ "loss": 5.7435760498046875,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.14866523444652557,
+ "learning_rate": 0.0006,
+ "loss": 5.898580551147461,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.1596277505159378,
+ "learning_rate": 0.0006,
+ "loss": 5.953058242797852,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.14741066098213196,
+ "learning_rate": 0.0006,
+ "loss": 5.715863227844238,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.14276374876499176,
+ "learning_rate": 0.0006,
+ "loss": 5.851073741912842,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.1384694129228592,
+ "learning_rate": 0.0006,
+ "loss": 5.856112003326416,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.1499275416135788,
+ "learning_rate": 0.0006,
+ "loss": 5.865038871765137,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.15660755336284637,
+ "learning_rate": 0.0006,
+ "loss": 5.828205108642578,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.13887213170528412,
+ "learning_rate": 0.0006,
+ "loss": 5.848117828369141,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.15897132456302643,
+ "learning_rate": 0.0006,
+ "loss": 5.763910293579102,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.16975975036621094,
+ "learning_rate": 0.0006,
+ "loss": 5.792524337768555,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 5.968495845794678,
+ "eval_runtime": 43.8305,
+ "eval_samples_per_second": 55.715,
+ "eval_steps_per_second": 3.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.14800001680850983,
+ "learning_rate": 0.0006,
+ "loss": 5.7042951583862305,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.148259699344635,
+ "learning_rate": 0.0006,
+ "loss": 5.808700084686279,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.1625695377588272,
+ "learning_rate": 0.0006,
+ "loss": 5.712497711181641,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.14266526699066162,
+ "learning_rate": 0.0006,
+ "loss": 5.770390510559082,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.14234474301338196,
+ "learning_rate": 0.0006,
+ "loss": 5.795367240905762,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.15283887088298798,
+ "learning_rate": 0.0006,
+ "loss": 5.72078800201416,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.16014771163463593,
+ "learning_rate": 0.0006,
+ "loss": 5.732417106628418,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.16474393010139465,
+ "learning_rate": 0.0006,
+ "loss": 5.756129741668701,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.1666480451822281,
+ "learning_rate": 0.0006,
+ "loss": 5.750182151794434,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.17805688083171844,
+ "learning_rate": 0.0006,
+ "loss": 5.778930187225342,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.18115796148777008,
+ "learning_rate": 0.0006,
+ "loss": 5.760383605957031,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.14392444491386414,
+ "learning_rate": 0.0006,
+ "loss": 5.755395412445068,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.18117184937000275,
+ "learning_rate": 0.0006,
+ "loss": 5.77079963684082,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.19365772604942322,
+ "learning_rate": 0.0006,
+ "loss": 5.691216468811035,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.17340338230133057,
+ "learning_rate": 0.0006,
+ "loss": 5.795934677124023,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.1576211303472519,
+ "learning_rate": 0.0006,
+ "loss": 5.730856418609619,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.16193707287311554,
+ "learning_rate": 0.0006,
+ "loss": 5.746611595153809,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.1463204175233841,
+ "learning_rate": 0.0006,
+ "loss": 5.708608150482178,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.14922413229942322,
+ "learning_rate": 0.0006,
+ "loss": 5.814354419708252,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.16397038102149963,
+ "learning_rate": 0.0006,
+ "loss": 5.827053070068359,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.1777886599302292,
+ "learning_rate": 0.0006,
+ "loss": 5.668081283569336,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.14414463937282562,
+ "learning_rate": 0.0006,
+ "loss": 5.766292572021484,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.16416138410568237,
+ "learning_rate": 0.0006,
+ "loss": 5.788165092468262,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.16192714869976044,
+ "learning_rate": 0.0006,
+ "loss": 5.678041458129883,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.16984666883945465,
+ "learning_rate": 0.0006,
+ "loss": 5.664787292480469,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.17845910787582397,
+ "learning_rate": 0.0006,
+ "loss": 5.816197395324707,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.19945703446865082,
+ "learning_rate": 0.0006,
+ "loss": 5.763514995574951,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.19456900656223297,
+ "learning_rate": 0.0006,
+ "loss": 5.679373264312744,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.1961829662322998,
+ "learning_rate": 0.0006,
+ "loss": 5.723229885101318,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.1908445805311203,
+ "learning_rate": 0.0006,
+ "loss": 5.677166938781738,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.2014543116092682,
+ "learning_rate": 0.0006,
+ "loss": 5.765720367431641,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.18090146780014038,
+ "learning_rate": 0.0006,
+ "loss": 5.714175224304199,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.17351160943508148,
+ "learning_rate": 0.0006,
+ "loss": 5.669460296630859,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20580242574214935,
+ "learning_rate": 0.0006,
+ "loss": 5.800182342529297,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.1959282010793686,
+ "learning_rate": 0.0006,
+ "loss": 5.807426452636719,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.20095528662204742,
+ "learning_rate": 0.0006,
+ "loss": 5.770978927612305,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.19386179745197296,
+ "learning_rate": 0.0006,
+ "loss": 5.784708023071289,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.18575584888458252,
+ "learning_rate": 0.0006,
+ "loss": 5.725147247314453,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.19431164860725403,
+ "learning_rate": 0.0006,
+ "loss": 5.650376319885254,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.1849154382944107,
+ "learning_rate": 0.0006,
+ "loss": 5.756028175354004,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.19737842679023743,
+ "learning_rate": 0.0006,
+ "loss": 5.670137882232666,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.17531763017177582,
+ "learning_rate": 0.0006,
+ "loss": 5.681756019592285,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.1660444438457489,
+ "learning_rate": 0.0006,
+ "loss": 5.684171676635742,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.16298843920230865,
+ "learning_rate": 0.0006,
+ "loss": 5.797586441040039,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.18745462596416473,
+ "learning_rate": 0.0006,
+ "loss": 5.7991485595703125,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.18257005512714386,
+ "learning_rate": 0.0006,
+ "loss": 5.719764709472656,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.17202602326869965,
+ "learning_rate": 0.0006,
+ "loss": 5.758114814758301,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.1660601794719696,
+ "learning_rate": 0.0006,
+ "loss": 5.702203750610352,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.1626541167497635,
+ "learning_rate": 0.0006,
+ "loss": 5.6572265625,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.17333243787288666,
+ "learning_rate": 0.0006,
+ "loss": 5.61979866027832,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.1566837579011917,
+ "learning_rate": 0.0006,
+ "loss": 5.726340293884277,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.16731098294258118,
+ "learning_rate": 0.0006,
+ "loss": 5.751293659210205,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.18697303533554077,
+ "learning_rate": 0.0006,
+ "loss": 5.741872787475586,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.17582757771015167,
+ "learning_rate": 0.0006,
+ "loss": 5.816192626953125,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.17938904464244843,
+ "learning_rate": 0.0006,
+ "loss": 5.7722063064575195,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.1913798302412033,
+ "learning_rate": 0.0006,
+ "loss": 5.6533403396606445,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.19817198812961578,
+ "learning_rate": 0.0006,
+ "loss": 5.717761516571045,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.20846179127693176,
+ "learning_rate": 0.0006,
+ "loss": 5.671645164489746,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.247319757938385,
+ "learning_rate": 0.0006,
+ "loss": 5.662893295288086,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.28824758529663086,
+ "learning_rate": 0.0006,
+ "loss": 5.753937721252441,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.28280001878738403,
+ "learning_rate": 0.0006,
+ "loss": 5.762154579162598,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.2211732417345047,
+ "learning_rate": 0.0006,
+ "loss": 5.683979511260986,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.19673284888267517,
+ "learning_rate": 0.0006,
+ "loss": 5.718539237976074,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.1890580654144287,
+ "learning_rate": 0.0006,
+ "loss": 5.641093730926514,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.20530979335308075,
+ "learning_rate": 0.0006,
+ "loss": 5.6239423751831055,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.18293586373329163,
+ "learning_rate": 0.0006,
+ "loss": 5.778863430023193,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.2094242423772812,
+ "learning_rate": 0.0006,
+ "loss": 5.643366813659668,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.19177459180355072,
+ "learning_rate": 0.0006,
+ "loss": 5.726772308349609,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.22681565582752228,
+ "learning_rate": 0.0006,
+ "loss": 5.680315971374512,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.25520968437194824,
+ "learning_rate": 0.0006,
+ "loss": 5.680237770080566,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.2768361270427704,
+ "learning_rate": 0.0006,
+ "loss": 5.695717811584473,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.33095288276672363,
+ "learning_rate": 0.0006,
+ "loss": 5.71909236907959,
+ "step": 864
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 28800,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 400,
+ "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.68192750257963e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-fulle-lm/checkpoint-864/training_args.bin b/runs/i5-fulle-lm/checkpoint-864/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..6df4172ff013712ea56e6e8e4427c15b93ac9864
--- /dev/null
+++ b/runs/i5-fulle-lm/checkpoint-864/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8f263d5de9e8b34b81241ea7fcc18ffaeeea0ecb1f271a59a90d09a98f86bf5
+size 4856